1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644
|
QT_TRANSLATE_NOOP("InstrumentsXML", "Common instruments"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Jazz instruments"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Orchestral instruments"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Early music"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Ethnic instruments"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Woodwind"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Piccolo"),
//: Piccolo
QT_TRANSLATE_NOOP("InstrumentsXML", "Picc."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Flute"),
//: Flute
QT_TRANSLATE_NOOP("InstrumentsXML", "Fl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Treble Flute"),
//: Treble Flute
QT_TRANSLATE_NOOP("InstrumentsXML", "Tr. Fl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Flute"),
//: Soprano Flute
QT_TRANSLATE_NOOP("InstrumentsXML", "Sop. Fl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sub Contra-alto Flute"),
//: Sub Contra-alto Flute
QT_TRANSLATE_NOOP("InstrumentsXML", "Sc-a. Fl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Flute"),
//: Alto Flute
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Fl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Flute"),
//: Bass Flute
QT_TRANSLATE_NOOP("InstrumentsXML", "B. Fl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Contra-alto Flute"),
//: Contra-alto Flute
QT_TRANSLATE_NOOP("InstrumentsXML", "C-a. Fl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Contrabass Flute"),
//: Contrabass Flute
QT_TRANSLATE_NOOP("InstrumentsXML", "Cb. Fl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Double Contrabass Flute"),
//: Double Contrabass Flute
QT_TRANSLATE_NOOP("InstrumentsXML", "D. Cb. Fl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Hyperbass Flute"),
//: Hyperbass Flute
QT_TRANSLATE_NOOP("InstrumentsXML", "Hb. Fl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Baroque Flute"),
//: Baroque Flute
QT_TRANSLATE_NOOP("InstrumentsXML", "Bq. Fl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Danso"),
//: Danso
QT_TRANSLATE_NOOP("InstrumentsXML", "Da."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Dizi"),
//: Dizi
QT_TRANSLATE_NOOP("InstrumentsXML", "Di."),
QT_TRANSLATE_NOOP("InstrumentsXML", "C Dizi"),
//: C Dizi
QT_TRANSLATE_NOOP("InstrumentsXML", "C Di."),
QT_TRANSLATE_NOOP("InstrumentsXML", "A Dizi"),
//: A Dizi
QT_TRANSLATE_NOOP("InstrumentsXML", "A Di."),
QT_TRANSLATE_NOOP("InstrumentsXML", "G Dizi"),
//: G Dizi
QT_TRANSLATE_NOOP("InstrumentsXML", "G Di."),
QT_TRANSLATE_NOOP("InstrumentsXML", "F Dizi"),
//: F Dizi
QT_TRANSLATE_NOOP("InstrumentsXML", "F Di."),
QT_TRANSLATE_NOOP("InstrumentsXML", "E Dizi"),
//: E Dizi
QT_TRANSLATE_NOOP("InstrumentsXML", "E Di."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Fife"),
//: Bâ™ Fife
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Fife"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Flageolet"),
//: Flageolet
QT_TRANSLATE_NOOP("InstrumentsXML", "Fla."),
QT_TRANSLATE_NOOP("InstrumentsXML", "French Flageolet"),
//: French Flageolet
QT_TRANSLATE_NOOP("InstrumentsXML", "Fr. Fla."),
QT_TRANSLATE_NOOP("InstrumentsXML", "English Flageolet"),
//: English Flageolet
QT_TRANSLATE_NOOP("InstrumentsXML", "Eng. Fla."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Irish Flute"),
//: Irish Flute
QT_TRANSLATE_NOOP("InstrumentsXML", "Ir. Fl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Gemshorn"),
//: Gemshorn
QT_TRANSLATE_NOOP("InstrumentsXML", "Gh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Gemshorn"),
//: Soprano Gemshorn
QT_TRANSLATE_NOOP("InstrumentsXML", "S. Gh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Gemshorn"),
//: Alto Gemshorn
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Gh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Gemshorn"),
//: Tenor Gemshorn
QT_TRANSLATE_NOOP("InstrumentsXML", "T. Gh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Gemshorn"),
//: Bass Gemshorn
QT_TRANSLATE_NOOP("InstrumentsXML", "B. Gh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Ocarina"),
//: Ocarina
QT_TRANSLATE_NOOP("InstrumentsXML", "Oc."),
QT_TRANSLATE_NOOP("InstrumentsXML", "G Soprano Ocarina"),
//: G Soprano Ocarina
QT_TRANSLATE_NOOP("InstrumentsXML", "G S. Oc."),
QT_TRANSLATE_NOOP("InstrumentsXML", "F Soprano Ocarina"),
//: F Soprano Ocarina
QT_TRANSLATE_NOOP("InstrumentsXML", "F S. Oc."),
QT_TRANSLATE_NOOP("InstrumentsXML", "C Soprano Ocarina"),
//: C Soprano Ocarina
QT_TRANSLATE_NOOP("InstrumentsXML", "C S. Oc."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Soprano Ocarina"),
//: Bâ™ Soprano Ocarina
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™Â S. Oc."),
QT_TRANSLATE_NOOP("InstrumentsXML", "G Alto Ocarina"),
//: G Alto Ocarina
QT_TRANSLATE_NOOP("InstrumentsXML", "G A. Oc."),
QT_TRANSLATE_NOOP("InstrumentsXML", "F Alto Ocarina"),
//: F Alto Ocarina
QT_TRANSLATE_NOOP("InstrumentsXML", "F A. Oc."),
QT_TRANSLATE_NOOP("InstrumentsXML", "C Alto Ocarina"),
//: C Alto Ocarina
QT_TRANSLATE_NOOP("InstrumentsXML", "C A. Oc."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™Â Alto Ocarina"),
//: Bâ™Â Alto Ocarina
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™Â A. Oc."),
QT_TRANSLATE_NOOP("InstrumentsXML", "C Bass Ocarina"),
//: C Bass Ocarina
QT_TRANSLATE_NOOP("InstrumentsXML", "C B. Oc."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Pan Flute"),
//: Pan Flute
QT_TRANSLATE_NOOP("InstrumentsXML", "Pn. Fl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Quena"),
//: Quena
QT_TRANSLATE_NOOP("InstrumentsXML", "Qn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "C Quena"),
//: C Quena
QT_TRANSLATE_NOOP("InstrumentsXML", "C Qn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "G Quena"),
//: G Quena
QT_TRANSLATE_NOOP("InstrumentsXML", "G Qn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "F Quena"),
//: F Quena
QT_TRANSLATE_NOOP("InstrumentsXML", "F Qn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Quena"),
//: Quena
QT_TRANSLATE_NOOP("InstrumentsXML", "Qn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Recorder"),
//: Recorder
QT_TRANSLATE_NOOP("InstrumentsXML", "Rec."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Garklein Recorder"),
//: Garklein Recorder
QT_TRANSLATE_NOOP("InstrumentsXML", "Gk. Rec."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sopranino Recorder"),
//: Sopranino Recorder
QT_TRANSLATE_NOOP("InstrumentsXML", "Si. Rec."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Recorder"),
//: Soprano Recorder
QT_TRANSLATE_NOOP("InstrumentsXML", "S. Rec."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Recorder"),
//: Alto Recorder
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Rec."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Recorder"),
//: Tenor Recorder
QT_TRANSLATE_NOOP("InstrumentsXML", "T. Rec."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Recorder"),
//: Bass Recorder
QT_TRANSLATE_NOOP("InstrumentsXML", "B. Rec."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Contrabass Recorder"),
//: Contrabass Recorder
QT_TRANSLATE_NOOP("InstrumentsXML", "Cb. Rec."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Greatbass Recorder"),
//: Greatbass Recorder
QT_TRANSLATE_NOOP("InstrumentsXML", "Gb. Rec."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Slide Whistle"),
//: Slide Whistle
QT_TRANSLATE_NOOP("InstrumentsXML", "Sl. Wh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tin Whistle"),
//: Tin Whistle
QT_TRANSLATE_NOOP("InstrumentsXML", "Tin Wh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Tin Whistle"),
//: Bâ™ Tin Whistle
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Tin Wh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tin Whistle"),
//: Tin Whistle
QT_TRANSLATE_NOOP("InstrumentsXML", "Tin Wh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Piccolo Oboe"),
//: Piccolo Oboe
QT_TRANSLATE_NOOP("InstrumentsXML", "P. Ob."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Oboe"),
//: Oboe
QT_TRANSLATE_NOOP("InstrumentsXML", "Ob."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Baroque Oboe"),
//: Baroque Oboe
QT_TRANSLATE_NOOP("InstrumentsXML", "Bq. Ob."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Oboe d'amore"),
//: Oboe d'amore
QT_TRANSLATE_NOOP("InstrumentsXML", "Ob. d'a."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Oboe da caccia"),
//: Oboe da caccia
QT_TRANSLATE_NOOP("InstrumentsXML", "Ob. d. ca."),
QT_TRANSLATE_NOOP("InstrumentsXML", "English Horn"),
//: English Horn
QT_TRANSLATE_NOOP("InstrumentsXML", "E. Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Baritone Oboe"),
//: Baritone Oboe
QT_TRANSLATE_NOOP("InstrumentsXML", "Bar. Ob."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Piccolo Heckelphone"),
//: Piccolo Heckelphone
QT_TRANSLATE_NOOP("InstrumentsXML", "P. Hph."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Heckelphone"),
//: Heckelphone
QT_TRANSLATE_NOOP("InstrumentsXML", "Hph."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Heckelphone-clarinet"),
//: Heckelphone-clarinet
QT_TRANSLATE_NOOP("InstrumentsXML", "Hph."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sopranino Shawm"),
//: Sopranino Shawm
QT_TRANSLATE_NOOP("InstrumentsXML", "Si. Sh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Shawm"),
//: Soprano Shawm
QT_TRANSLATE_NOOP("InstrumentsXML", "S. Sh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Shawm"),
//: Alto Shawm
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Sh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Shawm"),
//: Tenor Shawm
QT_TRANSLATE_NOOP("InstrumentsXML", "T. Sh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Shawm"),
//: Bass Shawm
QT_TRANSLATE_NOOP("InstrumentsXML", "B. Sh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Great Bass Shawm"),
//: Great Bass Shawm
QT_TRANSLATE_NOOP("InstrumentsXML", "G.B. Sh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Cromorne"),
//: Cromorne
QT_TRANSLATE_NOOP("InstrumentsXML", "Cr."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Crumhorn"),
//: Crumhorn
QT_TRANSLATE_NOOP("InstrumentsXML", "Crh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Crumhorn"),
//: Soprano Crumhorn
QT_TRANSLATE_NOOP("InstrumentsXML", "S. Crh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Crumhorn"),
//: Alto Crumhorn
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Crh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Crumhorn"),
//: Tenor Crumhorn
QT_TRANSLATE_NOOP("InstrumentsXML", "T. Crh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Crumhorn"),
//: Bass Crumhorn
QT_TRANSLATE_NOOP("InstrumentsXML", "B. Crh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Greatbass Crumhorn"),
//: Greatbass Crumhorn
QT_TRANSLATE_NOOP("InstrumentsXML", "Gb. Crh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Cornamuse"),
//: Cornamuse
QT_TRANSLATE_NOOP("InstrumentsXML", "Cm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Cornamuse"),
//: Soprano Cornamuse
QT_TRANSLATE_NOOP("InstrumentsXML", "S. Cm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Cornamuse"),
//: Alto Cornamuse
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Cm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Cornamuse"),
//: Tenor Cornamuse
QT_TRANSLATE_NOOP("InstrumentsXML", "T. Cm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Cornamuse"),
//: Bass Cornamuse
QT_TRANSLATE_NOOP("InstrumentsXML", "B. Cm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Duduk"),
//: Duduk
QT_TRANSLATE_NOOP("InstrumentsXML", "Du."),
QT_TRANSLATE_NOOP("InstrumentsXML", "F Duduk"),
//: F Duduk
QT_TRANSLATE_NOOP("InstrumentsXML", "F Du."),
QT_TRANSLATE_NOOP("InstrumentsXML", "E Duduk"),
//: E Duduk
QT_TRANSLATE_NOOP("InstrumentsXML", "E Du."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Duduk"),
//: Duduk
QT_TRANSLATE_NOOP("InstrumentsXML", "Du."),
QT_TRANSLATE_NOOP("InstrumentsXML", "C Duduk"),
//: C Duduk
QT_TRANSLATE_NOOP("InstrumentsXML", "C Du."),
QT_TRANSLATE_NOOP("InstrumentsXML", "B Duduk"),
//: B Duduk
QT_TRANSLATE_NOOP("InstrumentsXML", "B Du."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Duduk"),
//: Bâ™ Duduk
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Du."),
QT_TRANSLATE_NOOP("InstrumentsXML", "A Duduk"),
//: A Duduk
QT_TRANSLATE_NOOP("InstrumentsXML", "A Du."),
QT_TRANSLATE_NOOP("InstrumentsXML", "G Duduk"),
//: G Duduk
QT_TRANSLATE_NOOP("InstrumentsXML", "G Du."),
QT_TRANSLATE_NOOP("InstrumentsXML", "A Bass Duduk"),
//: A Bass Duduk
QT_TRANSLATE_NOOP("InstrumentsXML", "A B. Du."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Kelhorn"),
//: Soprano Kelhorn
QT_TRANSLATE_NOOP("InstrumentsXML", "S. Kh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Kelhorn"),
//: Alto Kelhorn
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Kh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Kelhorn"),
//: Tenor Kelhorn
QT_TRANSLATE_NOOP("InstrumentsXML", "T. Kh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Kelhorn"),
//: Bass Kelhorn
QT_TRANSLATE_NOOP("InstrumentsXML", "B. Kh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Greatbass Kelhorn"),
//: Greatbass Kelhorn
QT_TRANSLATE_NOOP("InstrumentsXML", "Gb. Kh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Rauschpfeife"),
//: Rauschpfeife
QT_TRANSLATE_NOOP("InstrumentsXML", "Rpf."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sopranino Rauschpfeife"),
//: Sopranino Rauschpfeife
QT_TRANSLATE_NOOP("InstrumentsXML", "Si. Rpf."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Rauschpfeife"),
//: Soprano Rauschpfeife
QT_TRANSLATE_NOOP("InstrumentsXML", "S. Rpf."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Shenai"),
//: Shenai
QT_TRANSLATE_NOOP("InstrumentsXML", "She."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Clarinet"),
//: Clarinet
QT_TRANSLATE_NOOP("InstrumentsXML", "Cl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Piccolo Clarinet"),
//: Piccolo Clarinet
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."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™ Clarinet"),
//: Eâ™ Clarinet
QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™ Cl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Clarinet"),
//: Bâ™ Clarinet
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Cl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "A Clarinet"),
//: A Clarinet
QT_TRANSLATE_NOOP("InstrumentsXML", "A Cl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Clarinet"),
//: Alto Clarinet
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Cl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Basset Clarinet"),
//: Basset Clarinet
QT_TRANSLATE_NOOP("InstrumentsXML", "Ba. Cl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Basset Horn"),
//: Basset Horn
QT_TRANSLATE_NOOP("InstrumentsXML", "Ba. Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Clarinet"),
//: Bass Clarinet
QT_TRANSLATE_NOOP("InstrumentsXML", "B. Cl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Contra-alto Clarinet"),
//: Contra-alto Clarinet
QT_TRANSLATE_NOOP("InstrumentsXML", "C-a. Cl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Contrabass Clarinet"),
//: Contrabass Clarinet
QT_TRANSLATE_NOOP("InstrumentsXML", "Cb. Cl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Chalumeau"),
//: Chalumeau
QT_TRANSLATE_NOOP("InstrumentsXML", "Cha."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sopranino Chalumeau"),
//: Sopranino Chalumeau
QT_TRANSLATE_NOOP("InstrumentsXML", "Si. Cha."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Chalumeau"),
//: Soprano Chalumeau
QT_TRANSLATE_NOOP("InstrumentsXML", "S. Cha."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Chalumeau"),
//: Alto Chalumeau
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Cha."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Chalumeau"),
//: Tenor Chalumeau
QT_TRANSLATE_NOOP("InstrumentsXML", "T. Cha."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Chalumeau"),
//: Bass Chalumeau
QT_TRANSLATE_NOOP("InstrumentsXML", "B. Cha."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tarogato"),
//: Tarogato
QT_TRANSLATE_NOOP("InstrumentsXML", "Tar."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Octavin"),
//: Octavin
QT_TRANSLATE_NOOP("InstrumentsXML", "Oct."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bassoon"),
//: Bassoon
QT_TRANSLATE_NOOP("InstrumentsXML", "Bsn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Contrabassoon"),
//: Contrabassoon
QT_TRANSLATE_NOOP("InstrumentsXML", "Cbsn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Reed Contrabass"),
//: Reed Contrabass
QT_TRANSLATE_NOOP("InstrumentsXML", "Rd. Cbs."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Dulcian"),
//: Dulcian
QT_TRANSLATE_NOOP("InstrumentsXML", "Du."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Rackett"),
//: Rackett
QT_TRANSLATE_NOOP("InstrumentsXML", "Ra."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sarrusophone"),
//: Sarrusophone
QT_TRANSLATE_NOOP("InstrumentsXML", "Sar."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sopranino Sarrusophone"),
//: Sopranino Sarrusophone
QT_TRANSLATE_NOOP("InstrumentsXML", "Si. Sar."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Sarrusophone"),
//: Soprano Sarrusophone
QT_TRANSLATE_NOOP("InstrumentsXML", "S. Sar."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Sarrusophone"),
//: Alto Sarrusophone
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Sar."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Sarrusophone"),
//: Tenor Sarrusophone
QT_TRANSLATE_NOOP("InstrumentsXML", "T. Sar."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Baritone Sarrusophone"),
//: Baritone Sarrusophone
QT_TRANSLATE_NOOP("InstrumentsXML", "Bar. Sar."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Sarrusophone"),
//: Bass Sarrusophone
QT_TRANSLATE_NOOP("InstrumentsXML", "B. Sar."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Contrabass Sarrusophone"),
//: Contrabass Sarrusophone
QT_TRANSLATE_NOOP("InstrumentsXML", "Cb. Sar."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Saxophone"),
//: Saxophone
QT_TRANSLATE_NOOP("InstrumentsXML", "Sax."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sopranissimo Saxophone"),
//: Sopranissimo Saxophone
QT_TRANSLATE_NOOP("InstrumentsXML", "Sio. Sax."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sopranino Saxophone"),
//: Sopranino Saxophone
QT_TRANSLATE_NOOP("InstrumentsXML", "Si. Sax."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Saxophone"),
//: Soprano Saxophone
QT_TRANSLATE_NOOP("InstrumentsXML", "S. Sax."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Aulochrome"),
//: Aulochrome
QT_TRANSLATE_NOOP("InstrumentsXML", "Aul."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Mezzo-Soprano Saxophone"),
//: Mezzo-Soprano Saxophone
QT_TRANSLATE_NOOP("InstrumentsXML", "M.S. Sax."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Saxophone"),
//: Alto Saxophone
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Sax."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Melody Saxophone"),
//: Melody Saxophone
QT_TRANSLATE_NOOP("InstrumentsXML", "Mel. Sax."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Saxophone"),
//: Tenor Saxophone
QT_TRANSLATE_NOOP("InstrumentsXML", "T. Sax."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Baritone Saxophone"),
//: Baritone Saxophone
QT_TRANSLATE_NOOP("InstrumentsXML", "Bar. Sax."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Saxophone"),
//: Bass Saxophone
QT_TRANSLATE_NOOP("InstrumentsXML", "B. Sax."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Contrabass Saxophone"),
//: Contrabass Saxophone
QT_TRANSLATE_NOOP("InstrumentsXML", "Cb. Sax."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Subcontrabass Saxophone"),
//: Subcontrabass Saxophone
QT_TRANSLATE_NOOP("InstrumentsXML", "Scb. Sax."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bagpipe"),
//: Bagpipe
QT_TRANSLATE_NOOP("InstrumentsXML", "Bagp."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Free Reed"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Harmonica"),
//: Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "12 Hole C Chromatic Harmonica"),
//: 12 Hole C Chromatic Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "14 Hole C Chromatic Harmonica"),
//: 14 Hole C Chromatic Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "12 Hole G Chromatic Harmonica"),
//: 12 Hole G Chromatic Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "16 Hole C Chromatic Harmonica"),
//: 16 Hole C Chromatic Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "12 Hole Tenor C Chromatic Harmonica"),
//: 12 Hole Tenor C Chromatic Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "10 Hole High G Diatonic Harmonica"),
//: 10 Hole High G Diatonic Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "10 Hole F Diatonic Harmonica"),
//: 10 Hole F Diatonic Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "10 Hole D Diatonic Harmonica"),
//: 10 Hole D Diatonic Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "10 Hole C Diatonic Harmonica"),
//: 10 Hole C Diatonic Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "10 Hole A Diatonic Harmonica"),
//: 10 Hole A Diatonic Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "10 Hole G Diatonic Harmonica"),
//: 10 Hole G Diatonic Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "10 Hole Low D Diatonic Harmonica"),
//: 10 Hole Low D Diatonic Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "20 Hole Chordet Harmonica"),
//: 20 Hole Chordet Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Harmonica"),
//: Bass Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Bs. Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Hohner Harmonica"),
//: Bass Hohner Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Bs. Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Huang Harmonica"),
//: Bass Huang Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Bs. Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Accordion"),
//: Accordion
QT_TRANSLATE_NOOP("InstrumentsXML", "Acc."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bandoneon"),
//: Bandoneon
QT_TRANSLATE_NOOP("InstrumentsXML", "Ban."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Concertina"),
//: Concertina
QT_TRANSLATE_NOOP("InstrumentsXML", "Conc."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Melodica"),
//: Melodica
QT_TRANSLATE_NOOP("InstrumentsXML", "Mel."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sheng"),
//: Sheng
QT_TRANSLATE_NOOP("InstrumentsXML", "She."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Sheng"),
//: Soprano Sheng
QT_TRANSLATE_NOOP("InstrumentsXML", "S She."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Sheng"),
//: Alto Sheng
QT_TRANSLATE_NOOP("InstrumentsXML", "A She."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Sheng"),
//: Tenor Sheng
QT_TRANSLATE_NOOP("InstrumentsXML", "T She."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Sheng"),
//: Bass Sheng
QT_TRANSLATE_NOOP("InstrumentsXML", "B She."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Brass"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Brass"),
//: Brass
QT_TRANSLATE_NOOP("InstrumentsXML", "Br."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Horn in F"),
//: Horn in F
QT_TRANSLATE_NOOP("InstrumentsXML", "F Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "High C Horn"),
//: High C Horn
QT_TRANSLATE_NOOP("InstrumentsXML", "H. C Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Horn in Bâ™"),
//: Horn in Bâ™
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Horn in A"),
//: Horn in A
QT_TRANSLATE_NOOP("InstrumentsXML", "A Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Horn in Aâ™"),
//: Horn in Aâ™
QT_TRANSLATE_NOOP("InstrumentsXML", "Aâ™ Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Horn in G"),
//: Horn in G
QT_TRANSLATE_NOOP("InstrumentsXML", "G Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "E Horn"),
//: E Horn
QT_TRANSLATE_NOOP("InstrumentsXML", "E Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Horn in Eâ™"),
//: Horn in Eâ™
QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™ Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Horn in D"),
//: Horn in D
QT_TRANSLATE_NOOP("InstrumentsXML", "Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Horn in C"),
//: Horn in C
QT_TRANSLATE_NOOP("InstrumentsXML", "C Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Vienna Horn"),
//: Vienna Horn
QT_TRANSLATE_NOOP("InstrumentsXML", "V. Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Horn in Bâ™ basso"),
//: Horn in Bâ™ basso
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", "C Cornet"),
//: C Cornet
QT_TRANSLATE_NOOP("InstrumentsXML", "C 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", "A Cornet"),
//: A Cornet
QT_TRANSLATE_NOOP("InstrumentsXML", "A Cnt."),
QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Saxhorn"),
//: Saxhorn
QT_TRANSLATE_NOOP("InstrumentsXML", "Saxhorn"),
QT_TRANSLATE_NOOP("InstrumentsXML", "F Alto Horn"),
//: F Alto Horn
QT_TRANSLATE_NOOP("InstrumentsXML", "F A. Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™ Alto Horn"),
//: Eâ™ Alto Horn
QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™ A. Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Baritone Horn"),
//: Baritone Horn
QT_TRANSLATE_NOOP("InstrumentsXML", "Bar. Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Baritone Horn"),
//: Baritone Horn
QT_TRANSLATE_NOOP("InstrumentsXML", "Bar. Hn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Baritone Horn (Treble Clef)"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Posthorn"),
//: Posthorn
QT_TRANSLATE_NOOP("InstrumentsXML", "Psthn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alphorn"),
//: Alphorn
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", "F Trumpet"),
//: F Trumpet
QT_TRANSLATE_NOOP("InstrumentsXML", "F Tpt."),
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", "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", "A Trumpet"),
//: A Trumpet
QT_TRANSLATE_NOOP("InstrumentsXML", "A 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."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Baroque Trumpet in F"),
//: Baroque Trumpet in F
QT_TRANSLATE_NOOP("InstrumentsXML", "Bq. Tpt. F"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Baroque Trumpet in Eâ™"),
//: Baroque Trumpet in Eâ™
QT_TRANSLATE_NOOP("InstrumentsXML", "Bq. Tpt. Eâ™"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Baroque Trumpet in D"),
//: Baroque Trumpet in D
QT_TRANSLATE_NOOP("InstrumentsXML", "Bq. Tpt. D"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Baroque Trumpet in C"),
//: Baroque Trumpet in C
QT_TRANSLATE_NOOP("InstrumentsXML", "Bq. Tpt. C"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Baroque Trumpet in Bâ™"),
//: Baroque Trumpet in Bâ™
QT_TRANSLATE_NOOP("InstrumentsXML", "Bq. Tpt. Bâ™"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Rag Dung"),
//: Rag Dung
QT_TRANSLATE_NOOP("InstrumentsXML", "Rg. Dng."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bugle"),
//: Bugle
QT_TRANSLATE_NOOP("InstrumentsXML", "Bu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Bugle"),
//: Soprano Bugle
QT_TRANSLATE_NOOP("InstrumentsXML", "Sop. Bu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Bugle"),
//: Alto Bugle
QT_TRANSLATE_NOOP("InstrumentsXML", "Alt. Bu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Baritone Bugle"),
//: Baritone Bugle
QT_TRANSLATE_NOOP("InstrumentsXML", "Bar. Bu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Flugelhorn"),
//: Flugelhorn
QT_TRANSLATE_NOOP("InstrumentsXML", "Flghn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Fiscorn"),
//: Fiscorn
QT_TRANSLATE_NOOP("InstrumentsXML", "Fsc."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Kuhlohorn"),
//: Kuhlohorn
QT_TRANSLATE_NOOP("InstrumentsXML", "Klhn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Euphonium Bugle"),
//: Euphonium Bugle
QT_TRANSLATE_NOOP("InstrumentsXML", "Euph. Bu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Mellophone Bugle"),
//: Mellophone Bugle
QT_TRANSLATE_NOOP("InstrumentsXML", "Mel. Bu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Contrabass Bugle"),
//: Contrabass Bugle
QT_TRANSLATE_NOOP("InstrumentsXML", "Con. Bu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Mellophone"),
//: Mellophone
QT_TRANSLATE_NOOP("InstrumentsXML", "Mph."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Ophicleide"),
//: Ophicleide
QT_TRANSLATE_NOOP("InstrumentsXML", "Oph."),
QT_TRANSLATE_NOOP("InstrumentsXML", "F Alto Ophicleide"),
//: F Alto Ophicleide
QT_TRANSLATE_NOOP("InstrumentsXML", "F A. Oph."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™ Alto Ophicleide"),
//: Eâ™ Alto Ophicleide
QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™ A. Oph."),
QT_TRANSLATE_NOOP("InstrumentsXML", "C Bass Ophicleide"),
//: C Bass Ophicleide
QT_TRANSLATE_NOOP("InstrumentsXML", "C B. Oph."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Bass Ophicleide"),
//: Bâ™ Bass Ophicleide
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ B. Oph."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™ Contrabass Ophicleide"),
//: Eâ™ Contrabass Ophicleide
QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™ Cb. Oph."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Cornettino"),
//: Cornettino
QT_TRANSLATE_NOOP("InstrumentsXML", "Co."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Cornett"),
//: Cornett
QT_TRANSLATE_NOOP("InstrumentsXML", "Co."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Cornett"),
//: Soprano Cornett
QT_TRANSLATE_NOOP("InstrumentsXML", "S. Co."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Cornett"),
//: Alto Cornett
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Co."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Cornett"),
//: Tenor Cornett
QT_TRANSLATE_NOOP("InstrumentsXML", "T. Co."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Serpent"),
//: Serpent
QT_TRANSLATE_NOOP("InstrumentsXML", "Spt."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Trombone"),
//: Trombone
QT_TRANSLATE_NOOP("InstrumentsXML", "Tbn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Trombone"),
//: Trombone
QT_TRANSLATE_NOOP("InstrumentsXML", "Tbn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Trombone (Treble Clef)"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Trombone"),
//: Soprano Trombone
QT_TRANSLATE_NOOP("InstrumentsXML", "S. Tbn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Trombone"),
//: Alto Trombone
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Tbn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Trombone"),
//: Tenor Trombone
QT_TRANSLATE_NOOP("InstrumentsXML", "T. Tbn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Trombone"),
//: Bass Trombone
QT_TRANSLATE_NOOP("InstrumentsXML", "B. Tbn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Contrabass Trombone"),
//: Contrabass Trombone
QT_TRANSLATE_NOOP("InstrumentsXML", "Cb. Tbn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Cimbasso"),
//: Cimbasso
QT_TRANSLATE_NOOP("InstrumentsXML", "Cim."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Euphonium"),
//: Euphonium
QT_TRANSLATE_NOOP("InstrumentsXML", "Euph."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Euphonium"),
//: Euphonium
QT_TRANSLATE_NOOP("InstrumentsXML", "Euph."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Euphonium (Treble Clef)"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tuba"),
//: Tuba
QT_TRANSLATE_NOOP("InstrumentsXML", "Tba."),
QT_TRANSLATE_NOOP("InstrumentsXML", "F Tuba"),
//: F Tuba
QT_TRANSLATE_NOOP("InstrumentsXML", "F Tu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™ Tuba"),
//: Eâ™ Tuba
QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™ Tu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™ Tuba"),
//: Eâ™ Tuba
QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™ Tu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™ Tuba (Treble Clef)"),
QT_TRANSLATE_NOOP("InstrumentsXML", "C Tuba"),
//: C Tuba
QT_TRANSLATE_NOOP("InstrumentsXML", "C Tu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Tuba"),
//: Bâ™ Tuba
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Tu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Tuba"),
//: Bâ™ Tuba
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Tu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Tuba (Treble Clef)"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Tuba in F"),
//: Bass Tuba in F
QT_TRANSLATE_NOOP("InstrumentsXML", "Ba. Tu. F"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Tuba in Eâ™"),
//: Bass Tuba in Eâ™
QT_TRANSLATE_NOOP("InstrumentsXML", "Ba. Tu. Eâ™"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sub-Contrabass Tuba"),
//: Sub-Contrabass Tuba
QT_TRANSLATE_NOOP("InstrumentsXML", "SCB. Tu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Helicon"),
//: Helicon
QT_TRANSLATE_NOOP("InstrumentsXML", "Helicon"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sousaphone"),
//: Sousaphone
QT_TRANSLATE_NOOP("InstrumentsXML", "Sphn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Wagner Tuba"),
//: Wagner Tuba
QT_TRANSLATE_NOOP("InstrumentsXML", "Wag. Tu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Wagner Tuba"),
//: Bâ™ Wagner Tuba
QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™ Wag. Tu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "F Wagner Tuba"),
//: F Wagner Tuba
QT_TRANSLATE_NOOP("InstrumentsXML", "F Wag. Tu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Conch"),
//: Conch
QT_TRANSLATE_NOOP("InstrumentsXML", "Cnch."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Didgeridoo"),
//: Didgeridoo
QT_TRANSLATE_NOOP("InstrumentsXML", "Doo."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Horagai"),
//: Horagai
QT_TRANSLATE_NOOP("InstrumentsXML", "Hor."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Shofar"),
//: Shofar
QT_TRANSLATE_NOOP("InstrumentsXML", "Sho."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Vuvuzela"),
//: Vuvuzela
QT_TRANSLATE_NOOP("InstrumentsXML", "Vuv."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Pitched Percussion"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Timpani"),
//: Timpani
QT_TRANSLATE_NOOP("InstrumentsXML", "Timp."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Roto-toms"),
//: Roto-toms
QT_TRANSLATE_NOOP("InstrumentsXML", "Rt-t."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Glockenspiel"),
//: Glockenspiel
QT_TRANSLATE_NOOP("InstrumentsXML", "Glk."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Orff Soprano Glockenspiel"),
//: Orff Soprano Glockenspiel
QT_TRANSLATE_NOOP("InstrumentsXML", "O. S. Glk."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Orff Alto Glockenspiel"),
//: Orff Alto Glockenspiel
QT_TRANSLATE_NOOP("InstrumentsXML", "O. A. Glk."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Crotales"),
//: Crotales
QT_TRANSLATE_NOOP("InstrumentsXML", "Cro."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tubaphone"),
//: Tubaphone
QT_TRANSLATE_NOOP("InstrumentsXML", "Tph."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Almglocken"),
//: Almglocken
QT_TRANSLATE_NOOP("InstrumentsXML", "Agl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Vibraphone"),
//: Vibraphone
QT_TRANSLATE_NOOP("InstrumentsXML", "Vib."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Metallophone"),
//: Metallophone
QT_TRANSLATE_NOOP("InstrumentsXML", "Met."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Orff Soprano Metallophone"),
//: Orff Soprano Metallophone
QT_TRANSLATE_NOOP("InstrumentsXML", "O. S. Met."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Orff Alto Metallophone"),
//: Orff Alto Metallophone
QT_TRANSLATE_NOOP("InstrumentsXML", "O. A. Met."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Orff Bass Metallophone"),
//: Orff Bass Metallophone
QT_TRANSLATE_NOOP("InstrumentsXML", "O. B. Met."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tubular Bells"),
//: Tubular Bells
QT_TRANSLATE_NOOP("InstrumentsXML", "Tu. Be."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Steel Drums"),
//: Steel Drums
QT_TRANSLATE_NOOP("InstrumentsXML", "St. Dr."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Steel Drums"),
//: Soprano Steel Drums
QT_TRANSLATE_NOOP("InstrumentsXML", "S. St. Dr."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Steel Drums"),
//: Alto Steel Drums
QT_TRANSLATE_NOOP("InstrumentsXML", "A. St. Dr."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Guitar Steel Drums"),
//: Guitar Steel Drums
QT_TRANSLATE_NOOP("InstrumentsXML", "Gtr. St. Dr."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Steel Drums"),
//: Tenor Steel Drums
QT_TRANSLATE_NOOP("InstrumentsXML", "T. St. Dr."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Cello Steel Drums"),
//: Cello Steel Drums
QT_TRANSLATE_NOOP("InstrumentsXML", "Ce. St. Dr."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Steel Drums"),
//: Bass Steel Drums
QT_TRANSLATE_NOOP("InstrumentsXML", "B. St. Dr."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Hand Bells"),
//: Hand Bells
QT_TRANSLATE_NOOP("InstrumentsXML", "Ha. Be."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tuned Gongs"),
//: Tuned Gongs
QT_TRANSLATE_NOOP("InstrumentsXML", "Td. Go."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Flexatone"),
//: Flexatone
QT_TRANSLATE_NOOP("InstrumentsXML", "Flt."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Musical Saw"),
//: Musical Saw
QT_TRANSLATE_NOOP("InstrumentsXML", "Mu. Sw."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Musical Glasses"),
//: Musical Glasses
QT_TRANSLATE_NOOP("InstrumentsXML", "Mu. Gla."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Glass Harmonica"),
//: Glass Harmonica
QT_TRANSLATE_NOOP("InstrumentsXML", "Gla. Har."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Xylophone"),
//: Xylophone
QT_TRANSLATE_NOOP("InstrumentsXML", "Xyl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Orff Soprano Xylophone"),
//: Orff Soprano Xylophone
QT_TRANSLATE_NOOP("InstrumentsXML", "O. S. Xyl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Orff Alto Xylophone"),
//: Orff Alto Xylophone
QT_TRANSLATE_NOOP("InstrumentsXML", "O. A. Xyl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Orff Bass Xylophone"),
//: Orff Bass Xylophone
QT_TRANSLATE_NOOP("InstrumentsXML", "O. B. Xyl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Xylomarimba"),
//: Xylomarimba
QT_TRANSLATE_NOOP("InstrumentsXML", "XMrm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Marimba"),
//: Marimba
QT_TRANSLATE_NOOP("InstrumentsXML", "Mrm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Marimba"),
//: Bass Marimba
QT_TRANSLATE_NOOP("InstrumentsXML", "B. Mrm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Dulcimer"),
//: Dulcimer
QT_TRANSLATE_NOOP("InstrumentsXML", "Dlc."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tuned Klaxon Horns"),
//: Tuned Klaxon Horns
QT_TRANSLATE_NOOP("InstrumentsXML", "Tn. Klx. Hns."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Kalimba"),
//: Kalimba
QT_TRANSLATE_NOOP("InstrumentsXML", "Kal."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Treble Kalimba"),
//: Treble Kalimba
QT_TRANSLATE_NOOP("InstrumentsXML", "Tr. Kal."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Kalimba"),
//: Alto Kalimba
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Kal."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Unpitched Percussion"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Drumset"),
//: Drumset
QT_TRANSLATE_NOOP("InstrumentsXML", "Drs."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Snare Drum"),
//: Snare Drum
QT_TRANSLATE_NOOP("InstrumentsXML", "Sn. Dr."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Drum"),
//: Bass Drum
QT_TRANSLATE_NOOP("InstrumentsXML", "B. Dr."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Piccolo Snare Drum"),
//: Piccolo Snare Drum
QT_TRANSLATE_NOOP("InstrumentsXML", "P. Sn. Dr."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Military Drum"),
//: Military Drum
QT_TRANSLATE_NOOP("InstrumentsXML", "Mil. Dr."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tom Toms"),
//: Tom Toms
QT_TRANSLATE_NOOP("InstrumentsXML", "Toms"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Chinese Tom-toms"),
//: Chinese Tom-toms
QT_TRANSLATE_NOOP("InstrumentsXML", "Ch. To."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bongos"),
//: Bongos
QT_TRANSLATE_NOOP("InstrumentsXML", "Bo."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Congas"),
//: Congas
QT_TRANSLATE_NOOP("InstrumentsXML", "Co."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Timbales"),
//: Timbales
QT_TRANSLATE_NOOP("InstrumentsXML", "Timb."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Frame Drum"),
//: Frame Drum
QT_TRANSLATE_NOOP("InstrumentsXML", "Fr. Dr."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tablas"),
//: Tablas
QT_TRANSLATE_NOOP("InstrumentsXML", "Tbs."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Cuica"),
//: Cuica
QT_TRANSLATE_NOOP("InstrumentsXML", "Cu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Finger Cymbals"),
//: Finger Cymbals
QT_TRANSLATE_NOOP("InstrumentsXML", "Fi. Cym."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Hi-hat"),
//: Hi-hat
QT_TRANSLATE_NOOP("InstrumentsXML", "Hi-hat"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tam-tam"),
//: Tam-tam
QT_TRANSLATE_NOOP("InstrumentsXML", "Tam-tam"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bells"),
//: Bells
QT_TRANSLATE_NOOP("InstrumentsXML", "Be."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sleigh Bells"),
//: Sleigh Bells
QT_TRANSLATE_NOOP("InstrumentsXML", "Sle. Be."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bell Plate"),
//: Bell Plate
QT_TRANSLATE_NOOP("InstrumentsXML", "Be. Pla."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bowl Gongs"),
//: Bowl Gongs
QT_TRANSLATE_NOOP("InstrumentsXML", "Bw. Go."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tubo"),
//: Tubo
QT_TRANSLATE_NOOP("InstrumentsXML", "Tu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Metal Castanets"),
//: Metal Castanets
QT_TRANSLATE_NOOP("InstrumentsXML", "Met. Cst."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Automobile Brake Drums"),
//: Automobile Brake Drums
QT_TRANSLATE_NOOP("InstrumentsXML", "Aut. Brk. Dr."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Iron Pipes"),
//: Iron Pipes
QT_TRANSLATE_NOOP("InstrumentsXML", "Ir. Pi."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Chains"),
//: Chains
QT_TRANSLATE_NOOP("InstrumentsXML", "Chn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Anvil"),
//: Anvil
QT_TRANSLATE_NOOP("InstrumentsXML", "Anv."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Wood Blocks"),
//: Wood Blocks
QT_TRANSLATE_NOOP("InstrumentsXML", "Wd. Bl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Temple Blocks"),
//: Temple Blocks
QT_TRANSLATE_NOOP("InstrumentsXML", "Tmp. Bl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Triangle"),
//: Triangle
QT_TRANSLATE_NOOP("InstrumentsXML", "Trgl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Cymbal"),
//: Cymbal
QT_TRANSLATE_NOOP("InstrumentsXML", "Cym."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Ride Cymbal"),
//: Ride Cymbal
QT_TRANSLATE_NOOP("InstrumentsXML", "R. Cym."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Chinese Cymbal"),
//: Chinese Cymbal
QT_TRANSLATE_NOOP("InstrumentsXML", "Ch. Cym."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Crash Cymbal"),
//: Crash Cymbal
QT_TRANSLATE_NOOP("InstrumentsXML", "Cr. Cym."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Splash Cymbal"),
//: Splash Cymbal
QT_TRANSLATE_NOOP("InstrumentsXML", "Sp. Cym."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Cowbell"),
//: Cowbell
QT_TRANSLATE_NOOP("InstrumentsXML", "Cwb."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Claves"),
//: Claves
QT_TRANSLATE_NOOP("InstrumentsXML", "Clv."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Castanets"),
//: Castanets
QT_TRANSLATE_NOOP("InstrumentsXML", "Cst."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Guiro"),
//: Guiro
QT_TRANSLATE_NOOP("InstrumentsXML", "Gro."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Maracas"),
//: Maracas
QT_TRANSLATE_NOOP("InstrumentsXML", "Mrcs."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Cabasa"),
//: Cabasa
QT_TRANSLATE_NOOP("InstrumentsXML", "Cab."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Quijada"),
//: Quijada
QT_TRANSLATE_NOOP("InstrumentsXML", "Qui."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Vibraslap"),
//: Vibraslap
QT_TRANSLATE_NOOP("InstrumentsXML", "Vibslp."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Slit Drum"),
//: Slit Drum
QT_TRANSLATE_NOOP("InstrumentsXML", "Slt. Dr."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Whip"),
//: Whip
QT_TRANSLATE_NOOP("InstrumentsXML", "Wh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Ratchet"),
//: Ratchet
QT_TRANSLATE_NOOP("InstrumentsXML", "Rat."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Thundersheet"),
//: Thundersheet
QT_TRANSLATE_NOOP("InstrumentsXML", "Thu."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sandpaper Blocks"),
//: Sandpaper Blocks
QT_TRANSLATE_NOOP("InstrumentsXML", "Sa. Bl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Wooden Wind Chimes"),
//: Wooden Wind Chimes
QT_TRANSLATE_NOOP("InstrumentsXML", "Wd. Wn. Ch."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bamboo Wind Chimes"),
//: Bamboo Wind Chimes
QT_TRANSLATE_NOOP("InstrumentsXML", "Bam. Wn. Ch."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Metal Wind Chimes"),
//: Metal Wind Chimes
QT_TRANSLATE_NOOP("InstrumentsXML", "Met. Wn Ch."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Glass Wind Chimes"),
//: Glass Wind Chimes
QT_TRANSLATE_NOOP("InstrumentsXML", "Gl. Wn Ch."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Shell Wind Chimes"),
//: Shell Wind Chimes
QT_TRANSLATE_NOOP("InstrumentsXML", "Sh. Wn Ch."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Stones"),
//: Stones
QT_TRANSLATE_NOOP("InstrumentsXML", "Sto."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Finger Snap"),
//: Finger Snap
QT_TRANSLATE_NOOP("InstrumentsXML", "Fi. Sna."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Hand Clap"),
//: Hand Clap
QT_TRANSLATE_NOOP("InstrumentsXML", "Hd. Clp."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Slap"),
//: Slap
QT_TRANSLATE_NOOP("InstrumentsXML", "Sla."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Stamp"),
//: Stamp
QT_TRANSLATE_NOOP("InstrumentsXML", "Sta."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tambourine"),
//: Tambourine
QT_TRANSLATE_NOOP("InstrumentsXML", "Tamb."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Marching Percussion"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Snare Drum"),
//: Snare Drum
QT_TRANSLATE_NOOP("InstrumentsXML", "SD"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Drums"),
//: Tenor Drums
QT_TRANSLATE_NOOP("InstrumentsXML", "TD"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Drums"),
//: Bass Drums
QT_TRANSLATE_NOOP("InstrumentsXML", "BD"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Cymbals"),
//: Cymbals
QT_TRANSLATE_NOOP("InstrumentsXML", "Cy"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Vocals"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Voice"),
//: Voice
QT_TRANSLATE_NOOP("InstrumentsXML", "Vo."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Boy Soprano"),
//: Boy Soprano
QT_TRANSLATE_NOOP("InstrumentsXML", "B. S."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano"),
//: Soprano
QT_TRANSLATE_NOOP("InstrumentsXML", "S."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Mezzo-soprano"),
//: Mezzo-soprano
QT_TRANSLATE_NOOP("InstrumentsXML", "Mzs."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto"),
//: Alto
QT_TRANSLATE_NOOP("InstrumentsXML", "A."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Contralto"),
//: Contralto
QT_TRANSLATE_NOOP("InstrumentsXML", "Contr."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Countertenor"),
//: Countertenor
QT_TRANSLATE_NOOP("InstrumentsXML", "Ct."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor"),
//: Tenor
QT_TRANSLATE_NOOP("InstrumentsXML", "T."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Baritone"),
//: Baritone
QT_TRANSLATE_NOOP("InstrumentsXML", "Bar."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass"),
//: Bass
QT_TRANSLATE_NOOP("InstrumentsXML", "B."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Kazoo"),
//: Kazoo
QT_TRANSLATE_NOOP("InstrumentsXML", "Kaz."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Keyboards"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Piano"),
//: Piano
QT_TRANSLATE_NOOP("InstrumentsXML", "Pno."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Grand Piano"),
//: Grand Piano
QT_TRANSLATE_NOOP("InstrumentsXML", "Pno."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Upright Piano"),
//: Upright Piano
QT_TRANSLATE_NOOP("InstrumentsXML", "Pno."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Honky Tonk Piano"),
//: Honky Tonk Piano
QT_TRANSLATE_NOOP("InstrumentsXML", "Hnk. Pno."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Toy Piano"),
//: Toy Piano
QT_TRANSLATE_NOOP("InstrumentsXML", "Toy Pno."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Clavichord"),
//: Clavichord
QT_TRANSLATE_NOOP("InstrumentsXML", "Cch."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Harpsichord"),
//: Harpsichord
QT_TRANSLATE_NOOP("InstrumentsXML", "Hch."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Virginal"),
//: Virginal
QT_TRANSLATE_NOOP("InstrumentsXML", "Vir."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Celesta"),
//: Celesta
QT_TRANSLATE_NOOP("InstrumentsXML", "Cel."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Electric Piano"),
//: Electric Piano
QT_TRANSLATE_NOOP("InstrumentsXML", "El. Pno."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Clavinet"),
//: Clavinet
QT_TRANSLATE_NOOP("InstrumentsXML", "Clav."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Organ"),
//: Organ
QT_TRANSLATE_NOOP("InstrumentsXML", "Org."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Percussive Organ"),
//: Percussive Organ
QT_TRANSLATE_NOOP("InstrumentsXML", "Perc. Org."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Hammond Organ"),
//: Hammond Organ
QT_TRANSLATE_NOOP("InstrumentsXML", "Hm. Org."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Rotary Organ"),
//: Rotary Organ
QT_TRANSLATE_NOOP("InstrumentsXML", "Rot. Org."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Pipe Organ"),
//: Pipe Organ
QT_TRANSLATE_NOOP("InstrumentsXML", "Org."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Pipe Organ"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Harmonium"),
//: Harmonium
QT_TRANSLATE_NOOP("InstrumentsXML", "Harm."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Reed Organ"),
//: Reed Organ
QT_TRANSLATE_NOOP("InstrumentsXML", "Rd. Org."),
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."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Brightness Synthesizer"),
//: Brightness Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Crystal Synthesizer"),
//: Crystal Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Echoes Synthesizer"),
//: Echoes Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Goblins Synthesizer"),
//: Goblins Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Rain Synthesizer"),
//: Rain Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sci-fi Synthesizer"),
//: Sci-fi Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soundtrack Synthesizer"),
//: Soundtrack Synthesizer
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."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Warm Synthesizer"),
//: Warm Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Poly Synthesizer"),
//: Poly Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Choir Synthesizer"),
//: Choir Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bowed Synthesizer"),
//: Bowed Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Metallic Synthesizer"),
//: Metallic Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Halo Synthesizer"),
//: Halo Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sweep Synthesizer"),
//: Sweep Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Saw Synthesizer"),
//: Saw Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sine Synthesizer"),
//: Sine Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Square Synthesizer"),
//: Square Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Ondes Martenot"),
//: Ondes Martenot
QT_TRANSLATE_NOOP("InstrumentsXML", "O.M."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Mallet Synthesizer"),
//: Mallet Synthesizer
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."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Percussion Synthesizer"),
//: Percussion Synthesizer
QT_TRANSLATE_NOOP("InstrumentsXML", "Perc. Syn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Plucked Strings"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Banjo"),
//: Banjo
QT_TRANSLATE_NOOP("InstrumentsXML", "Bj."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Banjo [Tablature]"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Banjo"),
//: Tenor Banjo
QT_TRANSLATE_NOOP("InstrumentsXML", "T. Bj."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Balalaika"),
//: Balalaika
QT_TRANSLATE_NOOP("InstrumentsXML", "Bal."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Balalaika"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Piccolo Balalaika"),
//: Piccolo Balalaika
QT_TRANSLATE_NOOP("InstrumentsXML", "Pic. Bal."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Piccolo Balalaika"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Prima Balalaika"),
//: Prima Balalaika
QT_TRANSLATE_NOOP("InstrumentsXML", "Pr. Bal."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Prima Balalaika"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Secunda Balalaika"),
//: Secunda Balalaika
QT_TRANSLATE_NOOP("InstrumentsXML", "Sec. Bal."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Secunda Balalaika"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Balalaika"),
//: Alto Balalaika
QT_TRANSLATE_NOOP("InstrumentsXML", "Al. Bal."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Balalaika"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Balalaika"),
//: Bass Balalaika
QT_TRANSLATE_NOOP("InstrumentsXML", "B. Bal."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Balalaika"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Contrabass Balalaika"),
//: Contrabass Balalaika
QT_TRANSLATE_NOOP("InstrumentsXML", "CB. Bal."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Contrabass Balalaika"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bouzouki"),
//: Bouzouki
QT_TRANSLATE_NOOP("InstrumentsXML", "Bou."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bouzouki (3-course)"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bouzouki"),
//: Bouzouki
QT_TRANSLATE_NOOP("InstrumentsXML", "Bou."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bouzouki (4-course)"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Guitar"),
//: Soprano Guitar
QT_TRANSLATE_NOOP("InstrumentsXML", "S. Guit."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Guitar"),
//: Alto Guitar
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Guit."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Classical Guitar"),
//: Classical Guitar
QT_TRANSLATE_NOOP("InstrumentsXML", "Guit."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Classical Guitar [Tablature]"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Contra Guitar"),
//: Contra Guitar
QT_TRANSLATE_NOOP("InstrumentsXML", "C Guit."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Acoustic Guitar"),
//: Acoustic Guitar
QT_TRANSLATE_NOOP("InstrumentsXML", "Guit."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Acoustic Guitar [Tablature]"),
QT_TRANSLATE_NOOP("InstrumentsXML", "11-string Alto Guitar"),
//: 11-string Alto Guitar
QT_TRANSLATE_NOOP("InstrumentsXML", "11-str. A. Guit."),
QT_TRANSLATE_NOOP("InstrumentsXML", "12-string Guitar"),
//: 12-string Guitar
QT_TRANSLATE_NOOP("InstrumentsXML", "12-str. Guit."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Pedal Steel Guitar"),
//: Pedal Steel Guitar
QT_TRANSLATE_NOOP("InstrumentsXML", "Ped. St. Guit."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Electric Guitar"),
//: Electric Guitar
QT_TRANSLATE_NOOP("InstrumentsXML", "El. Guit."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Electric Guitar [Tablature]"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Harp"),
//: Harp
QT_TRANSLATE_NOOP("InstrumentsXML", "Hrp."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Koto"),
//: Koto
QT_TRANSLATE_NOOP("InstrumentsXML", "Ko."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Lute"),
//: Lute
QT_TRANSLATE_NOOP("InstrumentsXML", "Lt."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Lute [Tablature]"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Lute"),
//: Lute
QT_TRANSLATE_NOOP("InstrumentsXML", "Lt."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Lute 5-course"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Lute"),
//: Lute
QT_TRANSLATE_NOOP("InstrumentsXML", "Lt."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Lute 6-course"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Lute"),
//: Lute
QT_TRANSLATE_NOOP("InstrumentsXML", "Lt."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Lute 7-course"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Lute"),
//: Lute
QT_TRANSLATE_NOOP("InstrumentsXML", "Lt."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Lute 8-course"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Lute"),
//: Lute
QT_TRANSLATE_NOOP("InstrumentsXML", "Lt."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Lute 9-course"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Lute"),
//: Lute
QT_TRANSLATE_NOOP("InstrumentsXML", "Lt."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Lute 10-course"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Lute"),
//: Lute
QT_TRANSLATE_NOOP("InstrumentsXML", "Lt."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Lute 13-course"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Archlute"),
//: Archlute
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Lt."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Theorbo"),
//: Theorbo
QT_TRANSLATE_NOOP("InstrumentsXML", "Thb."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Mandolin"),
//: Mandolin
QT_TRANSLATE_NOOP("InstrumentsXML", "Mdn."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Mandolin [Tablature]"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Mandola"),
//: Mandola
QT_TRANSLATE_NOOP("InstrumentsXML", "Mda."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Mandola"),
//: Alto Mandola
QT_TRANSLATE_NOOP("InstrumentsXML", "Mda."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Mandola"),
//: Tenor Mandola
QT_TRANSLATE_NOOP("InstrumentsXML", "Mda."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Mandocello"),
//: Mandocello
QT_TRANSLATE_NOOP("InstrumentsXML", "Mncl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Octave Mandolin"),
//: Octave Mandolin
QT_TRANSLATE_NOOP("InstrumentsXML", "OM."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Shamisen"),
//: Shamisen
QT_TRANSLATE_NOOP("InstrumentsXML", "Sh."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Sitar"),
//: Sitar
QT_TRANSLATE_NOOP("InstrumentsXML", "Si."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Ukulele"),
//: Ukulele
QT_TRANSLATE_NOOP("InstrumentsXML", "Uk."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Ukulele [Tablature]"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Ukulele"),
//: Tenor Ukulele
QT_TRANSLATE_NOOP("InstrumentsXML", "Ten. Uk."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Baritone Ukulele"),
//: Baritone Ukulele
QT_TRANSLATE_NOOP("InstrumentsXML", "Bar. Uk."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Guitar"),
//: Bass Guitar
QT_TRANSLATE_NOOP("InstrumentsXML", "B. Guit."),
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."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Electric Bass [Tablature]"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Fretless Electric Bass"),
//: Fretless Electric Bass
QT_TRANSLATE_NOOP("InstrumentsXML", "Frtl. El. B."),
QT_TRANSLATE_NOOP("InstrumentsXML", "5-str. Electric Bass"),
//: 5-str. Electric Bass
QT_TRANSLATE_NOOP("InstrumentsXML", "El. B."),
QT_TRANSLATE_NOOP("InstrumentsXML", "5-str. Electric Bass [Tablature]"),
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", "Vc."),
QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Violoncellos"),
//: Violoncellos
QT_TRANSLATE_NOOP("InstrumentsXML", "Vcs."),
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
QT_TRANSLATE_NOOP("InstrumentsXML", "Pds. v."),
QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Treble Viol"),
//: Treble Viol
QT_TRANSLATE_NOOP("InstrumentsXML", "Tr. vl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Alto Viol"),
//: Alto Viol
QT_TRANSLATE_NOOP("InstrumentsXML", "A. Vl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Viol"),
//: Tenor Viol
QT_TRANSLATE_NOOP("InstrumentsXML", "T. Vl."),
QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Viola da gamba"),
//: Viola da gamba
QT_TRANSLATE_NOOP("InstrumentsXML", "Vla. d. g."),
QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Viola da gamba (Tab)"),
//: Viola da gamba (Tab)
QT_TRANSLATE_NOOP("InstrumentsXML", "Vla. d. g."),
QT_TRANSLATE_NOOP("InstrumentsXML", "Viola da gamba (Tablature)"),
QT_TRANSLATE_NOOP("InstrumentsXML", "Violone"),
//: Violone
QT_TRANSLATE_NOOP("InstrumentsXML", "Vne."),
QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
QT_TRANSLATE_NOOP("InstrumentsXML", "D Violone"),
//: D Violone
QT_TRANSLATE_NOOP("InstrumentsXML", "Vne."),
QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
|