From 43c94938c0c95f6ea507952901896d55530a4123 Mon Sep 17 00:00:00 2001 From: Vincent Giersch Date: Tue, 30 Jun 2026 13:00:32 +0200 Subject: [PATCH] feat: localized instrument catalogs Add per-locale catalogs under data/i18n/.json (27 locales). Each is a complete, drop-in catalog with the same shape and instrument IDs as data/instruments.json, with localized name/shortname (falling back to English where untranslated). - expose ./data/i18n/*.json via package exports - validate every locale catalog against the schema and assert ID/order parity with the English catalog - document localized usage in the README and add locale catalog tests Generated by instruments-meta's sync-public-instruments script. --- README.md | 29 +- data/i18n/da.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/de.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/en-GB.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/es.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/fi.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/fil.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/fr-CA.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/fr.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/hi.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/id.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/it.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/ja-HIRA.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/ja.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/ko.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/ms.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/nb.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/nl.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/pl.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/pt-BR.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/pt.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/ro.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/ru.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/sv.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/tr.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/zh-HK.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/zh-Hans.json | 1710 ++++++++++++++++++++++++++++++++++++++++ data/i18n/zh-TW.json | 1710 ++++++++++++++++++++++++++++++++++++++++ package.json | 1 + scripts/validate.mjs | 85 +- test/i18n.test.mjs | 64 ++ 31 files changed, 46318 insertions(+), 31 deletions(-) create mode 100644 data/i18n/da.json create mode 100644 data/i18n/de.json create mode 100644 data/i18n/en-GB.json create mode 100644 data/i18n/es.json create mode 100644 data/i18n/fi.json create mode 100644 data/i18n/fil.json create mode 100644 data/i18n/fr-CA.json create mode 100644 data/i18n/fr.json create mode 100644 data/i18n/hi.json create mode 100644 data/i18n/id.json create mode 100644 data/i18n/it.json create mode 100644 data/i18n/ja-HIRA.json create mode 100644 data/i18n/ja.json create mode 100644 data/i18n/ko.json create mode 100644 data/i18n/ms.json create mode 100644 data/i18n/nb.json create mode 100644 data/i18n/nl.json create mode 100644 data/i18n/pl.json create mode 100644 data/i18n/pt-BR.json create mode 100644 data/i18n/pt.json create mode 100644 data/i18n/ro.json create mode 100644 data/i18n/ru.json create mode 100644 data/i18n/sv.json create mode 100644 data/i18n/tr.json create mode 100644 data/i18n/zh-HK.json create mode 100644 data/i18n/zh-Hans.json create mode 100644 data/i18n/zh-TW.json create mode 100644 test/i18n.test.mjs diff --git a/README.md b/README.md index 56f7326..75a403b 100644 --- a/README.md +++ b/README.md @@ -45,11 +45,36 @@ interface Instrument { } ``` +## Localized names + +`data/instruments.json` carries English names. Every other locale is available as a **complete, +drop-in catalog** with the exact same shape under `data/i18n/.json` — every group and +instrument is present, with localized `name` and `shortname` (falling back to English wherever no +translation exists). You load the one file for the locale you need; there is nothing to merge. + +```ts +import type { InstrumentsFile } from '@flat/instruments'; +import fr from '@flat/instruments/data/i18n/fr.json' with { type: 'json' }; + +const catalog = fr as InstrumentsFile; +catalog.groups[0].name; // → "Cuivres" +catalog.groups + .flatMap(g => g.instruments) + .find(i => i.id === 'brass.trumpet'); // → { …, name: "Trompette", shortname: "Tromp." } +``` + +Available locales: `da`, `de`, `en-GB`, `es`, `fi`, `fil`, `fr`, `fr-CA`, `hi`, `id`, `it`, `ja`, +`ja-HIRA`, `ko`, `ms`, `nb`, `nl`, `pl`, `pt`, `pt-BR`, `ro`, `ru`, `sv`, `tr`, `zh-Hans`, `zh-HK`, +`zh-TW`. Each file validates against the same +[`schema/instruments.schema.json`](./schema/instruments.schema.json) and exposes the same instrument +IDs, in the same order, as `data/instruments.json` — only the names differ. + ## Raw JSON If you are not using JavaScript, the same data is available as plain JSON, bundled in this package at -[`data/instruments.json`](./data/instruments.json) -(validated against [`schema/instruments.schema.json`](./schema/instruments.schema.json)). +[`data/instruments.json`](./data/instruments.json) (English) and +[`data/i18n/.json`](./data/i18n) (localized), both validated against +[`schema/instruments.schema.json`](./schema/instruments.schema.json). ## Development diff --git a/data/i18n/da.json b/data/i18n/da.json new file mode 100644 index 0000000..1bf494c --- /dev/null +++ b/data/i18n/da.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Messingblæseinstrumenter", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trompet", + "shortname": "Trp.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trompet", + "shortname": "Trp.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Basun", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Basun", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Horn i F", + "shortname": "Hn. i F", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Horn i F", + "shortname": "Hn. i F", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Horn i C", + "shortname": "C-horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Horn i C", + "shortname": "C-horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Horn i D", + "shortname": "D-horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Horn i D", + "shortname": "D-horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Baryton", + "shortname": "Bar.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Baryton", + "shortname": "Bar.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Baryton (diskantnøgle)", + "shortname": "Bar. G-nøg.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Baryton (diskantnøgle)", + "shortname": "Bar. G-nøg.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Eufonium", + "shortname": "Euf.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Messingsektion", + "shortname": "Messingsektion", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Elektroniske instrumenter", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Portamento synth-bas", + "shortname": "Portamento-bas", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Reese synth-bas", + "shortname": "Resonans-bas", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Plukket synth-bas", + "shortname": "Pluk-bas", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Underwide synth-bas", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Solid synth-bas", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Let synth-bas", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Airbass synth-bas", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Evolution synth-bas", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Weekend synth-bas", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Plucky synth-bas", + "shortname": "Pl. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Phase synth-bas", + "shortname": "Ph. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Out synth-bas", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Episk klokke-lead-synth", + "shortname": "Epk Klk LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Savtak-chorus lead-synth", + "shortname": "Sv Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Lyssværd lead-synth", + "shortname": "Lys LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Klar stjerne lead-synth", + "shortname": "Klr Stj LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Det dybe rum lead-synth", + "shortname": "Dp Sp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Sci-fi-computer lead-synth", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Syngende robot lead-synth", + "shortname": "Sg Rb LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Nordstjerne lead-synth", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Støjende lead-synth", + "shortname": "Støjende LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Square One lead-synth", + "shortname": "Firkant 1 LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Drill lead-synth", + "shortname": "Drill LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Funky lead-synth", + "shortname": "Funk LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Astral kommunikation lead-synth", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Drømmekor lead-synth", + "shortname": "Dr Kor LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Rumorkester lead-synth", + "shortname": "Sp Orch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Melodisk asteroide lead-synth", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Mars-rover lead-synth", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Korsynthesizer", + "shortname": "Synth.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Frie rørblade", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Harmonika", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Mundharmonika", + "shortname": "Mundh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Tangentinstrumenter", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Flygel", + "shortname": "Klav.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Stramt klaver", + "shortname": "Klav.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Koncertflygel", + "shortname": "Klav.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Flygel", + "shortname": "Klav.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Piano", + "shortname": "Klav.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Cembalo", + "shortname": "Cem.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Celesta", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Orgel", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Hammondorgel", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Harmonium", + "shortname": "Harm.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Leslie-orgel", + "shortname": "Les. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Percussivt orgel", + "shortname": "Perc. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Stemt slagtøj", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Pauker", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Xylofon", + "shortname": "Xyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibrafon", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Klokkespil", + "shortname": "Klsp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mar.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Rørklokker (orkesterklokker)", + "shortname": "Rørkl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Spilledåse", + "shortname": "Spilledåse", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Sopran-ståltrommer", + "shortname": "Kantslag (lilletromme)", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Bas-ståltrommer", + "shortname": "B. St. Dr.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Slagtøj", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Trommesæt", + "shortname": "Trommer", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Trommesæt", + "shortname": "Trommer", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Orkestertrommesæt", + "shortname": "Trommer", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Hiphop-sæt", + "shortname": "HH-sæt", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Marchlilletrommer", + "shortname": "Mar. LT", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Marchlilletrommer", + "shortname": "Mar. LT", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Marcherende tenortrommer", + "shortname": "Mar. Tn.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Marcherende tenortrommer", + "shortname": "Mar. Tn.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Marcherende stortrommer", + "shortname": "Marchbaryton", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Marcherende stortrommer", + "shortname": "Marchbaryton", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Marcherende bækkener", + "shortname": "Mar Bæ", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Marcherende bækkener", + "shortname": "Mar Bæ", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Koncertstortromme", + "shortname": "KST", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Orientalske gonger", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Japanske Nagado Taiko-trommer", + "shortname": "Nag", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Træblokke", + "shortname": "TB", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongotrommer", + "shortname": "Bongo", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Congatrommer", + "shortname": "Conga", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Claves", + "shortname": "Claves", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Agogo-bjælder", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Fløjter", + "shortname": "Flø.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Vindspil", + "shortname": "Vindsp.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Fingerknips", + "shortname": "Fing.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Håndklap", + "shortname": "Klp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Frithængende bækken", + "shortname": "Ophængt bækken", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Triangel", + "shortname": "Tri.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Bjælder", + "shortname": "Bjæld.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Maracas", + "shortname": "Mrcs.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Akustisk stortromme", + "shortname": "Stortromme", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Sidestick", + "shortname": "Sd Stk", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Akustisk lilletromme", + "shortname": "LT", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Gulvtam", + "shortname": "Gv Tam", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Lav tam", + "shortname": "L Tam", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Mellemlav tom", + "shortname": "LM Tam", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Mellemtam", + "shortname": "M Tam", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Mellemhøj tom", + "shortname": "HM Tam", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Høj tam", + "shortname": "H Tam", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Lukket hi-hat", + "shortname": "Luk HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Åben hi-hat", + "shortname": "Åb HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Pedal-hi-hat", + "shortname": "Ped HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Crash-bækken", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Ridebækken", + "shortname": "Rd Bæ", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "China-bækken", + "shortname": "Ch Bæ", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Ride-klokke", + "shortname": "Rd Kl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Tamburin", + "shortname": "Tamb.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Splashbækken", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Koklokke", + "shortname": "Koklokke", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Plukkede strengeinstrumenter", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Akustisk guitar", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Klassisk guitar", + "shortname": "Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Akustisk guitar", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Elguitar", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Elguitar (ren)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Elguitar (jazz)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Elguitar (dæmpet)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Elguitar med højspændings-distortion", + "shortname": "Forv. elg.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Elguitar (crunch)", + "shortname": "Elg. crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Elguitar lead", + "shortname": "Git. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Forvrænget elguitar", + "shortname": "Forv. elg.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Moderne elbas", + "shortname": "Mod. bas", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Vintage elbas", + "shortname": "Vin. bas", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Elbas", + "shortname": "El. b.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Elbas (plekter)", + "shortname": "El. bas", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Slapbas", + "shortname": "Sl. bas", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Japansk koto", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (japansk lut)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (arabisk lut)", + "shortname": "Oud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandolin", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Harpe", + "shortname": "Hrp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Strygere", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Violin", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Violin", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Violin lead", + "shortname": "Vln. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Viola", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Viola", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Cello", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Cello", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Kontrabas", + "shortname": "Kb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Kontrabas", + "shortname": "Kb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Strygerensemble", + "shortname": "Str. Ens.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Kinesisk erhu", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Vokaler", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Kor sopran kvinder", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Kor sopran piger", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Kor sopran drenge", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Kor kontratenor mænd", + "shortname": "Kornet", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Kor alt kvinder", + "shortname": "Alt", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Kor alt piger", + "shortname": "Alt", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Kor tenor koncertsal", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Kor tenor katedral", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Kor bas koncertsal", + "shortname": "Bas", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Kor bas katedral", + "shortname": "Bas", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Kor (sopran)", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Kor (alt)", + "shortname": "Alt", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Kor (tenor)", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Kor (bas)", + "shortname": "Bas", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Kor (ah)", + "shortname": "K. Ah.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Vokal ooh", + "shortname": "Vok. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Vokal lead", + "shortname": "Vok. Lead", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Træblæsere", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Piccolo", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Orkesterfløjte", + "shortname": "Flø.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Traditionel fløjte", + "shortname": "Flø.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Fløjte", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Altfløjte", + "shortname": "A. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Panfløjte", + "shortname": "Pn. fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Blokfløjte", + "shortname": "Bfl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Altblokfløjte i F", + "shortname": "Alt. blokfl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Blikfløjte", + "shortname": "Tinfl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Obo", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Engelskhorn", + "shortname": "E. hn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Klarinet (Bb)", + "shortname": "Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Klarinetduet", + "shortname": "Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Klarinet", + "shortname": "Kl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Altklarinet", + "shortname": "Alt. kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Basklarinet", + "shortname": "B. kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Kontrabasklarinet", + "shortname": "Kb. kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Fagot", + "shortname": "Fg.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Kontrafagot", + "shortname": "Ktfag.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Sopransaxofon", + "shortname": "S. sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Altsaxofon", + "shortname": "A. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Tenorsaxofon", + "shortname": "T. sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Barytonsaxofon", + "shortname": "Bar. sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Sopransaxofon", + "shortname": "S. sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Altsaxofon", + "shortname": "A. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Tenorsaxofon", + "shortname": "T. sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Barytonsaxofon", + "shortname": "Bar. sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Sækkepibe", + "shortname": "Sækp.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Okarina", + "shortname": "Ok.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (kinesisk fløjte)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (japansk fløjte)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Specielle", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Katte-miav", + "shortname": "Kat", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Star Wars-sæt", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/de.json b/data/i18n/de.json new file mode 100644 index 0000000..5780769 --- /dev/null +++ b/data/i18n/de.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Blechbläser", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trompete", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trompete", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Posaune", + "shortname": "Pos.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Posaune", + "shortname": "Pos.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Horn in F", + "shortname": "F Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Horn in F", + "shortname": "F Hn.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Horn in C", + "shortname": "C Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Horn in C", + "shortname": "C Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Horn in D", + "shortname": "D Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Horn in D", + "shortname": "D Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Baritonhorn", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Baritonhorn", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Baritonhorn", + "shortname": "Bar. Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Baritonhorn", + "shortname": "Bar. Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Euphonium", + "shortname": "Euph.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Bläsersatz", + "shortname": "Blechbläser-Sektion", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Elektronische Instrumente", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Synth-Bass „Portamento“", + "shortname": "Portamento-Bass", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Synth-Bass „Reese“", + "shortname": "Resonanz-Bass", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Gezupfter Synth-Bass", + "shortname": "Pluck-Bass", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Synth-Bass „Underwide“", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Solider Synth-Bass", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Synth-Bass „Light“", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Synth-Bass „Airbass“", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Synth-Bass „Evolution“", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Synth-Bass „Weekend“", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Synth-Bass „Plucky“", + "shortname": "Pl. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Synth-Bass „Phase“", + "shortname": "Ph. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Synth-Bass „Out“", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Synth-Lead „Epic Bell“", + "shortname": "Epc Bl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Synth-Lead „Saw Chorus“", + "shortname": "Sw Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Synth-Lead „Lightsaber“", + "shortname": "Heller Lead-Synth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Synth-Lead „Bright Star“", + "shortname": "Brt S LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Synth-Lead „Deep Space“", + "shortname": "Dp Sp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Synth-Lead „Sci-Fi Computer“", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Synth-Lead „Singing Robots“", + "shortname": "Sg Rb LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Synth-Lead „North Star“", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Synth-Lead „Noisy“", + "shortname": "Rauschender Lead-Synth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Synth-Lead „Square One“", + "shortname": "Rechteck 1 Lead-Synth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Synth-Lead „Drill“", + "shortname": "Drill-Lead-Synth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Synth-Lead „Funky“", + "shortname": "Funk-Lead-Synth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Synth-Lead „Astral Communication“", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Synth-Lead „Dreamy Choir“", + "shortname": "Dr Chr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Synth-Lead „Space Orchestra“", + "shortname": "Sp Orch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Synth-Lead „Melodic Asteroid“", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Synth-Lead „Mars Rover“", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Choir Synthesizer", + "shortname": "Synth.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Instrumente mit freiem Rohrblatt", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Akkordeon", + "shortname": "Akk.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Harmonika", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Tasteninstrumente", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Flügel", + "shortname": "Klav.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Klavier", + "shortname": "Klav.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Konzertflügel", + "shortname": "Klav.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Flügel", + "shortname": "Klav.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Klavier", + "shortname": "Klav.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Cembalo", + "shortname": "Cbl.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Celesta", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Orgel", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Hammondorgel", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Harmonium", + "shortname": "Hrm.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Drehorgel", + "shortname": "Dreh-Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Perkussive Orgel", + "shortname": "Perk. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Gestimmte Perkussion", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Pauke", + "shortname": "Pk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Xylophon", + "shortname": "Xyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibraphon", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Glockenspiel", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Röhrenglocken (Orchesterglocken)", + "shortname": "Röhr. Gl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Spieluhr", + "shortname": "Sp. Uhr", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Sopran-Stahltrommeln", + "shortname": "S. St. Tr.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Bass Stahltrommeln", + "shortname": "B. St. Tr.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Perkussion", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Schlagzeug", + "shortname": "Schlagzeug", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Schlagzeug", + "shortname": "Schlagzeug", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Schlagwerk", + "shortname": "Schlagzeug", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Hip-Hop Set", + "shortname": "HH Set", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Marschtrommel - Snare", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Marschtrommel - Snare", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Tenor-Marschtrommel", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Tenor-Marschtrommel", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Tiefe Marschtrommel", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Tiefe Marschtrommel", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Marsch-Becken", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Marsch-Becken", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Konzert-Bass-Trommel", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Orientalische Gongs", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Japanische Nagado-Taiko-Trommeln", + "shortname": "Nagado-Daiko", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Holzblöcke", + "shortname": "WB", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongos", + "shortname": "Bongo", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Congas", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Klanghölzer", + "shortname": "Claves", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Agogo-Glocken", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Pfeifen", + "shortname": "Pfe.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Windspiel", + "shortname": "Windsp.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Fingerschnippen", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Klatschen", + "shortname": "Klt", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Hängendes Becken", + "shortname": "Hängebecken", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Triangel", + "shortname": "Trg.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Jingle Bells", + "shortname": "Jgl. Bl.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Maracas", + "shortname": "Mrcs.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Akustische Basstrommel", + "shortname": "B.D.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Side Stick", + "shortname": "Sd Stk", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Akustische Snare Drum", + "shortname": "Snr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Standtrommel", + "shortname": "St. Tr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Tiefes Tom", + "shortname": "T. Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Mittleres Tom (tief)", + "shortname": "LM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Mid Tom", + "shortname": "M. Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Mittleres Tom (hoch)", + "shortname": "HM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Hohes Tom", + "shortname": "H. Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Geschlossene Hi-Hat", + "shortname": "Cl HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Offene Hi-Hat", + "shortname": "Op HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Pedal-Hi-Hat", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Crash-Becken", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Ride-Becken", + "shortname": "Rd Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "China-Becken", + "shortname": "Ch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Ride Bell", + "shortname": "Rd Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Tamburin", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Splash-Becken", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Kuhglocke", + "shortname": "Kuhglocke", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Zupfinstrumente", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Akustische Gitarre", + "shortname": "Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Klassische Gitarre", + "shortname": "Git.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Akustische Gitarre", + "shortname": "Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "E-Gitarre", + "shortname": "E-Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "E-Gitarre (clean)", + "shortname": "E-Git.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "E-Gitarre (jazz)", + "shortname": "E-Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "E-Gitarre (gedämpft)", + "shortname": "E-Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Hochspannungs-Verzerrgitarre", + "shortname": "Dist. G.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "E-Gitarre - Crunch", + "shortname": "G. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "E-Lead-Gitarre", + "shortname": "G. Lead", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Verzerrte Gitarre", + "shortname": "Vzr. Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Moderner E-Bass", + "shortname": "Mo. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Antiker E-Bass", + "shortname": "Vi. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "E-Bass", + "shortname": "E-B.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "E-Bass (mit Plektrum)", + "shortname": "E. Bass", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Schlagbass", + "shortname": "Sl. Bass", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Japanische Koto", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (japanische Laute)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (arabische Laute)", + "shortname": "Oud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandoline", + "shortname": "Mand.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Harfe", + "shortname": "Hrf.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Streichinstrumente", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Violine", + "shortname": "Vl.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Violine", + "shortname": "Vl.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Erste Geige", + "shortname": "1. Geig.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Bratsche", + "shortname": "Bra.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Bratsche", + "shortname": "Bra.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Cello", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Cello", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Kontrabass", + "shortname": "Kb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Kontrabass", + "shortname": "Kb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Streich-Ensemble", + "shortname": "St. Ens.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Chinesisches Erhu", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Gesang", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Damenchor - Sopran", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Mädchenchor - Sopran", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Jungenchor - Sopran", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Herrenchor - Kontratenor", + "shortname": "Knt.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Damenchor - Alt", + "shortname": "Alt", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Mädchenchor - Alt", + "shortname": "Alt", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Chor - Raum - Tenor", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Chor - Kathedrale - Tenor", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Chor - Raum - Bass", + "shortname": "Bass", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Chor - Kathedrale - Bass", + "shortname": "Bass", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Chor - Sopran", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Chor - Alt", + "shortname": "Alt", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Chor - Tenor", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Chor - Bass", + "shortname": "Bass", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Chor Aahs", + "shortname": "Ch. Aa.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Stimme Ooh", + "shortname": "St. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Führender Gesang", + "shortname": "Leadgesang", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Holzblasinstrumente", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Piccoloflöte", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Orchesterflöte", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Traditionelle Flöte", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Querflöte", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Altflöte", + "shortname": "A. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Panflöte", + "shortname": "Pn.fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Blockflöte", + "shortname": "Bfl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Altblockflöte in F", + "shortname": "Alto Rec.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Irische Blechflöte", + "shortname": "Tin Whistle", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Oboe", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Englischhorn", + "shortname": "E Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Konzertklarinette (B)", + "shortname": "Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Klarinetten-Duett", + "shortname": "Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Klarinette", + "shortname": "Kl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Altklarinette", + "shortname": "Al. Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Bassklarinette", + "shortname": "B. Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Kontrabassklarinette", + "shortname": "Kb. Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Fagott", + "shortname": "Fgt.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Kontrafagott", + "shortname": "Kfg.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Sopran-Saxophon", + "shortname": "S. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Alt-Saxophon", + "shortname": "A. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Tenor-Saxophon", + "shortname": "T. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Bariton-Saxophon", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Sopran-Saxophon", + "shortname": "S. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Alt-Saxophon", + "shortname": "A. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Tenor-Saxophon", + "shortname": "T. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Bariton-Saxophon", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Dudelsack", + "shortname": "Ddls.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Okarina", + "shortname": "Ok.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (chinesische Flöte)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (japanische Flöte)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Spezial", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Katzenmiauen", + "shortname": "Katze", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Star-Wars-Set", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/en-GB.json b/data/i18n/en-GB.json new file mode 100644 index 0000000..1f9536c --- /dev/null +++ b/data/i18n/en-GB.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Brass", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trumpet", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trumpet", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Trombone", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Trombone", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Horn in F", + "shortname": "F Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Horn in F", + "shortname": "F Hn.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Horn in C", + "shortname": "C Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Horn in C", + "shortname": "C Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Horn in D", + "shortname": "D Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Horn in D", + "shortname": "D Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Baritone Horn", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Baritone Horn", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Baritone TC", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Baritone TC", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Euphonium", + "shortname": "Euph.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Brass Section", + "shortname": "Brass Section", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Electronic Instruments", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Portamento Synth Bass", + "shortname": "Prt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Reese Synth Bass", + "shortname": "Rs. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Plucked Synth Bass", + "shortname": "Plck. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Underwide Synth Bass", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Solid Synth Bass", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Light Synth Bass", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Airbass Synth Bass", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Evolution Synth Bass", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Weekend Synth Bass", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Plucky Synth Bass", + "shortname": "Pl. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Phase Synth Bass", + "shortname": "Ph. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Out Synth Bass", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Epic Bell Lead Synth", + "shortname": "Epc Bl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Saw Chorus Lead Synth", + "shortname": "Sw Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Lightsaber Lead Synth", + "shortname": "Lghts LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Bright Star Lead Synth", + "shortname": "Brt S LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Deep Space Lead Synth", + "shortname": "Dp Sp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Sci-Fi Computer Lead Synth", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Singing Robots Lead Synth", + "shortname": "Sg Rb LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "North Star Lead Synth", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Noisy Lead Synth", + "shortname": "Nsy LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Square One Lead Synth", + "shortname": "Sq 1 LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Drill Lead Synth", + "shortname": "Drl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Funky Lead Synth", + "shortname": "Fnk LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Astral Communication Lead Synth", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Dreamy Choir Lead Synth", + "shortname": "Dr Chr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Space Orchestra Lead Synth", + "shortname": "Sp Orch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Melodic Asteroid Lead Synth", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Mars Rover Lead Synth", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Choir Synthesiser", + "shortname": "Synth.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Free Reed", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Accordion", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Harmonica", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Keyboards", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Grand Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Tight Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Concert Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Grand Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Harpsichord", + "shortname": "Hch.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Celesta", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Organ", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Hammond Organ", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Reed Organ", + "shortname": "Rd. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Rotary Organ", + "shortname": "Rot. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Percussive Organ", + "shortname": "Perc. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Tuned Percussion", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Timpani", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Xylophone", + "shortname": "Xyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibraphone", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Glockenspiel", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Tubular Bells (Orchestral Chimes)", + "shortname": "Tu. Be.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Music Box", + "shortname": "M. Box", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Soprano Steel Drums", + "shortname": "S. St. Dr.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Bass Steel Pans", + "shortname": "B. St. P.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Percussion", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Drum Kit", + "shortname": "Drums", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Drum Kit", + "shortname": "Drums", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Orchestral Drum Kit", + "shortname": "Drums", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Hip-Hop Set", + "shortname": "HH Set", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Marching Snare Drums", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Marching Snare Drums", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Marching Tenor Drums", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Marching Tenor Drums", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Marching Bass Drums", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Marching Bass Drums", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Marching Cymbals", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Marching Cymbals", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Concert Bass Drum", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Oriental Gongs", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Japanese Nagado Taiko Drums", + "shortname": "Nag", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Woodblocks", + "shortname": "WB", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongos", + "shortname": "Bongo", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Congas", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Claves", + "shortname": "Clv.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Agogo Bells", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Whistles", + "shortname": "Whi.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Wind Chimes", + "shortname": "Wind Chm", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Finger Snap", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Hand Clap", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Suspended Cymbal", + "shortname": "Sus. Cym.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Triangle", + "shortname": "Trg.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Jingle Bells", + "shortname": "Jgl Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Maracas", + "shortname": "Mrcs", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Acoustic Bass Drum", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Side Stick", + "shortname": "Sd Stk", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Acoustic Snare Drum", + "shortname": "Snr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Floor Tom", + "shortname": "Fl Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Low Tom", + "shortname": "L Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Low-Mid Tom", + "shortname": "LM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Mid Tom", + "shortname": "M Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "High-Mid Tom", + "shortname": "HM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "High Tom", + "shortname": "H Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Closed Hi-Hat", + "shortname": "Cl HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Open Hi-Hat", + "shortname": "Op HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Pedal Hi-Hat", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Crash Cymbal", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Ride Cymbal", + "shortname": "Rd Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "China Cymbal", + "shortname": "Ch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Ride Bell", + "shortname": "Rd Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Tambourine", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Splash Cymbal", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Cowbell", + "shortname": "Cow", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Plucked Strings", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Acoustic Guitar", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Classical Guitar", + "shortname": "Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Acoustic Guitar", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Electric Guitar", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Electric Guitar (clean)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Electric Guitar (jazz)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Electric Guitar (muted)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "High-Voltage Distortion Guitar", + "shortname": "Dist. G.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Electric Guitar Crunch", + "shortname": "G. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Electric Guitar Lead", + "shortname": "G. Lead", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Distortion Guitar", + "shortname": "Dist. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Modern Electric Bass", + "shortname": "Mo. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Vintage Electric Bass", + "shortname": "Vi. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Electric Bass", + "shortname": "El. B.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Electric Bass (plectrum)", + "shortname": "El. Bass", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Slap Bass", + "shortname": "Sl. Bass", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Japanese Koto", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (Japanese Lute)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (Arabic Lute)", + "shortname": "Oud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandolin", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Harp", + "shortname": "Hrp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Strings", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Violin", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Violin", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Violin Lead", + "shortname": "Vln. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Viola", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Viola", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Cello", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Cello", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Contrabass", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Contrabass", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "String Ensemble", + "shortname": "Str. Ens.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Chinese Erhu", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Vocals", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Choir Soprano Women", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Choir Soprano Girls", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Choir Soprano Boys", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Choir Countertenor Men", + "shortname": "Ct.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Choir Alto Women", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Choir Alto Girls", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Choir Tenor Hall", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Choir Tenor Cathedral", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Choir Bass Hall", + "shortname": "Bass", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Choir Bass Cathedral", + "shortname": "Bass", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Choir Soprano", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Choir Alto", + "shortname": "Alto", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Choir Tenor", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Choir Bass", + "shortname": "Bass", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Choir Aahs", + "shortname": "Ch. Aa.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Voice Oohs", + "shortname": "Vo. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Voice Lead", + "shortname": "Vo. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Woodwind", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Piccolo", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Orchestral Flute", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Traditional Flute", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Flute", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Alto Flute", + "shortname": "A. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Pan Flute", + "shortname": "Pn. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Recorder", + "shortname": "Rec.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Alto Recorder in F", + "shortname": "Alto Rec.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Tin Whistle", + "shortname": "Tin Wh.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Oboe", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Cor Anglais", + "shortname": "Cor Ang.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Concert Clarinet (Bb)", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Clarinet Duet", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Clarinet", + "shortname": "Cl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Alto Clarinet", + "shortname": "A. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Bass Clarinet", + "shortname": "B. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Contrabass Clarinet", + "shortname": "Cb. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Bassoon", + "shortname": "Bsn.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Contrabassoon", + "shortname": "Cb. Bsn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Soprano Saxophone", + "shortname": "S. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Alto Saxophone", + "shortname": "A. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Tenor Saxophone", + "shortname": "T. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Baritone Saxophone", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Soprano Saxophone", + "shortname": "S. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Alto Saxophone", + "shortname": "A. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Tenor Saxophone", + "shortname": "T. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Baritone Saxophone", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Bagpipes", + "shortname": "Bagp.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Ocarina", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (Chinese Flute)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (Japanese flute)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Special", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Cat Meows", + "shortname": "Cat", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Star Wars Set", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/es.json b/data/i18n/es.json new file mode 100644 index 0000000..b9b4ad8 --- /dev/null +++ b/data/i18n/es.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Metales", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trompeta", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trompeta", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Trombón", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Trombón", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Corno en Fa", + "shortname": "F Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Corno en Fa", + "shortname": "F Hn.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Corno en Do", + "shortname": "Corno francés en Do", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Corno en Do", + "shortname": "Corno francés en Do", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Corno en Re", + "shortname": "Corno francés en Re", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Corno en Re", + "shortname": "Corno francés en Re", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Corno barítono", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Corno barítono", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Barítono TC", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Barítono TC", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Bombardino", + "shortname": "Euf.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Sección de metales", + "shortname": "Sección de metales", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Instrumentos electrónicos", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Bajo de sintetizador con portamento", + "shortname": "Bajo con portamento", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Bajo de sintetizador Reese", + "shortname": "Bajo resonante", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Bajo de sintetizador punteado", + "shortname": "Bajo punteado", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Bajo de sintetizador Underwide", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Bajo de sintetizador sólido", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Bajo de sintetizador ligero", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Bajo de sintetizador Airbass", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Bajo de sintetizador Evolution", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Bajo de sintetizador Weekend", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Bajo de sintetizador percusivo", + "shortname": "Pl. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Bajo de sintetizador con fase", + "shortname": "Ph. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Bajo de sintetizador Out", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Sintetizador lead de campana épica", + "shortname": "Epc Bl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Sintetizador lead con chorus de diente de sierra", + "shortname": "Sw Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Sintetizador lead de sable láser", + "shortname": "Luces (LS)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Sintetizador lead de estrella brillante", + "shortname": "Onda de sierra brillante (LS)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Sintetizador lead de espacio profundo", + "shortname": "Dp Sp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Sintetizador lead de computadora de ciencia ficción", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Sintetizador lead de robots cantores", + "shortname": "Sg Rb LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Sintetizador lead de la Estrella del Norte", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Sintetizador lead ruidoso", + "shortname": "Ruidoso (LS)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Sintetizador lead de onda cuadrada básica", + "shortname": "Onda cuadrada 1 (LS)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Sintetizador lead de drill", + "shortname": "Drill (LS)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Sintetizador lead de funk", + "shortname": "Funk (LS)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Sintetizador lead de comunicación astral", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Sintetizador lead de coro soñador", + "shortname": "Dr Chr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Sintetizador lead de orquesta espacial", + "shortname": "Sp Orch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Sintetizador lead de asteroide melódico", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Sintetizador lead del rover de Marte", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Sintetizador de Coro", + "shortname": "Sint.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Lengüeta libre", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Acordeón", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Armónica", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Teclados", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Piano de cola", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Piano seco", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Piano de concierto", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Piano de cola", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Clavicémbalo", + "shortname": "Hch.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Celesta", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Órgano", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Órgano Hammond", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Órgano de lengüeta", + "shortname": "Órgano de lengüetas", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Órgano rotativo", + "shortname": "Órgano rotativo", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Órgano percusivo", + "shortname": "Órgano percusivo", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Percusión afinada", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Timbales", + "shortname": "Timb.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Xilófono", + "shortname": "Xil.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibráfono", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Glockenspiel", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mar.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Campanas tubulares (campanas orquestales)", + "shortname": "Camp. Tub.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Caja de música", + "shortname": "Caja de música", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Tambores metálicos soprano", + "shortname": "S. St. Dr.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Tambores metálicos bajos", + "shortname": "B. St. Dr.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Percusión", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Batería", + "shortname": "Batería", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Batería", + "shortname": "Batería", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Batería Orquestal", + "shortname": "Batería", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Set de hip-hop", + "shortname": "HH Set", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Redoblantes de marcha", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Redoblantes de marcha", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Tambores tenores de marcha", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Tambores tenores de marcha", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Bombos de marcha", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Bombos de marcha", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Platillos de marcha", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Platillos de marcha", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Bombo de concierto", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Gongs Orientales", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Tambores japoneses Nagado Taiko", + "shortname": "Nagado-daiko", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Cajas chinas", + "shortname": "Cch", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongós", + "shortname": "Bongó", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Congas", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Claves", + "shortname": "Claves", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Campanas agogó", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Silbatos", + "shortname": "Silb.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Cortina de barras", + "shortname": "Camp. Vto.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Chasquido de dedos", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Palmada", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Platillo suspendido", + "shortname": "Pl. susp.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Triángulo", + "shortname": "Tri.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Cascabeles", + "shortname": "Cascabeles", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Maracas", + "shortname": "Maracas", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Bombo acústico", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Golpe de aro", + "shortname": "Aro", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Caja acústica", + "shortname": "Snr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Tom de piso", + "shortname": "Fl Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Tom Bajo", + "shortname": "L Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Tom medio-grave", + "shortname": "Tom medio-grave", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Tom Medio", + "shortname": "M Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Tom medio-agudo", + "shortname": "HM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Tom Alto", + "shortname": "H Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Charles cerrado", + "shortname": "Hi-hat cerrado", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Charles abierto", + "shortname": "Hi-hat abierto", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Pedal de charles", + "shortname": "Hi-hat con pedal", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Platillo crash", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Platillo Ride", + "shortname": "Rd Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "Platillo chino", + "shortname": "Ch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Campana del ride", + "shortname": "Campana de ride", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Pandereta", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Platillo splash", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Cencerro", + "shortname": "Cencerro", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Instrumentos de cuerda pulsada", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Guitarra acústica", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Guitarra clásica", + "shortname": "Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Guitarra acústica", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukelele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukelele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Guitarra eléctrica", + "shortname": "Guit. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Guitarra eléctrica (limpia)", + "shortname": "Guit. El.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Guitarra eléctrica (jazz)", + "shortname": "Guit. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Guitarra eléctrica (apagada)", + "shortname": "Guit. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Guitarra con distorsión de alto voltaje", + "shortname": "Dist. G.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Guitarra Eléctrica Crunch", + "shortname": "G. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Guitarra Eléctrica Principal", + "shortname": "Guit. Prin.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Guitarra con distorsión", + "shortname": "Guit. dist.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Bajo Eléctrico Moderno", + "shortname": "B. Mod.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Bajo Eléctrico Vintage", + "shortname": "Vi. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Bajo eléctrico", + "shortname": "B. El.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Bajo eléctrico (púa)", + "shortname": "Bajo eléctrico", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Bajo Slap", + "shortname": "B. Slap", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Koto Japonés", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (Laúd Japonés)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (Laúd ÁRabe)", + "shortname": "Laúd árabe", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandolina", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Arpa", + "shortname": "Arp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Cuerdas", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Violín", + "shortname": "Vl.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Violín", + "shortname": "Vl.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Violín Principal", + "shortname": "Vln. Prin.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Viola", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Viola", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Violonchelo", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Violonchelo", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Contrabajo", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Contrabajo", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Conjunto de cuerdas", + "shortname": "Ens. Cuerdas", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Erhu chino", + "shortname": "Erhu", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Voces", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Coro Soprano Mujeres", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Coro Soprano Niñas", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Coro Soprano Niños", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Coro Contratenor Hombres", + "shortname": "Cnt.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Coro Alto Mujeres", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Coro Alto Niñas", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Coro de tenores (sala)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Coro de tenores (catedral)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Coro de bajos (sala)", + "shortname": "Bajo", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Coro de bajos (catedral)", + "shortname": "Bajo", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Coro Soprano", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Coro Alto", + "shortname": "Alto", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Coro Tenor", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Coro Bajo", + "shortname": "Bajo", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Coro \"aahs\"", + "shortname": "Cor. Aa.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Voces \"oohs\"", + "shortname": "Voc. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Voz Principal", + "shortname": "Voz princ.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Viento madera", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Flautín", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Flauta orquestal", + "shortname": "Fla.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Flauta tradicional", + "shortname": "Fla.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Flauta", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Flauta contralto", + "shortname": "A. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Flauta de Pan", + "shortname": "Fl. de pan", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Flauta dulce", + "shortname": "Flauta dulce", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Flauta dulce alto en Fa", + "shortname": "Flauta dulce alto", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Flauta irlandesa", + "shortname": "Fl. irl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Oboe", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Corno inglés", + "shortname": "C. Ing.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Clarinete de concierto (Sib)", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Dúo de clarinetes", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Clarinete", + "shortname": "Cl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Clarinete alto", + "shortname": "Al. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Clarinete bajo", + "shortname": "B. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Clarinete contrabajo", + "shortname": "Cb. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Fagot", + "shortname": "Bsn.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Contrafagot", + "shortname": "Contrafagot", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Saxofón soprano", + "shortname": "S. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Saxofón contralto", + "shortname": "A. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Saxofón tenor", + "shortname": "Sax. T.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Saxofón barítono", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Saxofón soprano", + "shortname": "S. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Saxofón contralto", + "shortname": "A. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Saxofón tenor", + "shortname": "Sax. T.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Saxofón barítono", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Gaita", + "shortname": "Gait.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Ocarina", + "shortname": "Ocarina", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (flauta china)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (flauta japonesa)", + "shortname": "Shaker", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Especial", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Maullidos de gato", + "shortname": "Gato", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Set de Star Wars", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/fi.json b/data/i18n/fi.json new file mode 100644 index 0000000..d2c568b --- /dev/null +++ b/data/i18n/fi.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Vaskipuhaltimet", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trumpetti", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trumpetti", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Pasuuna", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Pasuuna", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Käyrätorvi F-vireessä", + "shortname": "F Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Käyrätorvi F-vireessä", + "shortname": "F Hn.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Käyrätorvi C-vireessä", + "shortname": "C-käyrätorvi", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Käyrätorvi C-vireessä", + "shortname": "C-käyrätorvi", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Käyrätorvi D", + "shortname": "D-käyrätorvi", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Käyrätorvi D", + "shortname": "D-käyrätorvi", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Baritonitorvi", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Baritonitorvi", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Baritonitorvi (diskanttiavain)", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Baritonitorvi (diskanttiavain)", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Eufoni", + "shortname": "Euf.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Vaskisektio", + "shortname": "Vaskisektio", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Elektroniset soittimet", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Portamento-syntetisaattoribasso", + "shortname": "Prt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Reese-syntetisaattoribasso", + "shortname": "Rs. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Näppäilty syntetisaattoribasso", + "shortname": "Plck. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Underwide-syntetisaattoribasso", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Tukeva syntetisaattoribasso", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Kevyt syntetisaattoribasso", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Airbass-syntetisaattoribasso", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Evolution-syntetisaattoribasso", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Weekend-syntetisaattoribasso", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Napsahtava syntetisaattoribasso", + "shortname": "Pl. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Phase-syntetisaattoribasso", + "shortname": "Ph. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Out-syntetisaattoribasso", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Eepinen kello lead-syntetisaattori", + "shortname": "Eep Kl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Saha-aalto chorus lead-syntetisaattori", + "shortname": "Sah Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Valomiekka lead-syntetisaattori", + "shortname": "Lghts LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Kirkas tähti lead-syntetisaattori", + "shortname": "Krk T LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Syvä avaruus lead-syntetisaattori", + "shortname": "Sv Av LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Scifi-tietokone lead-syntetisaattori", + "shortname": "SF Tk LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Laulavat robotit lead-syntetisaattori", + "shortname": "La Ro LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Pohjantähti lead-syntetisaattori", + "shortname": "PT LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Kohiseva lead-syntetisaattori", + "shortname": "Kohina LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Neliöaalto 1 lead-syntetisaattori", + "shortname": "Neliöaalto 1 LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Drill-lead-syntetisaattori", + "shortname": "Drl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Funky-lead-syntetisaattori", + "shortname": "Funk LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Astral Communication -lead-syntetisaattori", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Unelmainen kuoro lead-syntetisaattori", + "shortname": "Un Ku LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Avaruusorkesteri lead-syntetisaattori", + "shortname": "Av Ork LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Melodinen asteroidi lead-syntetisaattori", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Mars-mönkijä lead-syntetisaattori", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Kuorosyntetisaattori", + "shortname": "Synth.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Vapaalehdykkäiset soittimet", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Harmonikka", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Huuliharppu", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Kosketinsoittimet", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Flyygeli", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Napakka piano", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Konserttiflyygeli", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Flyygeli", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Cembalo", + "shortname": "Hch.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Celesta", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Urut", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Hammond-urut", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Urkuharmoni", + "shortname": "Rd. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Hammond-urut (Leslie-efekti)", + "shortname": "Rot. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Perkussiiviset urut", + "shortname": "Perc. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Sävellyömäsoittimet", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Patarummut", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Ksylofoni", + "shortname": "Xyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibrafoni", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Kellopeli", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mar.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Putkikellot (orkesterikellot)", + "shortname": "Putk. Kel.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Soittorasia", + "shortname": "S. ras.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Teräspannu, sopraano", + "shortname": "Sopr. St. Dr.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Teräspannu, basso", + "shortname": "B. St. Dr.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Lyömäsoittimet", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Rumpusetti", + "shortname": "Rummut", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Rumpusetti", + "shortname": "Rummut", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Orkesterirumpusetti", + "shortname": "Rummut", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Hiphop-setti", + "shortname": "HH-setti", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Marssivirvelit", + "shortname": "Marss. virv.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Marssivirvelit", + "shortname": "Marss. virv.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Marssitenorirummut", + "shortname": "Marss. ten.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Marssitenorirummut", + "shortname": "Marss. ten.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Marssibassorummut", + "shortname": "Mars. bassorummut", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Marssibassorummut", + "shortname": "Mars. bassorummut", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Marssilautaset", + "shortname": "Mars. symbaalit", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Marssilautaset", + "shortname": "Mars. symbaalit", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Konserttibassorumpu", + "shortname": "KBR", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Itämaiset gongit", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Japanilaiset nagado-taikorummut", + "shortname": "Nagadō-daiko", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Puupalikat", + "shortname": "Pp", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongot", + "shortname": "Bongot", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Kongat", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Klaveet", + "shortname": "Klaveet", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Agogo-kellot", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Vihellyspillit", + "shortname": "Vih.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Tuulikellot", + "shortname": "Tuulikellot", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Sormien napsautus", + "shortname": "Sorm.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Käsien taputus", + "shortname": "Tap.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Ripustettu symbaali", + "shortname": "Ripustettu symbaali", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Triangeli", + "shortname": "Tri.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Kulkuset", + "shortname": "Kulk.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Marakassit", + "shortname": "Mrcs", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Akustinen bassorumpu", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Kanttilyönti", + "shortname": "Kanttily.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Akustinen virveli", + "shortname": "Virv.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Lattiatomi", + "shortname": "Latt. tomi", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Matala tomi", + "shortname": "L tomi", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Keskimatala tomi", + "shortname": "LM tomi", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Keskitomi", + "shortname": "M tomi", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Keskikorkea tomi", + "shortname": "HM tomi", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Korkea tomi", + "shortname": "H tomi", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Suljettu hi-hat", + "shortname": "Sulj. HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Avoin hi-hat", + "shortname": "Av. HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Hi-hat, poljinisku", + "shortname": "Polj. HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Crash-symbaali", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Ride-symbaali", + "shortname": "Rd Sy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "China-symbaali", + "shortname": "Ch Sy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Ridesymbaalin kupu", + "shortname": "Rd kp.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Tamburiini", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Splash-symbaali", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Lehmänkello", + "shortname": "Lehmänkello", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Näppäilysoittimet", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Akustinen kitara", + "shortname": "Kit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Klassinen kitara", + "shortname": "Kit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Akustinen kitara", + "shortname": "Kit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Sähkökitara", + "shortname": "Sähk. kit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Sähkökitara (puhdas)", + "shortname": "Sähk. kit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Sähkökitara (jazz)", + "shortname": "Sähk. kit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Sähkökitara (vaimennettu)", + "shortname": "Sähk. kit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Korkeajännitteinen särökitara", + "shortname": "Särö kit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Sähkökitara (crunch)", + "shortname": "Kit. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Sähkökitara (soolo)", + "shortname": "Kit. soolo", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Särökitara", + "shortname": "Särökit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Moderni sähköbasso", + "shortname": "Mod. bas.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Vintage-sähköbasso", + "shortname": "Vint. bas.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Sähköbasso", + "shortname": "Sähk. b.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Sähköbasso (plektralla)", + "shortname": "Sähk. bas.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Slap-basso", + "shortname": "Sl. basso", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Japanilainen koto", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (japanilainen luuttu)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (arabialainen luuttu)", + "shortname": "Oud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandoliini", + "shortname": "Mand.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Harppu", + "shortname": "Hrp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Sit.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Jouset", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Viulu", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Viulu", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Sooloviulu", + "shortname": "Vl. soolo", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Alttoviulu", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Alttoviulu", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Sello", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Sello", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Kontrabasso", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Kontrabasso", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Jousiyhtye", + "shortname": "Jousiyht.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Kiinalainen erhu", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Laulu", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Kuoro, sopraano (naiset)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Kuoro, sopraano (tytöt)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Kuoro, sopraano (pojat)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Kuoro, kontratenori (miehet)", + "shortname": "Kornetti", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Kuoro, altto (naiset)", + "shortname": "Altto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Kuoro, altto (tytöt)", + "shortname": "Altto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Kuoro, tenori (sali)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Kuoro, tenori (katedraali)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Kuoro, basso (sali)", + "shortname": "Basso", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Kuoro, basso (katedraali)", + "shortname": "Basso", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Kuoro, sopraano", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Kuoro, altto", + "shortname": "Altto", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Kuoro, tenori", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Kuoro, basso", + "shortname": "Basso", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Kuoro aah-äänet", + "shortname": "Kuor. aah", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Laulu, ooh-äänet", + "shortname": "La. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Laulu (soolo)", + "shortname": "Vok. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Puupuhaltimet", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Pikkolo", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Orkesterihuilu", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Perinteinen huilu", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Huilu", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Alttohuilu", + "shortname": "A. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Panhuilu", + "shortname": "Pn. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Nokkahuilu", + "shortname": "Rec.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Alttonokkahuilu (F)", + "shortname": "Altto nokk.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Tinapilli", + "shortname": "Tinapilli", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Oboe", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Englannintorvi", + "shortname": "E. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Klarinetti (Bb)", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Klarinettiduetto", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Klarinetti", + "shortname": "Cl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Alttoklarinetti", + "shortname": "Alttokl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Bassoklarinetti", + "shortname": "B. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Kontrabassoklarinetti", + "shortname": "Cb. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Fagotti", + "shortname": "Bsn.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Kontrafagotti", + "shortname": "Kontrafagotti", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Sopraanosaksofoni", + "shortname": "S. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Alttosaksofoni", + "shortname": "A. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Tenorisaksofoni", + "shortname": "T. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Baritonisaksofoni", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Sopraanosaksofoni", + "shortname": "S. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Alttosaksofoni", + "shortname": "A. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Tenorisaksofoni", + "shortname": "T. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Baritonisaksofoni", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Säkkipilli", + "shortname": "Bagp.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Okariina", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (kiinalainen huilu)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (japanilainen huilu)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Erikoisäänet", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Kissan naukaisut", + "shortname": "Kissa", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Star Wars -paketti", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/fil.json b/data/i18n/fil.json new file mode 100644 index 0000000..1513881 --- /dev/null +++ b/data/i18n/fil.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Mga Instrumentong Tanso", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trompeta", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trompeta", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Trombon", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Trombon", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Trompa sa F", + "shortname": "F Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Trompa sa F", + "shortname": "F Hn.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Trompa sa C", + "shortname": "Trompa (C)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Trompa sa C", + "shortname": "Trompa (C)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Trompa sa D", + "shortname": "Trompa (D)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Trompa sa D", + "shortname": "Trompa (D)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Baritone Horn", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Baritone Horn", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Baritone (Susing G)", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Baritone (Susing G)", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Euphonium", + "shortname": "Euph.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Seksiyon ng Tanso", + "shortname": "Seksyon ng Brass", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Mga Elektronikong Instrumento", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Portamento Synth Bass", + "shortname": "Portamento Bass", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Reese na Synth Bass", + "shortname": "Resonant Bass", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Pinitik na Synth Bass", + "shortname": "Picked Bass", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Underwide na Synth Bass", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Solid Synth Bass", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Magaan na Synth Bass", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Airbass na Synth Bass", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Evolution na Synth Bass", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Weekend na Synth Bass", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "May Pitik na Synth Bass", + "shortname": "Pl. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Phase na Synth Bass", + "shortname": "Ph. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Out Synth Bass", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Epikong Kampana Lead Synth", + "shortname": "Epc Bl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Saw Chorus Lead Synth", + "shortname": "Sw Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Lightsaber Lead Synth", + "shortname": "Lights Lead Synth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Maningning na Bituin Lead Synth", + "shortname": "Brt S LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Malayong Kalawakan Lead Synth", + "shortname": "Dp Sp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Sci-Fi Computer Lead Synth", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Kumakantang Robot Lead Synth", + "shortname": "Sg Rb LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "North Star Lead Synth", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Noisy Lead Synth", + "shortname": "Noisy Lead Synth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Square One Lead Synth", + "shortname": "Square 1 Lead Synth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Drill Lead Synth", + "shortname": "Drill Lead Synth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Funky Lead Synth", + "shortname": "Funk Lead Synth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Astral Communication Lead Synth", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Mapanaginip na Koro Lead Synth", + "shortname": "Dr Chr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Orkestra ng Kalawakan Lead Synth", + "shortname": "Sp Orch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Melodic Asteroid Lead Synth", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Mars Rover Lead Synth", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Sintetisador ng Koro", + "shortname": "Synth.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Free Reed", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Akordyon", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Armonika", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Mga Keyboard", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Grand Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Tight Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Concert Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Grand Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Piyano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Harpsichord", + "shortname": "Hch.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Celesta", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Organo", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Hammond Organ", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Reed Organ", + "shortname": "Rd. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Rotary Organ", + "shortname": "Rot. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Perkusibong Organo", + "shortname": "Perc. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Perkusyon na may tono", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Timpani", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Silofono", + "shortname": "Xyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibraphone", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Glockenspiel", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Tubular Bells (Orchestral Chimes)", + "shortname": "Tubular Bells", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Music Box", + "shortname": "M. Box", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Soprano Steel Drums", + "shortname": "S. St. Dr.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Bass Steel Drums", + "shortname": "B. St. Dr.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Perkusyon", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Set ng Tambol", + "shortname": "Mga Tambol", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Set ng Tambol", + "shortname": "Mga Tambol", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Set ng tambol na pang-orkestra", + "shortname": "Mga Tambol", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Hip-Hop Set", + "shortname": "HH Set", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Mga Snare Drum na pangmartsa", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Mga Snare Drum na pangmartsa", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Mga Tenor Drum na pangmartsa", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Mga Tenor Drum na pangmartsa", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Mga bass drum pang-martsa", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Mga bass drum pang-martsa", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Mga simbal pang-martsa", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Mga simbal pang-martsa", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Konsiyertong Bass Drum", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Mga gong na Silanganin", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Mga Tambol na Nagado Taiko (Hapones)", + "shortname": "Nagado-daiko", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Mga Woodblock", + "shortname": "WB", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongos", + "shortname": "Bongo", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Mga Konga", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Claves", + "shortname": "Claves", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Agogo Bells", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Mga Sipol", + "shortname": "Whi.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Kampanilya ng hangin", + "shortname": "Wind Chimes", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Pagpitik ng Daliri", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Palakpak", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Simbal na nakasabit", + "shortname": "Simbal na nakasabit", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Trianggulo", + "shortname": "Trg.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Jingle Bells", + "shortname": "Jgl Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Marakas", + "shortname": "Mrcs", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Akustikong Bass Drum", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Side Stick", + "shortname": "Sd Stk", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Akustikong Snare Drum", + "shortname": "Snr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Floor Tom", + "shortname": "Fl Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Mababang Tom", + "shortname": "L Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Gitnang Mababang Tom", + "shortname": "LM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Gitnang Tom", + "shortname": "M Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Gitnang Mataas na Tom", + "shortname": "HM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Mataas na Tom", + "shortname": "H Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Saradong Hi-hat", + "shortname": "Cl HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Bukas na Hi-hat", + "shortname": "Op HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Pedal na Hi-hat", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Crash Cymbal", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Ride Cymbal", + "shortname": "Rd Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "China na Simbal", + "shortname": "Ch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Ride Bell", + "shortname": "Rd Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Pandereta", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Splash Cymbal", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Cowbell", + "shortname": "Cowbell", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Mga Kinakalabit na Kuwerdas", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Akustikong Gitara", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Klasikal na Gitara", + "shortname": "Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Akustikong Gitara", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Elektrikong Gitara", + "shortname": "El. Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Elektrikong Gitara (malinis)", + "shortname": "El. Git.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Elektrikong Gitara (jazz)", + "shortname": "El. Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Elektrikong Gitara (naka-mute)", + "shortname": "El. Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Gitarang may High-Voltage Distortion", + "shortname": "Dist. G.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Crunch na Elektrikong Gitara", + "shortname": "G. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Lead na Elektrikong Gitara", + "shortname": "G. Lead", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Gitara na may Distorsyon", + "shortname": "Dist. Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Makabagong Elektrikong Bajo", + "shortname": "Mak. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Makalumang Elektrikong Bajo", + "shortname": "Vin. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Elektrikong Bajo", + "shortname": "El. B.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Elektrikong Bajo (pick)", + "shortname": "El. Bajo", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Slap Bass", + "shortname": "Sl. Bass", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Hapones na Koto", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (Hapones na Laúd)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (Arabeng Laúd)", + "shortname": "Oud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandolin", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Arpa", + "shortname": "Alp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Mga Kuwerdas", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Biyolin", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Biyolin", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Nangungunang Biyolin", + "shortname": "Vln. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Biyola", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Biyola", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Selo", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Selo", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Kontrabas", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Kontrabas", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Ansamblo ng mga Kuwerdas", + "shortname": "St. Ens.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Erhu ng Tsina", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Tinig", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Koro Soprano (Kababaihan)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Koro Soprano (Mga Batang Babae)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Koro Soprano (Mga Batang Lalaki)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Koro Kontratenor (Kalalakihan)", + "shortname": "Cnt.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Koro Alto (Kababaihan)", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Koro Alto (Mga Batang Babae)", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Koro Tenor (Bulwagan)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Koro Tenor (Katedral)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Koro Bass (Bulwagan)", + "shortname": "Bass", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Koro Bass (Katedral)", + "shortname": "Bass", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Koro Soprano", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Koro Alto", + "shortname": "Alto", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Koro Tenor", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Koro Bass", + "shortname": "Bass", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Koro (Aah)", + "shortname": "Ch. Aa.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Tinig (Ooh)", + "shortname": "Vo. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Nangungunang Tinig", + "shortname": "Vo. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Instrumentong Kahoy na Hinihipan", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Pikolo", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Plautang orkestra", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Tradisyonal na plauta", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Plauta", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Plautang Alto", + "shortname": "A. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Plauta de Pan", + "shortname": "Pn. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Recorder", + "shortname": "Rec.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Altong Rekorder sa F", + "shortname": "Alto Rec.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Tin Whistle", + "shortname": "Tin Wh.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Oboe", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Kornong Ingles (cor anglais)", + "shortname": "E. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Klarineteng Konsiyerto (Bb)", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Dueto ng Klarinete", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Klarinete", + "shortname": "Cl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Klarineteng Alto", + "shortname": "Al. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Klarineteng Bas", + "shortname": "B. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Klarineteng Kontrabas", + "shortname": "Cb. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Fagot", + "shortname": "Bsn.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Kontrafagot", + "shortname": "Cb. Bsn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Saksofonong soprano", + "shortname": "S. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Saksofonong Alto", + "shortname": "A. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Saksofonong tenor", + "shortname": "T. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Saksofonong Baritono", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Saksofonong soprano", + "shortname": "S. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Saksofonong Alto", + "shortname": "A. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Saksofonong tenor", + "shortname": "T. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Saksofonong Baritono", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Bagpipes", + "shortname": "Bagp.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Okarina", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (Plauta ng Tsina)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (plautang Hapon)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Espesyal", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Mga Miyaw ng Pusa", + "shortname": "Pusa", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Set ng Star Wars", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/fr-CA.json b/data/i18n/fr-CA.json new file mode 100644 index 0000000..8c0e3e4 --- /dev/null +++ b/data/i18n/fr-CA.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Cuivres", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trompette", + "shortname": "Trp.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trompette", + "shortname": "Trp.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Trombone", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Trombone", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Cor en fa", + "shortname": "Cor. fa", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Cor en fa", + "shortname": "Cor. fa", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Cor en ut", + "shortname": "Cor en ut", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Cor en ut", + "shortname": "Cor en ut", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Cor en ré", + "shortname": "Cor en ré", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Cor en ré", + "shortname": "Cor en ré", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Baryton", + "shortname": "Bar. Cor.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Baryton", + "shortname": "Bar. Cor.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Baryton (clé de sol)", + "shortname": "Bar. CS", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Baryton (clé de sol)", + "shortname": "Bar. CS", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Euphonium", + "shortname": "Euph.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Section de cuivres", + "shortname": "Sec. cuiv.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Instruments électroniques", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Basse de synthé portamento", + "shortname": "Bs. portam.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Basse de synthé Reese", + "shortname": "Bs. réso.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Basse de synthé pincée", + "shortname": "Bs. pinc.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Basse de synthé Underwide", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Basse de synthé solide", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Basse de synthé légère", + "shortname": "Lég. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Basse de synthé Airbass", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Basse de synthé Evolution", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Basse de synthé Weekend", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Basse de synthé pincée", + "shortname": "Bs. synth. pinc.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Basse de synthé phasée", + "shortname": "Bs. synth. phas.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Basse de synthé déphasée", + "shortname": "Bs. synth. déph.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Synthétiseur lead cloches épiques", + "shortname": "Ep Cl SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Synthétiseur lead dent de scie chorus", + "shortname": "DS Ch SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Synthétiseur lead sabre laser", + "shortname": "Lghts LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Synthétiseur lead étoile brillante", + "shortname": "Et Br SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Synthétiseur lead espace profond", + "shortname": "Esp Pr SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Synthétiseur lead ordinateur de science-fiction", + "shortname": "SF Ord SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Synthétiseur lead de robots chantants", + "shortname": "Rb Ch SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Lead de synthé Étoile polaire", + "shortname": "EP SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Lead de synthé bruité", + "shortname": "Bruit LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Lead de synthé onde carrée 1", + "shortname": "Onde carrée 1 LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Lead de synthé drill", + "shortname": "Drill LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Lead de synthé funky", + "shortname": "Funk LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Lead de synthé communication astrale", + "shortname": "Astr. SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Lead de synthé chœur rêveur", + "shortname": "Ch. rêv. SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Lead de synthé orchestre spatial", + "shortname": "Orch. spat. SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Lead de synthé astéroïde mélodique", + "shortname": "Ast. mél. SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Lead de synthé rover martien", + "shortname": "Mars SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Synthétiseur de chœur", + "shortname": "Synth.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Anches libres", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Accordéon", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Harmonica", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Claviers", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Piano à queue", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Piano droit", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Piano de concert", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Piano à queue", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Clavecin", + "shortname": "Clav.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Célesta", + "shortname": "Cél.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Orgue", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Orgue Hammond", + "shortname": "Org. Ham.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Harmonium", + "shortname": "Harmn.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Orgue Leslie", + "shortname": "Org. rot.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Orgue percussif", + "shortname": "Org. perc.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Percussions accordées", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Timbales", + "shortname": "Timb.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Xylophone", + "shortname": "Xyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibraphone", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Glockenspiel", + "shortname": "Glsp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mar.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Cloches tubulaires (cloches d’orchestre)", + "shortname": "Cl. Tub.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Boîte à musique", + "shortname": "B. à mus.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Steel-drums soprano", + "shortname": "St.-dr. sop.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Steel drums graves", + "shortname": "St.-dr. b.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Percussions", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Batterie", + "shortname": "Batterie", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Batterie", + "shortname": "Batterie", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Batterie d’orchestre", + "shortname": "Batterie", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Kit hip-hop", + "shortname": "Ensemble charleston", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Caisses claires de marche", + "shortname": "CC mar.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Caisses claires de marche", + "shortname": "CC mar.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Toms ténor de marche", + "shortname": "Mar Tn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Toms ténor de marche", + "shortname": "Mar Tn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Grosses caisses de marche", + "shortname": "GC mar.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Grosses caisses de marche", + "shortname": "GC mar.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Cymbales de marche", + "shortname": "Cym mar.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Cymbales de marche", + "shortname": "Cym mar.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Grosse caisse de concert", + "shortname": "GCC", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Gongs orientaux", + "shortname": "Gg. or.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Tambours taiko nagado japonais", + "shortname": "Nagado", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Blocs de bois", + "shortname": "WB", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongos", + "shortname": "Bongo", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Congas", + "shortname": "Cga.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Claves", + "shortname": "Clav.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Cloches agogô", + "shortname": "Agog.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Sifflets", + "shortname": "Siff.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Carillon à vent", + "shortname": "B. éol.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Claquement de doigts", + "shortname": "Claq. dgt.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Claquement de mains", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Cymbale suspendue", + "shortname": "Cymb. susp.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Triangle", + "shortname": "Tri.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Grelots", + "shortname": "Grel.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Maracas", + "shortname": "Marac.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Grosse caisse acoustique", + "shortname": "GC", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Coup sur le cercle", + "shortname": "C. cerc.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Caisse claire acoustique", + "shortname": "CC", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Tom basse", + "shortname": "Tom b.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Tom grave", + "shortname": "Tom g.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Tom médium grave", + "shortname": "Tom m. g.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Tom médium", + "shortname": "Tom m.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Tom médium aigu", + "shortname": "Tom m. aig.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Tom aigu", + "shortname": "Tom aig.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Charleston fermé", + "shortname": "CH ferm.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Charleston ouvert", + "shortname": "CH ouv.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Pédale de charleston", + "shortname": "CH péd.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Cymbale crash", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Cymbale ride", + "shortname": "Rd Cym.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "Cymbale china", + "shortname": "Ch Cym.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Cloche de ride", + "shortname": "Rd Cl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Tambourin", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Cymbale splash", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Cloche à vache", + "shortname": "Cloche", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Cordes pincées", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Guitare acoustique", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Guitare classique", + "shortname": "Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Guitare acoustique", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulélé", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulélé", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Guitare électrique", + "shortname": "Guit. él.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Guitare électrique (son clair)", + "shortname": "Guit. él.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Guitare électrique (jazz)", + "shortname": "Guit. él.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Guitare électrique (étouffée)", + "shortname": "Guit. él.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Guitare électrique à distorsion haute tension", + "shortname": "G. dist.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Guitare électrique crunch", + "shortname": "G. crunch", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Guitare électrique solo", + "shortname": "G. solo", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Guitare électrique (distorsion)", + "shortname": "Guit. dist.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Basse électrique moderne", + "shortname": "B. mod.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Basse électrique vintage", + "shortname": "B. vint.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Basse électrique", + "shortname": "B. él.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Basse électrique (au médiator)", + "shortname": "B. él.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Basse slap", + "shortname": "B. slap", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Koto japonais", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (luth japonais)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (luth arabe)", + "shortname": "Oud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandoline", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Harpe", + "shortname": "Hp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Cordes", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Violon", + "shortname": "Vl.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Violon", + "shortname": "Vl.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Violon principal", + "shortname": "Vl. princ.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Alto", + "shortname": "A.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Alto", + "shortname": "A.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Violoncelle", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Violoncelle", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Contrebasse", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Contrebasse", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Ensemble à cordes", + "shortname": "Ens. à cordes", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Erhu chinois", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Voix", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Chœur de sopranos (femmes)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Chœur de sopranos (filles)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Chœur de sopranos (garçons)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Chœur de contre-ténors (hommes)", + "shortname": "C.-t.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Chœur de femmes – Altos", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Chœur de filles – Altos", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Chœur de ténors (salle)", + "shortname": "Tén.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Chœur de ténors (cathédrale)", + "shortname": "Tén.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Chœur – Basse (salle)", + "shortname": "Basse", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Chœur – Basse (cathédrale)", + "shortname": "Basse", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Chœur – Soprano", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Chœur – Alto", + "shortname": "Alto", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Chœur – Ténor", + "shortname": "Tén.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Chœur – Basse", + "shortname": "Basse", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Chœur « aah »", + "shortname": "Ch. Aa.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Voix « ooh »", + "shortname": "Vx. ooh", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Voix principale", + "shortname": "Vx princ.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Bois", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Piccolo", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Flûte d'orchestre", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Flûte traditionnelle", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Flûte", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Flûte alto en sol", + "shortname": "Fl. alt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Flûte de Pan", + "shortname": "Fl. pan", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Flûte à bec", + "shortname": "Fl. à bec", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Flûte à bec alto en fa", + "shortname": "Fl. à bec alt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Flûte irlandaise", + "shortname": "Fl. irl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Hautbois", + "shortname": "Hb.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Cor anglais", + "shortname": "C. a.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Clarinette en si♭", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Duo de clarinettes", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Clarinette", + "shortname": "Cl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Clarinette alto", + "shortname": "Cl. a.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Clarinette basse", + "shortname": "Cl. b.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Clarinette contrebasse", + "shortname": "Cl. c.-b.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Basson", + "shortname": "Bn.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Contrebasson", + "shortname": "Contrebasson", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Saxophone soprano", + "shortname": "Sax. sop.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Saxophone alto", + "shortname": "Sax. alt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Saxophone ténor", + "shortname": "Sax. tén.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Saxophone baryton", + "shortname": "Sax. bar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Saxophone soprano", + "shortname": "Sax. sop.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Saxophone alto", + "shortname": "Sax. alt.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Saxophone ténor", + "shortname": "Sax. tén.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Saxophone baryton", + "shortname": "Sax. bar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Cornemuses", + "shortname": "Corn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Ocarina", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (flûte chinoise)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (flûte japonaise)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Spécial", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Miaulements de chat", + "shortname": "Chat", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Collection Star Wars", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/fr.json b/data/i18n/fr.json new file mode 100644 index 0000000..4053723 --- /dev/null +++ b/data/i18n/fr.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Cuivres", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trompette", + "shortname": "Tromp.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trompette", + "shortname": "Tromp.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Trombone", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Trombone", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Cor en Fa", + "shortname": "Cor en fa", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Cor en Fa", + "shortname": "Cor en fa", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Cor en Do", + "shortname": "Cor en Do", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Cor en Do", + "shortname": "Cor en Do", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Cor en Ré", + "shortname": "Cor en Ré", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Cor en Ré", + "shortname": "Cor en Ré", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Cor baryton", + "shortname": "Baryton à pistons", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Cor baryton", + "shortname": "Baryton à pistons", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Cor baryton (clef de sol)", + "shortname": "Baryton (clef de sol)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Cor baryton (clef de sol)", + "shortname": "Baryton (clef de sol)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Euphonium", + "shortname": "Euph.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Section de cuivres", + "shortname": "Section de cuivres", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Instruments électroniques", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Basse de synthé portamento", + "shortname": "Prt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Basse de synthé Reese", + "shortname": "Rs. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Basse de synthé pincée", + "shortname": "Basse pincée", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Basse de synthé Underwide", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Basse de synthé solide", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Basse de synthé légère", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Basse de synthé Airbass", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Basse de synthé Evolution", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Basse de synthé Weekend", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Basse de synthé percussive", + "shortname": "Pl. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Basse de synthé phasée", + "shortname": "Ph. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Basse synthé Out", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Lead de synthé cloche épique", + "shortname": "Epc Bl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Synthétiseur lead dents de scie (chorus)", + "shortname": "Sw Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Synthétiseur lead « Lightsaber »", + "shortname": "Lghts LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Synthétiseur lead « Bright Star »", + "shortname": "Brt S LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Synthétiseur lead « Deep Space »", + "shortname": "Dp Sp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Synthétiseur lead « Sci-Fi Computer »", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Synthétiseur lead « Singing Robots »", + "shortname": "Sg Rb LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Lead de synthé North Star", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Lead de synthé bruité", + "shortname": "Lead de synthé Nsy", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Lead de synthé Square One", + "shortname": "Lead de synthé Carré 1", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Lead de synthé drill", + "shortname": "Drl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Lead de synthé funky", + "shortname": "Lead de synthé Fnk", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Lead de synthé communication astrale", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Lead de synthé chœur onirique", + "shortname": "Dr Chr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Lead de synthé orchestre spatial", + "shortname": "Sp Orch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Lead de synthé astéroïde mélodique", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Lead de synthé Mars Rover", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Synthétiseur de chœur", + "shortname": "Synth.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Anches libres", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Accordéon", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Harmonica", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Claviers", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Piano à queue", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Piano droit", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Piano de concert", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Piano à queue", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Clavecin", + "shortname": "Hch.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Célesta", + "shortname": "Cél.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Orgue", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Orgue Hammond", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Harmonium", + "shortname": "Rd. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Orgue rotatif", + "shortname": "Rot. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Orgue percussif", + "shortname": "Perc. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Percussions chromatiques", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Timbales", + "shortname": "Timb.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Xylophone", + "shortname": "Xyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibraphone", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Glockenspiel", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mar.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Cloches tubulaires", + "shortname": "Clo. tub.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Boîte à musique", + "shortname": "M. Box", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Steel drum soprano", + "shortname": "St. Dr. sop.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Steel drum basse", + "shortname": "B. St. Dr.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Percussions", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Kit de batterie", + "shortname": "Batterie", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Kit de batterie", + "shortname": "Batterie", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Kit de percussions d’orchestre", + "shortname": "Batterie", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Kit Hip-Hop", + "shortname": "Charleston", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Caisses claires de marche", + "shortname": "Mar. CC", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Caisses claires de marche", + "shortname": "Mar. CC", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Tambours ténor de marche", + "shortname": "Tén. mar.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Tambours ténor de marche", + "shortname": "Tén. mar.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Grosses caisses de marche", + "shortname": "Mar. GC", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Grosses caisses de marche", + "shortname": "Mar. GC", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Cymbales de marche", + "shortname": "Mar. Cym", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Cymbales de marche", + "shortname": "Mar. Cym", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Grosse caisse de concert", + "shortname": "Grosse caisse de concert", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Gongs orientaux", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Tambours taiko nagadō japonais", + "shortname": "Nag", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Blocs de bois", + "shortname": "BB", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongos", + "shortname": "Bongo", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Congas", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Claves", + "shortname": "Clv.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Agogô", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Sifflets", + "shortname": "Siff.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Cloches à vent", + "shortname": "Cloch. à v.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Claquement de doigts", + "shortname": "Dgt.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Claquement de mains", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Cymbale suspendue", + "shortname": "Cym. susp.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Triangle", + "shortname": "Trgl.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Grelots", + "shortname": "Grelots", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Maracas", + "shortname": "Mcrs.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Grosse caisse acoustique", + "shortname": "GC", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Coup sur cercle", + "shortname": "C. circ.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Caisse claire acoustique", + "shortname": "CC", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Tom basse", + "shortname": "Tom b.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Tom grave", + "shortname": "Tom gr.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Tom médium grave", + "shortname": "MG Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Tom médium", + "shortname": "M Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Tom médium aigu", + "shortname": "MA Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Tom aigu", + "shortname": "A Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Charleston fermé", + "shortname": "Ch F", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Charleston ouvert", + "shortname": "Ch O", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Charleston au pied", + "shortname": "Ch P", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Cymbale crash", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Cymbale ride", + "shortname": "Rd Cym", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "Cymbale chinoise", + "shortname": "Ch Cym", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Cloche de ride", + "shortname": "Rd Cl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Tambourin", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Cymbale splash", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Cloche", + "shortname": "Cloche", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Cordes pincées", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Guitare acoustique", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Guitare classique", + "shortname": "Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Guitare acoustique", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulélé", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulélé", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Guitare électrique", + "shortname": "Guit. él.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Guitare électrique (son clair)", + "shortname": "Guit. él.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Guitare électrique (jazz)", + "shortname": "Guit. él.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Guitare électrique (étouffée)", + "shortname": "Guit. él.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Guitare distorsion haute tension", + "shortname": "G. dist.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Guitare électrique crunch", + "shortname": "G. Crunch", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Guitare électrique lead", + "shortname": "G. Lead", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Guitare électrique (distorsion)", + "shortname": "Guit. Dist.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Basse électrique moderne", + "shortname": "B. mod.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Basse électrique vintage", + "shortname": "B. vint.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Basse électrique", + "shortname": "B. él.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Basse électrique (au médiator)", + "shortname": "Basse él.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Basse slap", + "shortname": "B. slap", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Koto japonais", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (luth japonais)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (luth arabe)", + "shortname": "Oud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandoline", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Harpe", + "shortname": "Hrp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Cordes", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Violon", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Violon", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Violon Lead", + "shortname": "Vln. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Alto", + "shortname": "Alt.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Alto", + "shortname": "Alt.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Violoncelle", + "shortname": "Vlc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Violoncelle", + "shortname": "Vlc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Contrebasse", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Contrebasse", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Ensemble de cordes", + "shortname": "Ens. cordes", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Erhu chinois", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Voix", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Chœur Soprano (Femmes)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Chœur Soprano (Filles)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Chœur Soprano (Garçons)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Chœur Contre-ténor (Hommes)", + "shortname": "Cnt.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Chœur Alto (Femmes)", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Chœur Alto (Filles)", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Chœur Ténor (Concert)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Chœur Ténor (Cathédrale)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Basse de chœur (salle de concert)", + "shortname": "Basse", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Basse de chœur (cathédrale)", + "shortname": "Basse", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Chœur Soprano", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Chœur Alto", + "shortname": "Alto", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Chœur Ténor", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Chœur Basse", + "shortname": "Basse", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Chœur Ah", + "shortname": "Ch. Ah", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Voix Oohs", + "shortname": "Vo. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Voix Lead", + "shortname": "Vo. sol.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Bois", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Piccolo", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Flûte traversière d'orchestre", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Flûte traditionnelle", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Flûte traversière", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Flûte alto", + "shortname": "Fl. alto", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Flûte de Pan", + "shortname": "Fl. de Pan", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Flûte à bec", + "shortname": "Fl. à bec", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Flûte à bec alto en fa", + "shortname": "Fl. à bec alto", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Flageolet irlandais", + "shortname": "Fl. irl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Hautbois", + "shortname": "Htb.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Cor anglais", + "shortname": "Cor ang.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Clarinette de concert (Sib)", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Duo de clarinettes", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Clarinette", + "shortname": "Cl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Clarinette alto", + "shortname": "Cl. alto", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Clarinette basse", + "shortname": "Cl. basse", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Clarinette contrebasse", + "shortname": "Cl. Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Basson", + "shortname": "Bsn.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Contrebasson", + "shortname": "C. bsn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Saxophone soprano", + "shortname": "Sax. sop.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Saxophone alto", + "shortname": "Sax. alto", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Saxophone ténor", + "shortname": "Sax. tén.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Saxophone baryton", + "shortname": "Sax. Bar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Saxophone soprano", + "shortname": "Sax. sop.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Saxophone alto", + "shortname": "Sax. alto", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Saxophone ténor", + "shortname": "Sax. tén.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Saxophone baryton", + "shortname": "Sax. Bar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Cornemuse", + "shortname": "Cornemuse", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Ocarina", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (flûte chinoise)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (flûte japonaise)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Spécial", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Miaulements de chat", + "shortname": "Chat", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Ensemble Star Wars", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/hi.json b/data/i18n/hi.json new file mode 100644 index 0000000..6464ddf --- /dev/null +++ b/data/i18n/hi.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "ब्रास", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "ट्रम्पेट", + "shortname": "ट्रम्प।", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "ट्रम्पेट", + "shortname": "ट्रम्प।", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "ट्रोम्बोन", + "shortname": "ट्रो।", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "ट्रोम्बोन", + "shortname": "ट्रो।", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "एफ में हॉर्न", + "shortname": "एफ हॉ।", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "एफ में हॉर्न", + "shortname": "एफ हॉ।", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "सी में हॉर्न", + "shortname": "सी हॉर्न", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "सी में हॉर्न", + "shortname": "सी हॉर्न", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "डी में हॉर्न", + "shortname": "डी हॉर्न", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "डी में हॉर्न", + "shortname": "डी हॉर्न", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "बैरिटोन हॉर्न", + "shortname": "बैर. हॉ।", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "बैरिटोन हॉर्न", + "shortname": "बैर. हॉ।", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "बैरिटोन (ट्रेबल क्लेफ)", + "shortname": "बैर. टीसी", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "बैरिटोन (ट्रेबल क्लेफ)", + "shortname": "बैर. टीसी", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "यूफोनियम", + "shortname": "यूफ।", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "ट्यूबा", + "shortname": "ट्यू।", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "ट्यूबा", + "shortname": "ट्यू।", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "ब्रास सेक्शन", + "shortname": "ब्रास सेक्शन", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "इलेक्ट्रॉनिक वाद्ययंत्र", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "पोर्टामेंटो सिंथ बेस", + "shortname": "Prt. Bs।", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "रीस सिंथ बेस", + "shortname": "Rs. Bs।", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "प्लक्ड सिंथ बेस", + "shortname": "प्लक्ड बास", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "अंडरवाइड सिंथ बेस", + "shortname": "Uw. Bs।", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "सॉलिड सिंथ बास", + "shortname": "Sd. Bs।", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "लाइट सिंथ बेस", + "shortname": "Lt. Bs।", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "एयरबेस सिंथ बेस", + "shortname": "Ab. Bs।", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "एवोल्यूशन सिंथ बेस", + "shortname": "Ev. Bs।", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "वीकेंड सिंथ बेस", + "shortname": "Wk. Bs।", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "प्लकी सिंथ बेस", + "shortname": "Pl. Bs।", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "फेज़ सिंथ बेस", + "shortname": "Ph. Bs।", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "आउट सिंथ बेस", + "shortname": "Out Bs।", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "एपिक बेल लीड सिंथ", + "shortname": "Epc Bl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "सॉटूथ कोरस लीड सिंथ", + "shortname": "Sw Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "लाइटसेबर लीड सिंथ", + "shortname": "Lghts LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "ब्राइट स्टार लीड सिंथ", + "shortname": "Brt S LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "डीप स्पेस लीड सिंथ", + "shortname": "Dp Sp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "साइ-फाइ कंप्यूटर लीड सिंथ", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "सिंगिंग रोबोट्स लीड सिंथ", + "shortname": "Sg Rb LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "ध्रुवतारा लीड सिंथ", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "नॉइज़ी लीड सिंथ", + "shortname": "नॉइज़ी LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "स्क्वेयर वन लीड सिंथ", + "shortname": "स्क्वेयर 1 LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "ड्रिल लीड सिंथ", + "shortname": "ड्रिल LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "फंकी लीड सिंथ", + "shortname": "फंक LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "खगोलीय संचार लीड सिंथ", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "ड्रीमी क्वायर लीड सिंथ", + "shortname": "Dr Chr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "स्पेस ऑर्केस्ट्रा लीड सिंथ", + "shortname": "Sp Orch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "मेलोडिक ऐस्टरॉइड लीड सिंथ", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "मार्स रोवर लीड सिंथ", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "क्वायर सिंथेसाइज़र", + "shortname": "सिंथ।", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "मुक्त रीड", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "अकॉर्डियन", + "shortname": "Acc।", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "हार्मोनिका", + "shortname": "Harm।", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "कुंजीवाद्य", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "ग्रैंड पियानो", + "shortname": "Pno।", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "टाइट पियानो", + "shortname": "Pno।", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "कॉन्सर्ट पियानो", + "shortname": "Pno।", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "ग्रैंड पियानो", + "shortname": "Pno।", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "पियानो", + "shortname": "Pno।", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "हार्पसिकॉर्ड", + "shortname": "Hch।", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "सेलेस्टा", + "shortname": "Cel।", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "ऑर्गन", + "shortname": "Org।", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "हैमंड ऑर्गन", + "shortname": "Hm. Org।", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "रीड ऑर्गन", + "shortname": "Rd. Org।", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "रोटरी ऑर्गन", + "shortname": "Rot. Org।", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "पर्कसिव ऑर्गन", + "shortname": "Perc. Org।", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "स्वरबद्ध तालवाद्य", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "टिम्पानी", + "shortname": "टिम्प।", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "ज़ायलोफोन", + "shortname": "ज़ायल।", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "वाइब्राफोन", + "shortname": "वाइब।", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "ग्लोकनश्पील", + "shortname": "Glk।", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "मरिम्बा", + "shortname": "Mrm।", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "ट्यूबलर बेल्स (ऑर्केस्ट्रल चाइम्स)", + "shortname": "Tu. Be।", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "म्यूजिक बॉक्स", + "shortname": "M. Box", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "सोप्रानो स्टील ड्रम्स", + "shortname": "सो. स्ट. ड्र।", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "बेस स्टील ड्रम्स", + "shortname": "B. St. Dr।", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "तालवाद्य", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "ड्रम सेट", + "shortname": "ड्रम्स", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "ड्रम सेट", + "shortname": "ड्रम्स", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "ऑर्केस्ट्रल ड्रम सेट", + "shortname": "ड्रम्स", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "हिप-हॉप सेट", + "shortname": "HH सेट", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "मार्चिंग स्नेर ड्रम्स", + "shortname": "मा. स्ने.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "मार्चिंग स्नेर ड्रम्स", + "shortname": "मा. स्ने.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "मार्चिंग टेनर ड्रम्स", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "मार्चिंग टेनर ड्रम्स", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "मार्चिंग बेस ड्रम्स", + "shortname": "मा बे", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "मार्चिंग बेस ड्रम्स", + "shortname": "मा बे", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "मार्चिंग सिम्बल्स", + "shortname": "मा सिम", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "मार्चिंग सिम्बल्स", + "shortname": "मा सिम", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "कॉन्सर्ट बेस ड्रम", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "ओरिएंटल गोंग", + "shortname": "Gng।", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "जापानी नागादो ताइको ढोल", + "shortname": "नगाड़ा", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "वुडब्लॉक्स", + "shortname": "WB", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "बोंगोज़", + "shortname": "बोंगो", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "कोंगास", + "shortname": "कों।", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "क्लेव्स", + "shortname": "Clv।", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "अगोगो घंटियाँ", + "shortname": "अगो।", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "सीटियाँ", + "shortname": "Whi।", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "विंड चाइम्स", + "shortname": "Wind Chm", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "फिंगर स्नैप", + "shortname": "Fgr।", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "हैंड क्लैप", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "सस्पेंडेड सिंबल", + "shortname": "Sus. Cym।", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "ट्रायंगल", + "shortname": "Trg।", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "झंकार घंटियाँ", + "shortname": "झं. घं.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "मराकास", + "shortname": "मराक.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "ध्वनिक बेस ड्रम", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "साइड स्टिक", + "shortname": "Sd Stk", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "ध्वनिक स्नेयर ड्रम", + "shortname": "Snr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "फ्लोर टॉम", + "shortname": "Fl Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "निम्न टॉम", + "shortname": "L Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "लो-मिड टॉम", + "shortname": "LM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "मध्य टॉम", + "shortname": "M Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "हाई-मिड टॉम", + "shortname": "HM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "उच्च टॉम", + "shortname": "H Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "बंद हाई-हैट", + "shortname": "Cl HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "खुला हाई-हैट", + "shortname": "Op HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "पेडल हाई-हैट", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "क्रैश सिंबल", + "shortname": "क्रैश", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "राइड सिंबल", + "shortname": "Rd Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "चाइना सिम्बल", + "shortname": "Ch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "राइड बेल", + "shortname": "Rd Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "टैम्बरीन", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "स्प्लैश सिंबल", + "shortname": "स्प्लैश", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "काउबेल", + "shortname": "काउबेल", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "झंकारित तंतु-वाद्य", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "एकॉस्टिक गिटार", + "shortname": "गिट।", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "क्लासिकल गिटार", + "shortname": "गिट।", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "एकॉस्टिक गिटार", + "shortname": "गिट।", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "उकुलेले", + "shortname": "Uk।", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "उकुलेले", + "shortname": "Uk।", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "इलेक्ट्रिक गिटार", + "shortname": "इलेक. गिट।", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "इलेक्ट्रिक गिटार (क्लीन)", + "shortname": "इलेक. गिट।", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "इलेक्ट्रिक गिटार (जैज़)", + "shortname": "इलेक. गिट।", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "इलेक्ट्रिक गिटार (म्यूटेड)", + "shortname": "इलेक. गिट।", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "हाई-वोल्टेज डिस्टॉर्शन गिटार", + "shortname": "Dist. G।", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "इलेक्ट्रिक गिटार क्रंच", + "shortname": "G. Crch।", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "इलेक्ट्रिक गिटार (लीड)", + "shortname": "G. Lead", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "डिस्टॉर्शन गिटार", + "shortname": "डिस्ट. गिट।", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "आधुनिक इलेक्ट्रिक बेस", + "shortname": "Mo. B।", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "विंटेज इलेक्ट्रिक बेस", + "shortname": "Vi. B।", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "इलेक्ट्रिक बेस", + "shortname": "इलेक. बे।", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "इलेक्ट्रिक बेस (प्लेक्ट्रम)", + "shortname": "इलेक. बेस", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "स्लैप बेस", + "shortname": "Sl. Bass", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "जापानी कोटो", + "shortname": "कोटो", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "शामिसेन (जापानी ल्यूट)", + "shortname": "Sha।", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "ऊद (अरबी ल्यूट)", + "shortname": "ऊद", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "बैंजो", + "shortname": "बैंज।", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "मैंडोलिन", + "shortname": "Mdn।", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "हार्प", + "shortname": "हार्प।", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "सितार", + "shortname": "Si।", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "स्ट्रिंग्स", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "वायलिन", + "shortname": "Vln।", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "वायलिन", + "shortname": "Vln।", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "मुख्य वायलिन", + "shortname": "Vln. Ld।", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "वीओला", + "shortname": "Vla।", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "वीओला", + "shortname": "Vla।", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "चेलो", + "shortname": "Vc।", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "चेलो", + "shortname": "Vc।", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "कॉन्ट्राबेस", + "shortname": "Cb।", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "कॉन्ट्राबेस", + "shortname": "Cb।", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "तार-वाद्य समूह", + "shortname": "St. Ens।", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "चीनी एरहू", + "shortname": "Er।", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "गायन", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "क्वायर सोप्रानो (महिलाएँ)", + "shortname": "Sop।", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "क्वायर सोप्रानो (लड़कियाँ)", + "shortname": "Sop।", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "क्वायर सोप्रानो (लड़के)", + "shortname": "Sop।", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "क्वायर काउंटरटेनर (पुरुष)", + "shortname": "Cnt।", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "क्वायर अल्टो (महिलाएँ)", + "shortname": "अल्टो", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "क्वायर अल्टो (लड़कियाँ)", + "shortname": "अल्टो", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "क्वायर टेनर (हॉल)", + "shortname": "Ten।", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "क्वायर टेनर (कैथेड्रल)", + "shortname": "Ten।", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "क्वायर बेस (हॉल)", + "shortname": "बेस", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "क्वायर बेस (कैथेड्रल)", + "shortname": "बेस", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "क्वायर सोप्रानो", + "shortname": "Sop।", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "क्वायर अल्टो", + "shortname": "अल्टो", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "क्वायर टेनर", + "shortname": "Ten।", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "क्वायर बेस", + "shortname": "बेस", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "क्वायर आह", + "shortname": "Ch. Aa।", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "वॉइस ऊह", + "shortname": "Vo. Oo।", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "वॉइस लीड", + "shortname": "वोकल लीड", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "कज़ू", + "shortname": "Kz।", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "वुडविंड", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "पिकोलो", + "shortname": "Picc।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "ऑर्केस्ट्रल बांसुरी", + "shortname": "Flt।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "पारंपरिक बांसुरी", + "shortname": "Flt।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "बांसुरी", + "shortname": "Fl।", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "अल्टो फ्लूट", + "shortname": "A. Fl।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "पैन बांसुरी", + "shortname": "Pn. Fl।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "रिकॉर्डर", + "shortname": "रिक।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "अल्टो रिकॉर्डर (F में)", + "shortname": "Alto Rec।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "टिन व्हिसल", + "shortname": "Tin Wh।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "ओबो", + "shortname": "Ob।", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "इंग्लिश हॉर्न", + "shortname": "E. Hn।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "कंसर्ट क्लैरिनेट (B♭)", + "shortname": "Cl।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "क्लैरिनेट युगल", + "shortname": "Cl।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "क्लैरिनेट", + "shortname": "Cl।", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "अल्टो क्लैरिनेट", + "shortname": "Al. Cl।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "बास क्लैरिनेट", + "shortname": "B. Cl।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "कॉन्ट्राबास क्लैरिनेट", + "shortname": "Cb. Cl।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "बैसून", + "shortname": "Bsn।", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "कॉन्ट्राबैसून", + "shortname": "Cb. Bsn।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "सोप्रानो सैक्सोफोन", + "shortname": "S. Sax।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "अल्टो सैक्सोफोन", + "shortname": "A. Sax।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "टेनर सैक्सोफोन", + "shortname": "T. Sax।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "बैरीटोन सैक्सोफोन", + "shortname": "Bar. Sax।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "सोप्रानो सैक्सोफोन", + "shortname": "S. Sax।", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "अल्टो सैक्सोफोन", + "shortname": "A. Sax।", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "टेनर सैक्सोफोन", + "shortname": "T. Sax।", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "बैरीटोन सैक्सोफोन", + "shortname": "Bar. Sax।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "बैगपाइप्स", + "shortname": "Bagp।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "ओकारिना", + "shortname": "Oc।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "डीज़ी (चीनी बांसुरी)", + "shortname": "Di।", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "शकुहाची (जापानी बांसुरी)", + "shortname": "श।", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "विशेष", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "बिल्ली की म्याऊँ", + "shortname": "बिल्ली", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "स्टार वॉर्स सेट", + "shortname": "स्टा. वॉ।", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/id.json b/data/i18n/id.json new file mode 100644 index 0000000..3a220dc --- /dev/null +++ b/data/i18n/id.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Instrumen tiup kuningan", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trompet", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trompet", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Trombon", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Trombon", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Korno di F", + "shortname": "F Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Korno di F", + "shortname": "F Hn.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Korno di C", + "shortname": "Korno C", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Korno di C", + "shortname": "Korno C", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Korno di D", + "shortname": "Korno D", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Korno di D", + "shortname": "Korno D", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Horn Bariton", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Horn Bariton", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Bariton (Kunci G)", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Bariton (Kunci G)", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Eufonium", + "shortname": "Euph.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Seksi Kuningan", + "shortname": "Seksi Brass", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Instrumen Elektronik", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Bas Sintetiser Portamento", + "shortname": "Bas portamento", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Bas Sintetiser Reese", + "shortname": "Bas beresonansi", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Bas Sintetiser Petikan", + "shortname": "Bass Petik", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Bas Sintetiser Underwide", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Synth Bass Padat", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Bas Sintetiser Ringan", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Bas Sintetiser Airbass", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Bas Sintetiser Evolution", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Bas Sintetiser Weekend", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Bas Sintetiser Plucky", + "shortname": "Pl. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Bas Synth Fase", + "shortname": "Ph. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Bas Synth Out", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Synth Lead Lonceng Megah", + "shortname": "Epc Bl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Synth Lead Gelombang Gergaji Chorus", + "shortname": "Sw Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Synth Lead Lightsaber", + "shortname": "Lead Synth Terang", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Synth Lead Bintang Terang", + "shortname": "Brt S LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Synth Lead Kedalaman Antariksa", + "shortname": "Dp Sp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Synth Lead Komputer Fiksi Ilmiah", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Synth Lead Robot Bernyanyi", + "shortname": "Sg Rb LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Lead Synth Bintang Utara", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Lead Synth Bising", + "shortname": "Lead Synth Berisik", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Lead Synth Square 1", + "shortname": "Lead Synth Gelombang Kotak 1", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Lead Synth Drill", + "shortname": "Lead Synth Drill", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Lead Synth Funky", + "shortname": "Lead Synth Funk", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Lead Synth Komunikasi Astral", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Synth Lead Paduan Suara Eteris", + "shortname": "Dr Chr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Lead Synth Orkestra Antariksa", + "shortname": "Sp Orch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Lead Synth Asteroid Melodik", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Lead Synth Penjelajah Mars", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Synthesizer Paduan Suara", + "shortname": "Synth.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Lidah Bebas", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Akordeon", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Harmonika", + "shortname": "Harmonika", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Papan Tuts", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Grand Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Piano Kering", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Piano Konser", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Grand Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Cembalo", + "shortname": "Cem.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Celesta", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Organ", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Organ Hammond", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Harmonium", + "shortname": "Harm.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Organ Rotary", + "shortname": "Org. Rot.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Organ Perkusif", + "shortname": "Org. Perk.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Perkusi Bernada", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Timpani", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Xilofon", + "shortname": "Xil.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibrafon", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Glockenspiel", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Lonceng Tabung (Lonceng Orkestra)", + "shortname": "Lon. Tab.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Kotak Musik", + "shortname": "K. Musik", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Steel drum sopran", + "shortname": "Sop. St. Dr.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Steel Drum Bas", + "shortname": "St. Dr. Bas", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Perkusi", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Set drum", + "shortname": "Drum", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Set drum", + "shortname": "Drum", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Set Drum Orkestra", + "shortname": "Drum", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Set Hip-hop", + "shortname": "HH Set", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Snare Drum Marching", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Snare Drum Marching", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Drum Tenor Marching", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Drum Tenor Marching", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Drum Bas Marching", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Drum Bas Marching", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Simbal Marching", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Simbal Marching", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Bass Drum Konser", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Gong Timur", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Drum Taiko Nagado Jepang", + "shortname": "Nag", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Blok kayu", + "shortname": "BK", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongo", + "shortname": "Bongo", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Conga", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Claves", + "shortname": "Claves", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Lonceng Agogo", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Peluit", + "shortname": "Pel.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Lonceng Angin", + "shortname": "Lon Ang", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Jentikan Jari", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Tepuk Tangan", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Simbal Gantung", + "shortname": "Simbal gantung", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Triangel", + "shortname": "Tri.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Lonceng Kerincing", + "shortname": "Lcg Krn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Marakas", + "shortname": "Mrks", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Drum Bas Akustik", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Side Stick", + "shortname": "Sd Stk", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Snare Drum Akustik", + "shortname": "Snr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Tom Lantai", + "shortname": "Fl Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Tom Rendah", + "shortname": "L Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Tom Tengah-Rendah", + "shortname": "LM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Tom Menengah", + "shortname": "M Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Tom Tengah-Tinggi", + "shortname": "HM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Tom Tinggi", + "shortname": "H Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Hi-hat tertutup", + "shortname": "Cl HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Hi-hat terbuka", + "shortname": "Op HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Pedal hi-hat", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Simbal Crash", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Simbal Ride", + "shortname": "Rd Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "Simbal China", + "shortname": "Ch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Bel Ride", + "shortname": "Rd Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Tamborin", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Simbal Splash", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Cowbell", + "shortname": "Cowbell", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Dawai Petik", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Gitar Akustik", + "shortname": "Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Gitar Klasik", + "shortname": "Git.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Gitar Akustik", + "shortname": "Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Gitar Elektrik", + "shortname": "Git. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Gitar Elektrik (bersih)", + "shortname": "Git. El.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Gitar Elektrik (jazz)", + "shortname": "Git. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Gitar Elektrik (diredam)", + "shortname": "Git. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Gitar Distorsi Tegangan Tinggi", + "shortname": "Dist. G.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Gitar Elektrik Crunch", + "shortname": "G. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Gitar Elektrik Utama", + "shortname": "G. Lead", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Gitar Distorsi", + "shortname": "Git. Dist.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Bas Elektrik Modern", + "shortname": "Bas Mod.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Bas Elektrik Vintage", + "shortname": "Bas Vin.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Gitar bas listrik", + "shortname": "El. B.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Bas Elektrik (plektrum)", + "shortname": "Bas El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Bas Slap", + "shortname": "Sl. Bas", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Koto Jepang", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (Kecapi Jepang)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (Kecapi Arab)", + "shortname": "Oud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandolin", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Harpa", + "shortname": "Har.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Instrumen Gesek", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Biola", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Biola", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Biola Utama", + "shortname": "Vln. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Viola", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Viola", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Selo", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Selo", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Kontrabas", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Kontrabas", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Ansambel Gesek", + "shortname": "St. Ens.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Erhu Tiongkok", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Vokal", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Paduan Suara Sopran Wanita", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Paduan Suara Sopran Anak Perempuan", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Paduan Suara Sopran Anak Laki-laki", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Paduan Suara Kontratenor Pria", + "shortname": "Ktr.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Paduan Suara Alto Wanita", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Paduan Suara Alto Anak Perempuan", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Paduan Suara Tenor Aula", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Paduan Suara Tenor Katedral", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Paduan Suara Bas Aula", + "shortname": "Bas", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Paduan Suara Bas Katedral", + "shortname": "Bas", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Paduan Suara Sopran", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Paduan Suara Alto", + "shortname": "Alto", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Paduan Suara Tenor", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Paduan Suara Bas", + "shortname": "Bas", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Paduan Suara Aah", + "shortname": "Ch. Aa.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Vokal Ooh", + "shortname": "Vk. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Vokal Utama", + "shortname": "Vok. Ut.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Alat Tiup Kayu", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Pikolo", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Seruling Orkestra", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Seruling Tradisional", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Seruling", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Seruling alto", + "shortname": "Fl. Alto", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Seruling Pan", + "shortname": "Pn. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Rekorder", + "shortname": "Rec.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Rekorder Alto (F)", + "shortname": "Rek. Alto", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Seruling Timah", + "shortname": "Tin whistle", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Obo", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Korno Inggris", + "shortname": "E. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Klarinet Konser (Bb)", + "shortname": "Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Duet Klarinet", + "shortname": "Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Klarinet", + "shortname": "Kl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Klarinet Alto", + "shortname": "Kl. Alto", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Klarinet Bas", + "shortname": "Kl. Bas", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Klarinet Kontrabas", + "shortname": "Kl. Kbas.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Fagot", + "shortname": "Fag.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Kontrafagot", + "shortname": "Kontrafagot", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Saksofon Sopran", + "shortname": "S. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Saksofon Alto", + "shortname": "Saks. Alto", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Saksofon Tenor", + "shortname": "T. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Saksofon Bariton", + "shortname": "Saks. Bar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Saksofon Sopran", + "shortname": "S. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Saksofon Alto", + "shortname": "Saks. Alto", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Saksofon Tenor", + "shortname": "T. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Saksofon Bariton", + "shortname": "Saks. Bar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Bagpipe", + "shortname": "Bagp.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Okarina", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (Seruling Tiongkok)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (seruling Jepang)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Khusus", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Kucing Mengeong", + "shortname": "Kucing", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Set Star Wars", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/it.json b/data/i18n/it.json new file mode 100644 index 0000000..956582d --- /dev/null +++ b/data/i18n/it.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Ottoni", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Tromba", + "shortname": "Tr.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Tromba", + "shortname": "Tr.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Trombone", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Trombone", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Corno in Fa", + "shortname": "Cor. in Fa", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Corno in Fa", + "shortname": "Cor. in Fa", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Corno in Do", + "shortname": "Corno in Do", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Corno in Do", + "shortname": "Corno in Do", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Corno in Re", + "shortname": "Corno in Re", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Corno in Re", + "shortname": "Corno in Re", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Corno baritono", + "shortname": "Flic. bar.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Corno baritono", + "shortname": "Flic. bar.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Baritono TC", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Baritono TC", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Bombardino", + "shortname": "Euf.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Sezione di ottoni", + "shortname": "Sezione di ottoni", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Strumenti Elettronici", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Basso synth con portamento", + "shortname": "Port. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Basso synth Reese", + "shortname": "Rison. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Basso synth a pizzico", + "shortname": "Basso a pizzico", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Basso synth Underwide", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Basso synth solido", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Basso synth leggero", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Basso synth Airbass", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Basso synth Evolution", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Basso synth Weekend", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Basso synth pizzicato", + "shortname": "Pz. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Basso synth con phaser", + "shortname": "Ph. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Synth Bass Out", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Synth Lead Campane epiche", + "shortname": "Cp Epc SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Lead synth a dente di sega con chorus", + "shortname": "Sw Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Synth Lead Spada laser", + "shortname": "Lead synth luci", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Synth Lead Stella brillante", + "shortname": "St Br SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Synth Lead Spazio profondo", + "shortname": "Sp Pr SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Synth Lead Computer di fantascienza", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Synth Lead Robot Cantanti", + "shortname": "Rb Cant. SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Synth Lead Stella Polare", + "shortname": "SP SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Synth Lead Rumoroso", + "shortname": "Lead synth rumoroso", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Synth lead Square One", + "shortname": "Lead synth a onda quadra 1", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Synth Lead Drill", + "shortname": "Lead synth drill", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Synth Lead Funky", + "shortname": "Lead synth funk", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Lead synth Comunicazione astrale", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Synth Lead Coro Sognante", + "shortname": "Cr Sog SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Synth Lead Orchestra Spaziale", + "shortname": "Orch Spaz SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Synth Lead Asteroide Melodico", + "shortname": "Ast Mld SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Synth Lead Rover di Marte", + "shortname": "Marte SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Sintetizzatore Coro", + "shortname": "Sint.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Ancia libera", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Fisarmonica", + "shortname": "Fis.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Armonica", + "shortname": "Arm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Tastiere", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Pianoforte a coda", + "shortname": "Pf.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Pianoforte secco", + "shortname": "Pf.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Pianoforte da concerto", + "shortname": "Pf.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Pianoforte a coda", + "shortname": "Pf.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Pianoforte", + "shortname": "Pf.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Clavicembalo", + "shortname": "Cemb.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Celesta", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Organo", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Organo Hammond", + "shortname": "Org. Ham.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Organo ad ancia", + "shortname": "Org. an.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Organo Rotary", + "shortname": "Org. Rot.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Organo percussivo", + "shortname": "Org. perc.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Percussioni a suono determinato", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Timpani", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Xilofono", + "shortname": "Xil.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibrafono", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Glockenspiel", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mar.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Campane tubolari (campane orchestrali)", + "shortname": "Camp. Tub.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Carillon", + "shortname": "Car.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Steel Drums soprano", + "shortname": "St. Dr. s.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Steel Drums basso", + "shortname": "St. Dr. b.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Percussioni", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Set di batteria", + "shortname": "Batteria", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Set di batteria", + "shortname": "Batteria", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Batteria orchestrale", + "shortname": "Batteria", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Set Hip-Hop", + "shortname": "Set di charleston", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Rullanti da parata", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Rullanti da parata", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Tamburi tenori da marcia", + "shortname": "Ten. mar.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Tamburi tenori da marcia", + "shortname": "Ten. mar.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Grancasse da parata", + "shortname": "Grancassa mar.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Grancasse da parata", + "shortname": "Grancassa mar.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Piatti da parata", + "shortname": "Pt Par", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Piatti da parata", + "shortname": "Pt Par", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Grancassa da concerto", + "shortname": "GC", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Gong orientali", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Tamburi taiko giapponesi nagado", + "shortname": "Nag", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Blocchetti di legno", + "shortname": "Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bonghi", + "shortname": "Bongo", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Congas", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Legnetti", + "shortname": "Claves", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Campane agogo", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Fischietti", + "shortname": "Fisch.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Campanelli a vento", + "shortname": "Camp. a v.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Schiocco di dita", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Battimani", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Piatto sospeso", + "shortname": "Piatto sospeso", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Triangolo", + "shortname": "Tri.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Sonagli", + "shortname": "Sngl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Maracas", + "shortname": "Mrcs", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Grancassa acustica", + "shortname": "B.D.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Colpo sul bordo", + "shortname": "Colpo sul cerchio", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Rullante acustico", + "shortname": "Rull.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Tom a terra", + "shortname": "Tom ter.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Tom basso", + "shortname": "Tom b.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Tom medio-basso", + "shortname": "Tom m-b.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Tom medio", + "shortname": "Tom m.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Tom medio-alto", + "shortname": "Tom m-a.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Tom alto", + "shortname": "Tom a.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Charleston chiuso", + "shortname": "Cl HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Charleston aperto", + "shortname": "Op HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Charleston a pedale", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Piatto Crash", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Piatto Ride", + "shortname": "Rd Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "Piatto China", + "shortname": "Ch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Campana del ride", + "shortname": "Rd Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Tamburello", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Piatto Splash", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Campanaccio", + "shortname": "Campanaccio", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Strumenti a pizzico", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Chitarra acustica", + "shortname": "Chit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Chitarra classica", + "shortname": "Chit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Chitarra acustica", + "shortname": "Chit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Chitarra elettrica", + "shortname": "Chit. el.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Chitarra elettrica (pulita)", + "shortname": "Chit. el.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Chitarra elettrica (jazz)", + "shortname": "Chit. el.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Chitarra elettrica (palm mute)", + "shortname": "Chit. el.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Chitarra elettrica con distorsione ad alto guadagno", + "shortname": "Dist. Ch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Chitarra elettrica crunch", + "shortname": "Ch. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Chitarra elettrica solista", + "shortname": "Ch. sol.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Chitarra distorta", + "shortname": "Chit. dist.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Basso elettrico moderno", + "shortname": "B. mod.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Basso elettrico vintage", + "shortname": "B. vint.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Basso elettrico", + "shortname": "B. el.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Basso elettrico (plettro)", + "shortname": "B. el.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Basso slap", + "shortname": "B. slap", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Koto giapponese", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (liuto giapponese)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (liuto arabo)", + "shortname": "Oud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandolino", + "shortname": "Mnd.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Arpa", + "shortname": "Arp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Archi", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Violino", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Violino", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Violino solista", + "shortname": "Vl. sol.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Viola", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Viola", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Violoncello", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Violoncello", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Contrabbasso", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Contrabbasso", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Ensemble di archi", + "shortname": "Ens. archi", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Erhu cinese", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Voci", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Coro soprani donne", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Coro soprani ragazze", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Coro soprani bambini", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Coro controtenori uomini", + "shortname": "Cnt.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Coro contralti donne", + "shortname": "Contralto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Coro contralti ragazze", + "shortname": "Contralto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Coro tenori (sala)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Coro tenori (cattedrale)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Coro bassi (sala)", + "shortname": "Basso", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Coro bassi (cattedrale)", + "shortname": "Basso", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Coro soprani", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Coro contralti", + "shortname": "Contralto", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Coro tenori", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Coro bassi", + "shortname": "Basso", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Coro Aahs", + "shortname": "Cor. Aa.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Voci \"Ooh\"", + "shortname": "Vo. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Voce solista", + "shortname": "Voce solista", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Legni", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Ottavino", + "shortname": "Ott.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Flauto d'orchestra", + "shortname": "Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Flauto tradizionale", + "shortname": "Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Flauto", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Flauto contralto in Sol", + "shortname": "Fl. ca.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Flauto di Pan", + "shortname": "Fl. Pan.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Flauto dolce", + "shortname": "Fl. dolce", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Flauto dolce contralto in Fa", + "shortname": "Fl. d. ca.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Flauto irlandese", + "shortname": "Flauto irlandese", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Oboe", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Corno inglese", + "shortname": "C. ingl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Clarinetto in Sib", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Duetto per clarinetti", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Clarinetto", + "shortname": "Cl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Clarinetto contralto", + "shortname": "Cl. ca.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Clarinetto basso", + "shortname": "Cl. b.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Clarinetto contrabbasso", + "shortname": "Cl. cb.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Fagotto", + "shortname": "Fag.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Controfagotto", + "shortname": "Controfagotto", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Sassofono soprano", + "shortname": "Sax. s.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Sassofono contralto", + "shortname": "Sax. a.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Sassofono tenore", + "shortname": "Sax. t.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Sassofono baritono", + "shortname": "Sax. bar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Sassofono soprano", + "shortname": "Sax. s.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Sassofono contralto", + "shortname": "Sax. a.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Sassofono tenore", + "shortname": "Sax. t.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Sassofono baritono", + "shortname": "Sax. bar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Cornamusa", + "shortname": "Cornam.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Ocarina", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (flauto cinese)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (flauto giapponese)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Speciale", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Miagolii di gatto", + "shortname": "Gatto", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Set di Star Wars", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/ja-HIRA.json b/data/i18n/ja-HIRA.json new file mode 100644 index 0000000..7b2f2ff --- /dev/null +++ b/data/i18n/ja-HIRA.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "きんかんがっき", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "トランペット", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "トランペット", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "トロンボーン", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "トロンボーン", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "ホルン F", + "shortname": "F Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "ホルン F", + "shortname": "F Hn.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "ホルン C", + "shortname": "C Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "ホルン C", + "shortname": "C Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "ホルン D", + "shortname": "D Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "ホルン D", + "shortname": "D Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "バリトンホルン", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "バリトンホルン", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "バリトン TC", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "バリトン TC", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "ユーフォニアム", + "shortname": "Euph.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "チューバ", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "チューバ", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "ブラスセクション", + "shortname": "Brs. Se.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "でんしがっき", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "ポルタメント・シンセベース", + "shortname": "Prt. Bs", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "リース・シンセベース", + "shortname": "Rs. Bs", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "プラックシンセベース", + "shortname": "Plck. Bs", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Underwide Synth Bass", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Solide Synth Bass", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Light Synth Bass", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Airbass Synth Bass", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Evolution Synth Bass", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Weekend Synth Bass", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Plucky Synth Bass", + "shortname": "Pl. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Phase Synth Bass", + "shortname": "Ph. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Out Synth Bass", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Epic Bell Lead Synth", + "shortname": "Epc Bl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Saw Chorus Lead Synth", + "shortname": "Sw Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Lightsaber Lead Synth", + "shortname": "LghtS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Bright Star Lead Synth", + "shortname": "Brt S LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Deep Space Lead Synth", + "shortname": "Dp Sp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Sci-Fi Computer Lead Synth", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Singing Robots Lead Synth", + "shortname": "Sg Rb LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "North Star Lead Synth", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Noisy Lead Synth", + "shortname": "Nsy. LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Square One Lead Synth", + "shortname": "Sq. 1 LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Drill Lead Synth", + "shortname": "Drl. LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Funky Lead Synth", + "shortname": "Fnk. LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Astral Communication Lead Synth", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Dreamy Choir Lead Synth", + "shortname": "Dr Chr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Space Orchestra Lead Synth", + "shortname": "Sp Orch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Melodic Asteroid Lead Synth", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Mars Rover Lead Synth", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "クワイアシンセサイザー", + "shortname": "Synth.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "フリーリードがっき", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "アコーディオン", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "ハーモニカ", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "けんばんがっき", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "グランドピアノ", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "タイトピアノ", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "コンサートピアノ", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "グランドピアノ", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "ピアノ", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "チェンバロ", + "shortname": "Cemb.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "チェレスタ", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "オルガン", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "ハモンドオルガン", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "リードオルガン", + "shortname": "Rd. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "ロータリーオルガン", + "shortname": "Rot. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "パーカッシブオルガン", + "shortname": "Perc. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "おんかいだがっき", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "ティンパニ", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "シロフォン", + "shortname": "Xyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "ヴィブラフォン", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "グロッケンシュピール", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "マリンバ", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "チューブラーベル(コンサート・チャイム)", + "shortname": "Tu. Be.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "オルゴール", + "shortname": "M. Box", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "ソプラノスティールパン", + "shortname": "S. St. Dr.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "バススティールパン", + "shortname": "B. St. Dr.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "パーカッション", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "ドラムセット", + "shortname": "Drums", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "ドラムセット", + "shortname": "Drums", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Orchestral Drum Set", + "shortname": "Drums", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Hip-Hopセット", + "shortname": "HH Set", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "マーチングスネアドラム", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "マーチングスネアドラム", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "マーチングテナードラム", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "マーチングテナードラム", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "マーチングバスドラム", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "マーチングバスドラム", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "マーチングシンバル", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "マーチングシンバル", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "コンサートバスドラム", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "どら(ゴング)", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "ながどうだいこ", + "shortname": "ながどうだいこ", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Woodblocks", + "shortname": "WB", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "ボンゴ", + "shortname": "Bongo", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "コンガ", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "クラベス", + "shortname": "Clv.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "アゴゴ", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "ホイッスル", + "shortname": "Whi.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "ウィンドチャイム", + "shortname": "Wind Chm", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "フィンガースナップ", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "ハンドクラップ", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "サスペンデッドシンバル", + "shortname": "Sus. Cym", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "トライアングル", + "shortname": "Trg.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "ジングルベル", + "shortname": "Jgl Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "マラカス", + "shortname": "Mrcs.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "アコースティックバスドラム", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "サイドスティック", + "shortname": "Sd Stk", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "アコースティックスネアドラム", + "shortname": "Snr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "フロアタム", + "shortname": "Fl. Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "ロータム", + "shortname": "L. Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "ローミッドタム", + "shortname": "LM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "ミッドタム", + "shortname": "M. Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "ハイミッドタム", + "shortname": "HM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "ハイタム", + "shortname": "H. Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "クローズドハイハット", + "shortname": "Cl HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "オープンハイハット", + "shortname": "Op HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "ペダルハイハット", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "クラッシュシンバル", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "ライドシンバル", + "shortname": "Rd Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "China Cymbal", + "shortname": "Ch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "ライドベル", + "shortname": "Rd Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "タンバリン", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "スプラッシュシンバル", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "カウベル", + "shortname": "Cow.", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "はつげんがっき", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "アコースティックギター", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "クラシックギター", + "shortname": "Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "アコースティックギター", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "ウクレレ", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "ウクレレ", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Electric Guitar", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "エレクトリックギター(クリーン)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "エレクトリックギター(ジャズ)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "エレクトリックギター(ミュート)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "High-voltage Distortion Guitar", + "shortname": "Dist. G.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Electric Guitar Crunch", + "shortname": "G. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Electric Guitar Lead", + "shortname": "G. Lead", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "ディストーションギター", + "shortname": "Dist. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Modern Electric Bass", + "shortname": "Mo. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Vintage Electric Bass", + "shortname": "Vi. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "エレクトリックベース", + "shortname": "El. B.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "エレクトリックベース(ピック)", + "shortname": "El. Bass", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "スラップベース", + "shortname": "Sl. Bass", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "こと", + "shortname": "こと", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (Japanese Lute)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (Arabic Lute)", + "shortname": "Oud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "バンジョー", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "マンドリン", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "ハープ", + "shortname": "Hrp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "シタール", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "さつげんがっき", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "ヴァイオリン", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "ヴァイオリン", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "ヴァイオリンリード", + "shortname": "Vln. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "ヴィオラ", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "ヴィオラ", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "チェロ", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "チェロ", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "コントラバス", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "コントラバス", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "げんがくアンサンブル", + "shortname": "St. Ens.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "にこ", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "ボーカル", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Choir Soprano Women", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Choir Soprano Girls", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Choir Soprano Boys", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Choir Countertenor Men", + "shortname": "Cnt.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Choir Alto Women", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Choir Alto Girls", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Choir Tenor Hall", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Choir Tenor Cathedral", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Choir Bass Hall", + "shortname": "バス", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Choir Bass Cathedral", + "shortname": "バス", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "ソプラノ", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "アルト", + "shortname": "Alto", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "テノール", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "バス", + "shortname": "バス", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "あー", + "shortname": "Ch. Aa.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "おー", + "shortname": "Vo. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "リード", + "shortname": "Vc. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "カズー", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "もっかんがっき", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "ピッコロ", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "オーケストラフルート", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "トラディショナルフルート", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "フルート", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "アルトフルート", + "shortname": "A. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "パンフルート", + "shortname": "Pn. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "リコーダー", + "shortname": "Rec.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Alto Recorder in F", + "shortname": "Alto Rec.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "ティンホイッスル", + "shortname": "Tin Wh.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "オーボエ", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "イングリッシュホルン", + "shortname": "E Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "コンサートクラリネット(Bb)", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "クラリネットデュエット", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "クラリネット", + "shortname": "Cl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "アルトクラリネット", + "shortname": "Al. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "バスクラリネット", + "shortname": "B. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "コントラバスクラリネット", + "shortname": "Cb. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "ファゴット", + "shortname": "Bsn.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Contrabassoon", + "shortname": "Ctbn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "ソプラノサックス", + "shortname": "S. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "アルトサックス", + "shortname": "A. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "テナーサックス", + "shortname": "T. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "バリトンサックス", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "ソプラノサックス", + "shortname": "S. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "アルトサックス", + "shortname": "A. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "テナーサックス", + "shortname": "T. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "バリトンサックス", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "バグパイプ", + "shortname": "Bagp.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "オカリナ", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "ディーズ(ちゅうごくのふえ)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "🇯🇵 しゃくはち", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "スペシャルがっき", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "にゃー", + "shortname": "Cat", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "スターウォーズセット", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/ja.json b/data/i18n/ja.json new file mode 100644 index 0000000..92657a7 --- /dev/null +++ b/data/i18n/ja.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "金管楽器", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "トランペット", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "トランペット", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "トロンボーン", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "トロンボーン", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "ホルン F", + "shortname": "F Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "ホルン F", + "shortname": "F Hn.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "ホルン C", + "shortname": "C Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "ホルン C", + "shortname": "C Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "ホルン D", + "shortname": "D Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "ホルン D", + "shortname": "D Horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "バリトンホルン", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "バリトンホルン", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "バリトン TC", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "バリトン TC", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "ユーフォニアム", + "shortname": "Euph.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "チューバ", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "チューバ", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "ブラスセクション", + "shortname": "ブラス・セクション", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "電子楽器", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "ポルタメント・シンセベース", + "shortname": "ポルタメント・ベース", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "リース・シンセベース", + "shortname": "レゾナント・ベース", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "プラックシンセベース", + "shortname": "ピック・ベース", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "アンダーワイド・シンセベース", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "ソリッド・シンセベース", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "ライト・シンセベース", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "エアベース・シンセベース", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "エボリューション・シンセベース", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "ウィークエンド・シンセベース", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "プラッキー・シンセベース", + "shortname": "Pl. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "フェーズ・シンセベース", + "shortname": "Ph. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "アウト・シンセベース", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Epic Bell Lead Synth", + "shortname": "Epc Bl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Saw Chorus Lead Synth", + "shortname": "Sw Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Lightsaber Lead Synth", + "shortname": "ライトリ", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Bright Star Lead Synth", + "shortname": "Brt S LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Deep Space Lead Synth", + "shortname": "Dp Sp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Sci-Fi Computer Lead Synth", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Singing Robots Lead Synth", + "shortname": "Sg Rb LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "North Star Lead Synth", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Noisy Lead Synth", + "shortname": "ノイジー・シンセ・リード", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Square One Lead Synth", + "shortname": "スクエア1・シンセ・リード", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Drill Lead Synth", + "shortname": "ドリリ", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Funky Lead Synth", + "shortname": "ファンク・シンセ・リード", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Astral Communication Lead Synth", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Dreamy Choir Lead Synth", + "shortname": "Dr Chr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Space Orchestra Lead Synth", + "shortname": "Sp Orch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Melodic Asteroid Lead Synth", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Mars Rover Lead Synth", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "クワイアシンセサイザー", + "shortname": "Synth.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "フリーリード楽器", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "アコーディオン", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "ハーモニカ", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "鍵盤楽器", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "グランドピアノ", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "タイトピアノ", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "コンサートピアノ", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "グランドピアノ", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "ピアノ", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "チェンバロ", + "shortname": "Cemb.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "チェレスタ", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "オルガン", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "ハモンドオルガン", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "リードオルガン", + "shortname": "Rd. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "ロータリーオルガン", + "shortname": "Rot. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "パーカッシブオルガン", + "shortname": "Perc. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "音階打楽器", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "ティンパニ", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "シロフォン", + "shortname": "Xyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "ヴィブラフォン", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "グロッケンシュピール", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "マリンバ", + "shortname": "マリンバ", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "チューブラーベル(コンサート・チャイム)", + "shortname": "チャイム", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "オルゴール", + "shortname": "M. Box", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "ソプラノスティールパン", + "shortname": "S. St. Dr.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "バススティールパン", + "shortname": "B. St. Dr.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "パーカッション", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "ドラムセット", + "shortname": "Drums", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "ドラムセット", + "shortname": "Drums", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "オーケストラ・ドラムセット", + "shortname": "Drums", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Hip-Hopセット", + "shortname": "HH Set", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "マーチングスネアドラム", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "マーチングスネアドラム", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "マーチングテナードラム", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "マーチングテナードラム", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "マーチングバスドラム", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "マーチングバスドラム", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "マーチングシンバル", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "マーチングシンバル", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "コンサートバスドラム", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "銅鑼(ゴング)", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "🇯🇵 長胴太鼓", + "shortname": "長胴太鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "ウッドブロック", + "shortname": "WB", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "ボンゴ", + "shortname": "ボンゴ", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "コンガ", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "クラベス", + "shortname": "クラベス", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "アゴゴ", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "ホイッスル", + "shortname": "Whi.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "ウィンドチャイム", + "shortname": "ウィンドチャイム", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "フィンガースナップ", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "ハンドクラップ", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "サスペンデッドシンバル", + "shortname": "吊りシンバル", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "トライアングル", + "shortname": "Trg.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "ジングルベル", + "shortname": "Jgl. Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "マラカス", + "shortname": "Mrcs.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "アコースティックバスドラム", + "shortname": "B.D.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "サイドスティック", + "shortname": "Sd Stk", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "アコースティックスネアドラム", + "shortname": "Snr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "フロアタム", + "shortname": "Fl Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "ロータム", + "shortname": "L Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "ロー・ミッド・タム", + "shortname": "LM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "ミッドタム", + "shortname": "M Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "ハイ・ミッド・タム", + "shortname": "HM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "ハイタム", + "shortname": "H Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "クローズド・ハイハット", + "shortname": "Cl HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "オープン・ハイハット", + "shortname": "Op HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "ペダル・ハイハット", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "クラッシュシンバル", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "ライドシンバル", + "shortname": "Rd Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "チャイニーズシンバル", + "shortname": "Ch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "ライドベル", + "shortname": "Rd Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "タンバリン", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "スプラッシュシンバル", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "カウベル", + "shortname": "カウベル", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "撥弦楽器", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "アコースティックギター", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "クラシックギター", + "shortname": "Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "アコースティックギター", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "ウクレレ", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "ウクレレ", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "エレキギター", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "エレクトリックギター(クリーン)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "エレクトリックギター(ジャズ)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "エレクトリックギター(ミュート)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "ハイ・ボルテージ・ディストーション・ギター", + "shortname": "Dist. G.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "エレクトリックギター・クランチ", + "shortname": "G. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "エレクトリックギター・リード", + "shortname": "G. Lead", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "ディストーションギター", + "shortname": "Dist. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "モダン・エレクトリックベース", + "shortname": "Mo. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "ヴィンテージ・エレクトリックベース", + "shortname": "Vi. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "エレクトリックベース", + "shortname": "El. B.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "エレクトリックベース(ピック)", + "shortname": "El. Bass", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "スラップベース", + "shortname": "Sl. Bass", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "🇯🇵 箏", + "shortname": "箏", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "🇯🇵 三味線", + "shortname": "三", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "ウード(アラブのリュート)", + "shortname": "ウード", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "バンジョー", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "マンドリン", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "ハープ", + "shortname": "Hrp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "シタール", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "擦弦楽器", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "ヴァイオリン", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "ヴァイオリン", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "ヴァイオリンリード", + "shortname": "Vln. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "ヴィオラ", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "ヴィオラ", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "チェロ", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "チェロ", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "コントラバス", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "コントラバス", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "弦楽アンサンブル", + "shortname": "St. Ens.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "二胡", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "ボーカル", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "女性ソプラノ", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "女子ソプラノ", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "男子ソプラノ", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "カウンターテナー", + "shortname": "Cnt.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "女性アルト", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "女子アルト", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "テノール(Hall)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "テノール(Cathedral)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "バス(Hall)", + "shortname": "バス", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "バス(Cathedral)", + "shortname": "バス", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "ソプラノ", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "アルト", + "shortname": "Alto", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "テノール", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "バス", + "shortname": "バス", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "あー", + "shortname": "Ch. Aa.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "おー", + "shortname": "Vo. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "リード", + "shortname": "リード・ボーカル", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "カズー", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "木管楽器", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "ピッコロ", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "オーケストラフルート", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "トラディショナルフルート", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "フルート", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "アルトフルート", + "shortname": "A. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "パンフルート", + "shortname": "Pn. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "リコーダー", + "shortname": "Rec.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "アルトリコーダー in F", + "shortname": "Alto Rec.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "ティンホイッスル", + "shortname": "ティン・ホイッスル", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "オーボエ", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "イングリッシュホルン", + "shortname": "E Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "コンサートクラリネット(Bb)", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "クラリネットデュエット", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "クラリネット", + "shortname": "Cl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "アルトクラリネット", + "shortname": "Al. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "バスクラリネット", + "shortname": "B. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "コントラバスクラリネット", + "shortname": "Cb. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "ファゴット", + "shortname": "Bsn.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "コントラファゴット", + "shortname": "コントラファゴット", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "ソプラノサックス", + "shortname": "S. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "アルトサックス", + "shortname": "A. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "テナーサックス", + "shortname": "T. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "バリトンサックス", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "ソプラノサックス", + "shortname": "S. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "アルトサックス", + "shortname": "A. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "テナーサックス", + "shortname": "T. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "バリトンサックス", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "バグパイプ", + "shortname": "Bagp.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "オカリナ", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "ディーズ(中国の横笛)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "🇯🇵 尺八", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "スペシャル楽器", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "にゃー", + "shortname": "Cat", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "スター・ウォーズ・セット", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/ko.json b/data/i18n/ko.json new file mode 100644 index 0000000..753f8e5 --- /dev/null +++ b/data/i18n/ko.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "금관악기", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "트럼펫", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "트럼펫", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "트롬본", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "트롬본", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "F 호른", + "shortname": "F Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "F 호른", + "shortname": "F Hn.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "C조 호른", + "shortname": "C 호른", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "C조 호른", + "shortname": "C 호른", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "D 호른", + "shortname": "D 호른", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "D 호른", + "shortname": "D 호른", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "바리톤 호른", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "바리톤 호른", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "바리톤(높은음자리표)", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "바리톤(높은음자리표)", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "유포늄", + "shortname": "Euph.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "튜바", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "튜바", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "금관 섹션", + "shortname": "금관 합주", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "전자악기", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "포르타멘토 신스 베이스", + "shortname": "포르타멘토 베이스", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "리스 신스 베이스", + "shortname": "레조넌스 베이스", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "플럭 신스 베이스", + "shortname": "플럭 베이스", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "언더와이드 신스 베이스", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "솔리드 신시사이저 베이스", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "라이트 신스 베이스", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "에어베이스 신스 베이스", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "에볼루션 신스 베이스", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "위켄드 신스 베이스", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "플러키 신스 베이스", + "shortname": "Pl. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "페이즈 신스 베이스", + "shortname": "Ph. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "아웃 신스 베이스", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "에픽 벨 리드 신스", + "shortname": "Epc Bl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "톱니파 코러스 리드 신스", + "shortname": "Sw Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "라이트세이버 리드 신스", + "shortname": "밝은 리드 신시사이저", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "브라이트 스타 리드 신스", + "shortname": "Brt S LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "딥 스페이스 리드 신스", + "shortname": "Dp Sp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "공상과학 컴퓨터 리드 신스", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "노래하는 로봇 리드 신스", + "shortname": "Sg Rb LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "노스 스타 리드 신스", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "노이즈 리드 신스", + "shortname": "노이즈 리드 신시사이저", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "스퀘어 원 리드 신스", + "shortname": "사각파 1 리드 신시사이저", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "드릴 리드 신스", + "shortname": "드릴 리드 신시사이저", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "펑키 리드 신스", + "shortname": "펑크 리드 신시사이저", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "아스트랄 커뮤니케이션 리드 신스", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "드리미 콰이어 리드 신스", + "shortname": "Dr Chr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "스페이스 오케스트라 리드 신스", + "shortname": "Sp Orch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "멜로딕 애스터로이드 리드 신스", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "마스 로버 리드 신스", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "합창 신스", + "shortname": "Synth.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "자유리드 악기", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "아코디언", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "하모니카", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "건반 악기", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "그랜드 피아노", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "타이트 피아노", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "콘서트 피아노", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "그랜드 피아노", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "피아노", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "하프시코드", + "shortname": "Hch.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "첼레스타", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "오르간", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "해먼드 오르간", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "리드 오르간", + "shortname": "Rd. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "로터리 오르간", + "shortname": "Rot. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "퍼커시브 오르간", + "shortname": "Perc. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "유율 타악기", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "팀파니", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "실로폰", + "shortname": "Xyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "비브라폰", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "글로켄슈필", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "마림바", + "shortname": "마림바", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "튜불라 벨(오케스트라 차임)", + "shortname": "차임", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "오르골", + "shortname": "M. Box", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "소프라노 스틸 드럼", + "shortname": "S. St. Dr.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "베이스 스틸 드럼", + "shortname": "B. St. Dr.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "타악기", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "드럼 세트", + "shortname": "드럼", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "드럼 세트", + "shortname": "드럼", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "오케스트라 드럼 세트", + "shortname": "드럼", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "힙합 세트", + "shortname": "하이햇 세트", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "마칭 스네어 드럼", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "마칭 스네어 드럼", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "마칭 테너 드럼", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "마칭 테너 드럼", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "마칭 베이스 드럼", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "마칭 베이스 드럼", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "마칭 심벌즈", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "마칭 심벌즈", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "콘서트 베이스 드럼", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "오리엔탈 징", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "일본식 나가도 타이코 드럼", + "shortname": "나가라", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "우드블록", + "shortname": "우드블록", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "봉고", + "shortname": "봉고", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "콩가", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "클라베", + "shortname": "클라베", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "아고고 벨", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "호루라기", + "shortname": "호루라기", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "윈드 차임", + "shortname": "윈드차임", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "핑거 스냅", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "박수", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "서스펜디드 심벌", + "shortname": "서스펜디드 심벌", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "트라이앵글", + "shortname": "Trg.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "징글 벨", + "shortname": "Jgl Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "마라카스", + "shortname": "Mrcs", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "어쿠스틱 베이스 드럼", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "사이드 스틱", + "shortname": "Sd Stk", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "어쿠스틱 스네어 드럼", + "shortname": "Snr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "플로어 탐", + "shortname": "Fl Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "로우 탐", + "shortname": "L Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "중저음 탐탐", + "shortname": "LM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "미드 탐", + "shortname": "M Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "중고음 탐탐", + "shortname": "HM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "하이 탐", + "shortname": "H Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "클로즈드 하이햇", + "shortname": "Cl HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "오픈 하이햇", + "shortname": "Op HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "페달 하이햇", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "크래시 심벌", + "shortname": "크래시", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "라이드 심벌", + "shortname": "Rd Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "차이나 심벌", + "shortname": "Ch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "라이드 벨", + "shortname": "Rd Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "탬버린", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "스플래시 심벌", + "shortname": "스플래시", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "카우벨", + "shortname": "카우벨", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "발현악기", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "어쿠스틱 기타", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "클래식 기타", + "shortname": "Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "어쿠스틱 기타", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "우쿨렐레", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "우쿨렐레", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "일렉트릭 기타", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "일렉트릭 기타(클린 톤)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "일렉트릭 기타(재즈)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "일렉트릭 기타(뮤트)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "하이 볼티지 디스토션 기타", + "shortname": "Dist. G.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "일렉트릭 기타 크런치", + "shortname": "G. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "일렉트릭 기타 리드", + "shortname": "기타 리드", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "디스토션 기타", + "shortname": "Dist. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "모던 일렉트릭 베이스", + "shortname": "Mo. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "빈티지 일렉트릭 베이스", + "shortname": "Vi. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "일렉트릭 베이스", + "shortname": "El. B.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "일렉트릭 베이스(피크)", + "shortname": "El. Bass", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "슬랩 베이스", + "shortname": "Sl. Bass", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "일본 고토", + "shortname": "고토", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "샤미센(일본 류트)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "우드(아랍 류트)", + "shortname": "우드", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "밴조", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "만돌린", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "하프", + "shortname": "Hrp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "시타르", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "현악기", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "바이올린", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "바이올린", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "바이올린 리드", + "shortname": "Vln. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "비올라", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "비올라", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "첼로", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "첼로", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "콘트라베이스", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "콘트라베이스", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "현악 앙상블", + "shortname": "St. Ens.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "중국 얼후", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "보컬", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "합창단 여성 소프라노", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "합창단 소녀 소프라노", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "합창단 소년 소프라노", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "합창단 남성 카운터테너", + "shortname": "Cnt.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "여성 합창단 알토", + "shortname": "알토", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "소녀 합창단 알토", + "shortname": "알토", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "합창단 테너(홀)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "대성당 합창단 테너", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "합창단 베이스 홀", + "shortname": "베이스", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "대성당 합창단 베이스", + "shortname": "베이스", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "합창단 소프라노", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "합창단 알토", + "shortname": "알토", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "합창단 테너", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "합창단 베이스", + "shortname": "베이스", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "합창 아", + "shortname": "Ch. Aa.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "보컬 우", + "shortname": "Vo. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "보이스 리드", + "shortname": "리드 보컬", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "카주", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "목관악기", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "피콜로", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "오케스트라 플루트", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "전통 플루트", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "플루트", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "알토 플루트", + "shortname": "A. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "팬 플루트", + "shortname": "Pn. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "리코더", + "shortname": "리코더", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "F조 알토 리코더", + "shortname": "Alto Rec.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "틴 휘슬", + "shortname": "틴 휘슬", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "오보에", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "잉글리시 호른", + "shortname": "E. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "콘서트 클라리넷(B♭)", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "클라리넷 듀엣", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "클라리넷", + "shortname": "Cl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "알토 클라리넷", + "shortname": "Al. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "베이스 클라리넷", + "shortname": "B. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "콘트라베이스 클라리넷", + "shortname": "Cb. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "바순", + "shortname": "Bsn.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "콘트라바순", + "shortname": "콘트라바순", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "소프라노 색소폰", + "shortname": "S. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "알토 색소폰", + "shortname": "A. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "테너 색소폰", + "shortname": "T. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "바리톤 색소폰", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "소프라노 색소폰", + "shortname": "S. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "알토 색소폰", + "shortname": "A. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "테너 색소폰", + "shortname": "T. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "바리톤 색소폰", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "백파이프", + "shortname": "Bagp.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "오카리나", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "디즈(중국 피리)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "샤쿠하치(일본의 대나무 피리)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "특수 효과", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "고양이 울음소리", + "shortname": "고양이", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "스타 워즈 세트", + "shortname": "스타워즈", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/ms.json b/data/i18n/ms.json new file mode 100644 index 0000000..ea7f4a6 --- /dev/null +++ b/data/i18n/ms.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Alat Tiup Tembaga", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trompet", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trompet", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Trombon", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Trombon", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Korno dalam F", + "shortname": "F Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Korno dalam F", + "shortname": "F Hn.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Korno dalam C", + "shortname": "Korno C", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Korno dalam C", + "shortname": "Korno C", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Korno dalam D", + "shortname": "Korno D", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Korno dalam D", + "shortname": "Korno D", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Korno Bariton", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Korno Bariton", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Bariton (Kunci Trebel)", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Bariton (Kunci Trebel)", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Eufonium", + "shortname": "Euph.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Seksyen Alat Tiup Tembaga", + "shortname": "Seks. Tembaga", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Alat Muzik Elektronik", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Synth Bes Portamento", + "shortname": "Prt. Bes.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Synth Bes Reese", + "shortname": "Res. Bes.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Synth Bes Dipetik", + "shortname": "Ptk. Bes.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Synth Bes Underwide", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Bes Pensintesis Padu", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Synth Bes Ringan", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Synth Bes Airbass", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Synth Bes Evolution", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Synth Bes Weekend", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Bes Sintesis Petikan", + "shortname": "Pet. Bes.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Bes Sintesis Fasa", + "shortname": "Fas. Bes.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Bes Sintesis Luar Fasa", + "shortname": "LF. Bes.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Sintisizer Utama Loceng Epik", + "shortname": "Lc Ep SU", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Sintisizer Utama Gelombang Gergaji Korus", + "shortname": "Gg Kr SU", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Sintisizer Utama Pedang Cahaya", + "shortname": "Cahaya LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Sintisizer Utama Bintang Cerah", + "shortname": "Bn Cr SU", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Sintisizer Utama Angkasa Jauh", + "shortname": "Ak Jh SU", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Sintisizer Utama Komputer Fiksyen Sains", + "shortname": "Kp SF SU", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Sintisizer Utama Robot Bernyanyi", + "shortname": "Rb By SU", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Synth Utama Bintang Utara", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Synth Utama Bising", + "shortname": "Bising LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Synth Utama Gelombang Persegi 1", + "shortname": "Segi Empat 1 LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Synth Utama Drill", + "shortname": "Drill LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Synth Utama Funky", + "shortname": "Funk LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Synth Utama Komunikasi Astral", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Synth Utama Koir Syahdu", + "shortname": "Dr Chr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Synth Utama Orkestra Angkasa", + "shortname": "Sp Orch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Synth Utama Asteroid Melodik", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Synth Utama Penjelajah Marikh", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Sintisizer Koir", + "shortname": "Sint.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Lidah Bebas", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Akordion", + "shortname": "Akd.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Harmonika", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Papan Kekunci", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Piano Grand", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Piano Kering", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Piano Konsert", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Piano Grand", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Harpsikord", + "shortname": "Hsk.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Selesta", + "shortname": "Sel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Organ", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Organ Hammond", + "shortname": "Org. Hm.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Harmonium", + "shortname": "Hrm.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Organ Rotari", + "shortname": "Org. Rot.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Organ Perkusif", + "shortname": "Org. Perks.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Perkusi Bernada", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Timpani", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Xilofon", + "shortname": "Xil.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibrafon", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Glockenspiel", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Loceng Tiub (Loceng Orkestra)", + "shortname": "Lo. Ti.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Kotak Muzik", + "shortname": "K. Muzik", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Dram Keluli Soprano", + "shortname": "Dr. Ke. Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Dram Keluli Bes", + "shortname": "Dr. Kel. Bes", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Perkusi", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Set Dram", + "shortname": "Dram", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Set Dram", + "shortname": "Dram", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Set Dram Orkestra", + "shortname": "Dram", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Set Hip-Hop", + "shortname": "HH Set", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Dram Snare Perbarisan", + "shortname": "Sn Prb", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Dram Snare Perbarisan", + "shortname": "Sn Prb", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Dram Tenor Perarakan", + "shortname": "Prk Tn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Dram Tenor Perarakan", + "shortname": "Prk Tn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Dram Bes Perbarisan", + "shortname": "DB Prb", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Dram Bes Perbarisan", + "shortname": "DB Prb", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Simbal Perbarisan", + "shortname": "Smb Prb", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Simbal Perbarisan", + "shortname": "Smb Prb", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Dram Bes Konsert", + "shortname": "DBK", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Gong Timur", + "shortname": "Gg. T.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Gendang Taiko Nagado Jepun", + "shortname": "Nag", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Blok Kayu", + "shortname": "BK", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongo", + "shortname": "Bongo", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Conga", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Claves", + "shortname": "Klv.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Loceng Agogo", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Wisel", + "shortname": "Wsl.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Loceng Angin", + "shortname": "Loceng Angin", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Jentikan Jari", + "shortname": "Jnt.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Tepukan Tangan", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Simbal Gantung", + "shortname": "Simbal Gantung", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Triangel", + "shortname": "Tri.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Loceng Gemerincing", + "shortname": "Lcg Gmr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Marakas", + "shortname": "Mrks", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Dram Bes Akustik", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Ketukan Rim", + "shortname": "Sd Stk", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Dram Snare Akustik", + "shortname": "Snr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Tom Lantai", + "shortname": "Fl Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Tom Rendah", + "shortname": "L Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Tom Tengah-Rendah", + "shortname": "LM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Tom Tengah", + "shortname": "M Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Tom Tengah-Tinggi", + "shortname": "HM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Tom Tinggi", + "shortname": "H Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Hi-hat tertutup", + "shortname": "Cl HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Hi-hat terbuka", + "shortname": "Op HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Pedal hi-hat", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Simbal Crash", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Simbal Ride", + "shortname": "Rd Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "Simbal China", + "shortname": "Ch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Loceng Ride", + "shortname": "Rd Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Tamborin", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Simbal Splash", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Cowbell", + "shortname": "Cowbell", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Instrumen Bertali Dipetik", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Gitar Akustik", + "shortname": "Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Gitar Klasik", + "shortname": "Git.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Gitar Akustik", + "shortname": "Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Gitar Elektrik", + "shortname": "Git. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Gitar Elektrik (bersih)", + "shortname": "Git. El.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Gitar Elektrik (jazz)", + "shortname": "Git. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Gitar Elektrik (diredam)", + "shortname": "Git. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Gitar Distorsi Voltan Tinggi", + "shortname": "Dist. G.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Gitar Elektrik Crunch", + "shortname": "G. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Gitar Elektrik Utama", + "shortname": "G. Utama", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Gitar Distorsi", + "shortname": "Git. Dist.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Gitar Bes Elektrik Moden", + "shortname": "Mo. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Gitar Bes Elektrik Vintaj", + "shortname": "Vi. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Bes Elektrik", + "shortname": "B. El.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Bes Elektrik (plektrum)", + "shortname": "Bes El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Gitar Bes Slap", + "shortname": "Sl. Bass", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Koto Jepun", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (Luit Jepun)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (Luit Arab)", + "shortname": "Oud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandolin", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Harpa", + "shortname": "Hrp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Instrumen Gesek", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Biola", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Biola", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Biola Utama", + "shortname": "Bl. Ut.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Viola", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Viola", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Selo", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Selo", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Kontrabas", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Kontrabas", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Ensembel Gesek", + "shortname": "Ens. Gesek", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Erhu Cina", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Vokal", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Koir Soprano Wanita", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Koir Soprano Kanak-kanak Perempuan", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Koir Soprano Kanak-kanak Lelaki", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Koir Kontratenor Lelaki", + "shortname": "Ktr.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Koir Alto Wanita", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Koir Alto Kanak-kanak Perempuan", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Koir Tenor Dewan", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Koir Tenor Katedral", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Koir Bes Dewan", + "shortname": "Bes", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Koir Bes Katedral", + "shortname": "Bes", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Koir Soprano", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Koir Alto", + "shortname": "Alto", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Koir Tenor", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Koir Bes", + "shortname": "Bes", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Koir Aa", + "shortname": "Ko. Aa.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Vokal Oo", + "shortname": "Vk. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Vokal Utama", + "shortname": "Vok. Ut.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Alat Tiupan Kayu", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Pikolo", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Flut Orkestra", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Seruling Tradisional", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Flut", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Flut Alto", + "shortname": "A. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Seruling Pan", + "shortname": "Pn. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Rekorder", + "shortname": "Rek.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Rekoder Alto dalam F", + "shortname": "Al. Rek.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Seruling Timah", + "shortname": "Seruling Timah", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Obo", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Kor Inggeris", + "shortname": "K. Ing.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Klarinet Konsert (Bb)", + "shortname": "Klar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Duet Klarinet", + "shortname": "Klar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Klarinet", + "shortname": "Klar.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Klarinet Alto", + "shortname": "Al. Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Klarinet Bas", + "shortname": "B. Klar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Klarinet Kontrabas", + "shortname": "Kb. Klar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Fagot", + "shortname": "Fag.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Kontrafagot", + "shortname": "Kontrafagot", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Saksofon Sopran", + "shortname": "S. Saks.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Saksofon Alto", + "shortname": "A. Saks.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Saksofon Tenor", + "shortname": "T. Saks.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Saksofon Bariton", + "shortname": "Bar. Saks.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Saksofon Sopran", + "shortname": "S. Saks.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Saksofon Alto", + "shortname": "A. Saks.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Saksofon Tenor", + "shortname": "T. Saks.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Saksofon Bariton", + "shortname": "Bar. Saks.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Bagpipe", + "shortname": "Bagp.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Okarina", + "shortname": "Ok.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (Seruling Cina)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (seruling Jepun)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Khas", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Kucing Mengiau", + "shortname": "Kucing", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Set Star Wars", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/nb.json b/data/i18n/nb.json new file mode 100644 index 0000000..a89a9a4 --- /dev/null +++ b/data/i18n/nb.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Messingblåsere", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trompet", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trompet", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Trombone", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Trombone", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Horn i F", + "shortname": "F Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Horn i F", + "shortname": "F Hn.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Horn i C", + "shortname": "C-horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Horn i C", + "shortname": "C-horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Horn i D", + "shortname": "D-horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Horn i D", + "shortname": "D-horn", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Barytonhorn", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Barytonhorn", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Baryton (diskantnøkkel)", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Baryton (diskantnøkkel)", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Eufonium", + "shortname": "Euph.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Messingseksjon", + "shortname": "Messingseksjon", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Elektroniske instrumenter", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Synthbass med portamento", + "shortname": "Prt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Reese-synthbass", + "shortname": "Rs. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Plukket synthbass", + "shortname": "Plukket bass", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Underwide-synthbass", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Solid synthbass", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Lett synthbass", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Airbass synthbass", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Evolution synthbass", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Weekend synthbass", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Plucky synthbass", + "shortname": "Pl. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Phase synthbass", + "shortname": "Ph. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Out synthbass", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Episk klokkeklang lead-synth", + "shortname": "Eps Klk LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Sagtann-chorus lead-synth", + "shortname": "Sg Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Lyssabel lead-synth", + "shortname": "Lys leadsynth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Lysende stjerne lead-synth", + "shortname": "Lysn Stj LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Det dype verdensrommet lead-synth", + "shortname": "Dy Vr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Sci-fi-datamaskin lead-synth", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Syngende robot lead-synth", + "shortname": "Sy Rb LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Nordstjerne lead-synth", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Støyete lead-synth", + "shortname": "Støyete leadsynth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Firkantbølge 1 lead-synth", + "shortname": "Firkant 1 leadsynth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Drill lead-synth", + "shortname": "Drill leadsynth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Funky lead-synth", + "shortname": "Funk leadsynth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Astral kommunikasjon lead-synth", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Drømmende kor lead-synth", + "shortname": "Dr Kr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Romfartsorkester lead-synth", + "shortname": "Sp Ork LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Melodisk asteroide lead-synth", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Mars-rover lead-synth", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Korsynthesizer", + "shortname": "Synth.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Frie rørbladinstrumenter", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Trekkspill", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Munnspill", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Tangentinstrumenter", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Flygel", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Stramt piano", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Konsertflygel", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Flygel", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Cembalo", + "shortname": "Cem.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Celesta", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Orgel", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Hammondorgel", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Harmonium", + "shortname": "Rd. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Rotaryorgel", + "shortname": "Rot. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Perkusivt orgel", + "shortname": "Perc. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Stemt slagverk", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Pauker", + "shortname": "Pauk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Xylofon", + "shortname": "Xyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibrafon", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Klokkespill", + "shortname": "Klk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Rørklokker (Orkesterklokker)", + "shortname": "Rørkl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Spilledåse", + "shortname": "Sp. Då.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Sopran-ståltrommer", + "shortname": "S. St. Dr.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Bass-ståltrommer", + "shortname": "B. St. Dr.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Slagverk", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "trommesett", + "shortname": "trommer", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "trommesett", + "shortname": "trommer", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Orkestralt trommesett", + "shortname": "trommer", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Hip-hop-sett", + "shortname": "HH-sett", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Marsj-lilletrommer", + "shortname": "Msj Lt", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Marsj-lilletrommer", + "shortname": "Msj Lt", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Marsjtenortrommer", + "shortname": "Mrj Tn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Marsjtenortrommer", + "shortname": "Mrj Tn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Marsj-stortrommer", + "shortname": "Msj ST", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Marsj-stortrommer", + "shortname": "Msj ST", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Marsj-cymbaler", + "shortname": "Msj Cym", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Marsj-cymbaler", + "shortname": "Msj Cym", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Konsertstortromme", + "shortname": "KST", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Orientalske gonger", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Japanske Nagado Taiko-trommer", + "shortname": "Nagado-daiko", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Treblokker", + "shortname": "TB", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongos", + "shortname": "Bongo", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Congas", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Claves", + "shortname": "Claves", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Agogoklokker", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Signalfløyter", + "shortname": "Flø.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Vindspill", + "shortname": "Vindsp.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Fingerknips", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Håndklapp", + "shortname": "Klp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Hengende bekken", + "shortname": "Heng. bekken", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Triangel", + "shortname": "Tri.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Sledebjeller", + "shortname": "Sld Bjl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Maracas", + "shortname": "Mrcs", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "akustisk stortromme", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "kantslag", + "shortname": "Skarptromme kantslag", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "akustisk skarptromme", + "shortname": "Skr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "gulvtom", + "shortname": "Gv Tam", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Lav tam", + "shortname": "L Tam", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Mellomlav tom", + "shortname": "MD Tam", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Mellomtam", + "shortname": "M Tam", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Mellomhøy tom", + "shortname": "MH Tam", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Høy tam", + "shortname": "H Tam", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Lukket hi-hat", + "shortname": "Lk HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Åpen hi-hat", + "shortname": "Åp HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Hi-hat (pedal)", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Crash-bekken", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Ride-bekken", + "shortname": "Rd Bk", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "Kina-cymbal", + "shortname": "Ch Bk", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Ride-klokke", + "shortname": "Rd Kl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Tamburin", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Splashcymbal", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Kubjelle", + "shortname": "Kubjelle", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Plukkestrenger", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Akustisk gitar", + "shortname": "Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Klassisk gitar", + "shortname": "Git.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Akustisk gitar", + "shortname": "Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Elektrisk gitar", + "shortname": "El. git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Elektrisk gitar (ren)", + "shortname": "El. git.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Elektrisk gitar (jazz)", + "shortname": "El. git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Elektrisk gitar (dempet)", + "shortname": "El. git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Høyspent forvrengningsgitar", + "shortname": "Dist. Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Elektrisk gitar (crunch)", + "shortname": "Git. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Elektrisk gitar (lead)", + "shortname": "Git. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Forvrengt gitar", + "shortname": "Forvr. git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Moderne elektrisk bass", + "shortname": "Mod. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Vintage elektrisk bass", + "shortname": "Vin. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Elektrisk bass", + "shortname": "El. b.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Elektrisk bass (plekter)", + "shortname": "El. bass", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Slap-bass", + "shortname": "Sl. Bass", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Japansk koto", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (japansk lutt)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (arabisk lutt)", + "shortname": "Oud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandolin", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Harpe", + "shortname": "Hrp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Strykere", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Fiolin", + "shortname": "Fiol.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Fiolin", + "shortname": "Fiol.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Fiolin lead", + "shortname": "Fiol. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Bratsj", + "shortname": "Br.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Bratsj", + "shortname": "Br.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Cello", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Cello", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Kontrabass", + "shortname": "Kb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Kontrabass", + "shortname": "Kb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Strykeensemble", + "shortname": "Str. ens.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Kinesisk erhu", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Vokal", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Kor sopran (kvinner)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Kor sopran (jenter)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Kor sopran (gutter)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Kor kontratenor (menn)", + "shortname": "Ktr.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Kor alt (kvinner)", + "shortname": "Alt", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Kor alt (jenter)", + "shortname": "Alt", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Kor tenor (sal)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Kor tenor (katedral)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Kor bass (sal)", + "shortname": "Bass", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Kor bass (katedral)", + "shortname": "Bass", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Kor sopran", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Kor alt", + "shortname": "Alt", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Kor tenor", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Kor bass", + "shortname": "Bass", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Kor «ah»", + "shortname": "Kor. ah", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Vokal «ooh»", + "shortname": "Vok. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Vokal lead", + "shortname": "Vok. Lead", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Treblås", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Pikkolofløyte", + "shortname": "Pikk.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Orkesterfløyte", + "shortname": "Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Tradisjonell fløyte", + "shortname": "Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Fløyte", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Altfløyte", + "shortname": "Alt. fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Panfløyte", + "shortname": "Pn. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Blokkfløyte", + "shortname": "Blokkfl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Altblokkfløyte i F", + "shortname": "Alt. blokkfl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Tinnfløyte", + "shortname": "Tinnfl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Obo", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Engelsk horn", + "shortname": "E. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Klarinett (Bb)", + "shortname": "Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Klarinettduett", + "shortname": "Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Klarinett", + "shortname": "Kl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Altklarinett", + "shortname": "Alt. kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Basklarinett", + "shortname": "B. Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Kontrabasklarinett", + "shortname": "Kb. Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Fagott", + "shortname": "Fag.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Kontrafagott", + "shortname": "Kontrafag.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Sopransaksofon", + "shortname": "S. sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Altsaksofon", + "shortname": "A. sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Tenorsaksofon", + "shortname": "T. sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Barytonsaksofon", + "shortname": "Bar. sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Sopransaksofon", + "shortname": "S. sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Altsaksofon", + "shortname": "A. sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Tenorsaksofon", + "shortname": "T. sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Barytonsaksofon", + "shortname": "Bar. sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Sekkepipe", + "shortname": "Skp.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Okarina", + "shortname": "Ok.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (kinesisk fløyte)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (japansk fløyte)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Spesial", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Kattemjauing", + "shortname": "Katt", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Star Wars-sett", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/nl.json b/data/i18n/nl.json new file mode 100644 index 0000000..3be636d --- /dev/null +++ b/data/i18n/nl.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Koper", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trompet", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trompet", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Trombone", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Trombone", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Hoorn in F", + "shortname": "F Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Hoorn in F", + "shortname": "F Hn.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Hoorn in C", + "shortname": "Hoorn in C", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Hoorn in C", + "shortname": "Hoorn in C", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Hoorn in D", + "shortname": "Hoorn in D", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Hoorn in D", + "shortname": "Hoorn in D", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Baritonhoorn", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Baritonhoorn", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Bariton (TC)", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Bariton (TC)", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Euphonium", + "shortname": "Euph.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Kopersectie", + "shortname": "Kopersectie", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Elektronische instrumenten", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Portamento-synthbas", + "shortname": "Prt. Bas", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Reese-synthbas", + "shortname": "Rs. Bas", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Getokkelde synthbas", + "shortname": "Pluck-bas", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Underwide-synthbas", + "shortname": "Uw. Bas.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Strakke synthbas", + "shortname": "Sd. Bas.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Lichte synthbas", + "shortname": "Lt. Bas.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Airbass-synthbas", + "shortname": "Ab. Bas.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Evolution-synthbas", + "shortname": "Ev. Bas.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Weekend-synthbas", + "shortname": "Wk. Bas.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Plucky-synthbas", + "shortname": "Pl. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Fase synthbas", + "shortname": "Ph. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Out-synthbas", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Epische bel-lead-synth", + "shortname": "Epc Bl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Zaagtand-chorus-lead-synth", + "shortname": "Sw Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Lichtzwaard-lead-synth", + "shortname": "Lichte lead-synth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Heldere ster-lead-synth", + "shortname": "Brt S LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Diepe ruimte-lead-synth", + "shortname": "Dp Sp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Sci-Fi-computer-lead-synth", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Zingende robots-lead-synth", + "shortname": "Sg Rb LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Poolster Lead-synth", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Ruisende Lead-synth", + "shortname": "Ruisende lead-synth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Blokgolf 1 Lead-synth", + "shortname": "Blokgolf 1 lead-synth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Drill Lead-synth", + "shortname": "Drill lead-synth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Funky Lead-synth", + "shortname": "Funk lead-synth", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Astrale communicatie lead-synth", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Dromerige koor-lead-synth", + "shortname": "Dr Kr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Ruimte-orkest Lead-synth", + "shortname": "Rmt Ork LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Melodische Asteroïde Lead-synth", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Marsrover Lead-synth", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Koorsynthesizer", + "shortname": "Synth.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Vrije rietinstrumenten", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Accordeon", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Mondharmonica", + "shortname": "M. Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Toetsen", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Vleugel", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Strakke piano", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Concertpiano", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Vleugel", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Klavecimbel", + "shortname": "Klc.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Celesta", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Orgel", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Hammondorgel", + "shortname": "Hmd. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Tongorgel", + "shortname": "Tong. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Rotary-orgel", + "shortname": "Rot. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Percussief orgel", + "shortname": "Perc. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Gestemd slagwerk", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Pauken", + "shortname": "Pauk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Xylofoon", + "shortname": "Xyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibrafoon", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Klokkenspel", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Buisgongen (orkestklokken)", + "shortname": "Tu. Be.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Muziekdoos", + "shortname": "Muz. Doos", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Sopraan-steeldrums", + "shortname": "S. St. Dr.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Bas-steeldrums", + "shortname": "Bs. St. Dr.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Slagwerk", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Drumstel", + "shortname": "Drums", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Drumstel", + "shortname": "Drums", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Orkestdrumstel", + "shortname": "Drums", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Hiphopset", + "shortname": "HH Set", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Marching-snaredrums", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Marching-snaredrums", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Marching tenortrommels", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Marching tenortrommels", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Marching basdrums", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Marching basdrums", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Marching bekkens", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Marching bekkens", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Concertbasdrum", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Oosterse gongs", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Japanse Nagado-taiko's", + "shortname": "Nag", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Houtblokken", + "shortname": "WB", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongo's", + "shortname": "Bongo", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Conga's", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Claves", + "shortname": "Claves", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Agogobellen", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Fluitjes", + "shortname": "Fluitje", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Windgongen", + "shortname": "Windgongen", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Vingerknip", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Handclap", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Hangbekken", + "shortname": "Hangbekken", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Triangel", + "shortname": "Tri.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Sleebellen", + "shortname": "Jgl Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Maracas", + "shortname": "Mrcs", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Akoestische basdrum", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Sidestick", + "shortname": "Sd Stk", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Akoestische snaredrum", + "shortname": "Snr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Floortom", + "shortname": "Fl Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Lage tom", + "shortname": "L Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Middenlage tom", + "shortname": "LM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Middentom", + "shortname": "M Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Middenhoge tom", + "shortname": "HM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Hoge tom", + "shortname": "H Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Gesloten hi-hat", + "shortname": "Cl HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Open hi-hat", + "shortname": "Op HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Hi-hat pedaal", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Crashbekken", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Ridebekken", + "shortname": "Rd Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "China-bekken", + "shortname": "Ch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Ridebel", + "shortname": "Rd Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Tamboerijn", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Splashbekken", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Koebel", + "shortname": "Koebel", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Getokkelde snaarinstrumenten", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Akoestische gitaar", + "shortname": "Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Klassieke gitaar", + "shortname": "Git.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Akoestische gitaar", + "shortname": "Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukelele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukelele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Elektrische gitaar", + "shortname": "El. Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Elektrische gitaar (clean)", + "shortname": "El. Git.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Elektrische gitaar (jazz)", + "shortname": "El. Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Elektrische gitaar (gedempt)", + "shortname": "El. Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "High-Voltage distortiongitaar", + "shortname": "Dist. G.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Elektrische gitaar (crunch)", + "shortname": "G. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Elektrische gitaar (lead)", + "shortname": "G. Lead", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Distortiongitaar", + "shortname": "Dist. git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Moderne elektrische basgitaar", + "shortname": "Mo. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Vintage elektrische basgitaar", + "shortname": "Vi. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Elektrische basgitaar", + "shortname": "El. B.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Elektrische basgitaar (plectrum)", + "shortname": "El. bas", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Slapbas", + "shortname": "Sl. bas", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Japanse koto", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (Japanse luit)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oed (Arabische luit)", + "shortname": "Oed", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandoline", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Harp", + "shortname": "Hrp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Strijkers", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Viool", + "shortname": "Vl.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Viool", + "shortname": "Vl.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Viool-lead", + "shortname": "Vl. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Altviool", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Altviool", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Cello", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Cello", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Contrabas", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Contrabas", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Strijkersensemble", + "shortname": "Str. Ens.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Chinese erhu", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Zang", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Koor Sopraan Vrouwen", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Koor Sopraan Meisjes", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Koor Sopraan Jongens", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Koor Countertenor Mannen", + "shortname": "Cnt.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Koor Alt Vrouwen", + "shortname": "Alt", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Meisjeskoor (alt)", + "shortname": "Alt", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Tenorkoor (zaal)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Tenorkoor (kathedraal)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Koor Bas Zaal", + "shortname": "Bas", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Koor Bas Kathedraal", + "shortname": "Bas", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Koor Sopraan", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Koor Alt", + "shortname": "Alt", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Koor Tenor", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Koor Bas", + "shortname": "Bas", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Koor aah's", + "shortname": "Kr. Aa.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Stem oeh's", + "shortname": "St. Oeh.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Stem-lead", + "shortname": "Zg. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Houtblazers", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Piccolo", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Orkestrale dwarsfluit", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Traditionele dwarsfluit", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Dwarsfluit", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Altfluit", + "shortname": "A. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Panfluit", + "shortname": "Pn. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Blokfluit", + "shortname": "Rec.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Altblokfluit in F", + "shortname": "Alt. Blokfl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Tin whistle", + "shortname": "Tin Wh.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Hobo", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Althobo", + "shortname": "E. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Klarinet (Bes)", + "shortname": "Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Klarinetduet", + "shortname": "Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Klarinet", + "shortname": "Kl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Altklarinet", + "shortname": "Alt. Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Basklarinet", + "shortname": "Bs. Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Contrabasklarinet", + "shortname": "Cb. Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Fagot", + "shortname": "Fgt.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Contrafagot", + "shortname": "Ctr. Fg.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Sopraansaxofoon", + "shortname": "S. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Altsaxofoon", + "shortname": "A. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Tenorsaxofoon", + "shortname": "T. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Baritonsaxofoon", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Sopraansaxofoon", + "shortname": "S. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Altsaxofoon", + "shortname": "A. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Tenorsaxofoon", + "shortname": "T. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Baritonsaxofoon", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Doedelzak", + "shortname": "Doedelz.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Ocarina", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (Chinese fluit)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (Japanse fluit)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Speciaal", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Kattenmiauwen", + "shortname": "Kat", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Star Wars-set", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/pl.json b/data/i18n/pl.json new file mode 100644 index 0000000..dd13718 --- /dev/null +++ b/data/i18n/pl.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Instrumenty dęte blaszane", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trąbka", + "shortname": "Tr.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trąbka", + "shortname": "Tr.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Puzon", + "shortname": "Puz.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Puzon", + "shortname": "Puz.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Waltornia w F", + "shortname": "Walt. F", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Waltornia w F", + "shortname": "Walt. F", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Waltornia w C", + "shortname": "Waltornia w C", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Waltornia w C", + "shortname": "Waltornia w C", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Waltornia w D", + "shortname": "Waltornia w D", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Waltornia w D", + "shortname": "Waltornia w D", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Baryton", + "shortname": "Baryt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Baryton", + "shortname": "Baryt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Baryton (klucz wiolinowy)", + "shortname": "Bar. kl. w.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Baryton (klucz wiolinowy)", + "shortname": "Bar. kl. w.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Eufonium", + "shortname": "Euf.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Sekcja dęta blaszana", + "shortname": "Sekcja dęta blaszana", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Instrumenty elektroniczne", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Bas syntezatorowy z portamento", + "shortname": "Bas portamento", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Bas syntezatorowy Reese", + "shortname": "Bas rezonansowy", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Szarpany bas syntezatorowy", + "shortname": "Bas szarpany", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Bas syntezatorowy Underwide", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Solid - bas syntezatorowy", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Lekki bas syntezatorowy", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Bas syntezatorowy Airbass", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Bas syntezatorowy Evolution", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Weekendowy bas syntezatorowy", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Szarpany bas syntezatorowy", + "shortname": "Szrp. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Fazowy bas syntezatorowy", + "shortname": "Fz. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Bas syntezatorowy Out", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Epicki lead dzwonkowy (syntezator)", + "shortname": "Epk Dzw SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Syntezator solowy: piła z chorusem", + "shortname": "Pl Ch SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Syntezator solowy: miecz świetlny", + "shortname": "Lead syntezatorowy - Lights", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Syntezator solowy: jasna gwiazda", + "shortname": "Jsn Gw SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Syntezator solowy: głęboki kosmos", + "shortname": "Glb Kos SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Syntezator solowy: komputer sci-fi", + "shortname": "Kmp SF SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Syntezator solowy: śpiewające roboty", + "shortname": "Spw Rbt SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Syntezator prowadzący: North Star", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Hałaśliwy lead (syntezator)", + "shortname": "Lead syntezatorowy - Noisy", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Syntezator prowadzący: Square One", + "shortname": "Lead syntezatorowy - Square 1", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Syntezator prowadzący: Drill", + "shortname": "Lead syntezatorowy - Drill", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Syntezator prowadzący: funkowy", + "shortname": "Lead syntezatorowy - Funk", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Syntezator prowadzący: Astral Communication", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Syntezator prowadzący: senny chór", + "shortname": "Sn Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Syntezator prowadzący: kosmiczna orkiestra", + "shortname": "Ksm Ork LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Syntezator prowadzący: melodyjna asteroida", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Syntezator prowadzący: Mars Rover", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Syntezator chóralny", + "shortname": "Synt.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Instrumenty z wolnym stroikiem", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Akordeon", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Harmonijka ustna", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Instrumenty klawiszowe", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Fortepian", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Fortepian o zwartym brzmieniu", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Fortepian koncertowy", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Fortepian", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Fortepian", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Klawesyn", + "shortname": "Hch.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Celesta", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Organy", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Organy Hammonda", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Organy stroikowe", + "shortname": "Rd. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Organy z efektem rotary", + "shortname": "Rot. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Organy perkusyjne", + "shortname": "Perc. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Instrumenty perkusyjne o określonej wysokości dźwięku", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Kotły", + "shortname": "Kotły", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Ksylofon", + "shortname": "Ksyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Wibrafon", + "shortname": "Wib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Dzwonki", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Dzwony rurowe (Dzwony orkiestrowe)", + "shortname": "Dzw. rur.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Pozytywka", + "shortname": "M. Box", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Steelpany sopranowe", + "shortname": "St. dr. sop.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Basowe steelpany", + "shortname": "B. St. Dr.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Perkusja", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Zestaw Perkusyjny", + "shortname": "Perkusja", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Zestaw Perkusyjny", + "shortname": "Perkusja", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Zestaw perkusyjny orkiestrowy", + "shortname": "Perkusja", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Zestaw hip-hopowy", + "shortname": "Zestaw hi-hat", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Werble marszowe", + "shortname": "Marsz. wer.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Werble marszowe", + "shortname": "Marsz. wer.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Bębny tenorowe marszowe", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Bębny tenorowe marszowe", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Bębny basowe marszowe", + "shortname": "BB marsz.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Bębny basowe marszowe", + "shortname": "BB marsz.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Talerze marszowe", + "shortname": "Marsz. tal.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Talerze marszowe", + "shortname": "Marsz. tal.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Bęben wielki koncertowy", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Gongi orientalne", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Japońskie bębny taiko Nagado", + "shortname": "Nagado-daiko", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Klocki drewniane", + "shortname": "KD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongosy", + "shortname": "Bongo", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Konga", + "shortname": "Kon.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Klawesy", + "shortname": "Klawesy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Dzwonki agogo", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Gwizdki", + "shortname": "Gwi.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Dzwonki wietrzne", + "shortname": "Dzw. wiat.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Pstryknięcie palcami", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Klaśnięcie dłońmi", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Talerz zawieszony", + "shortname": "Talerz zawieszony", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Trójkąt", + "shortname": "Trg.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Janczary", + "shortname": "Jancz.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Marakasy", + "shortname": "Mar.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Akustyczny bęben basowy", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Uderzenie w obręcz", + "shortname": "Udr. obr.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Akustyczny werbel", + "shortname": "Werbel", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Tom podłogowy", + "shortname": "Tom podł.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Niski tom", + "shortname": "N Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Tom średnio-niski", + "shortname": "ŚN tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Tom średni", + "shortname": "Śr. tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Tom średnio-wysoki", + "shortname": "ŚW tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Tom wysoki", + "shortname": "W Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Zamknięty hi-hat", + "shortname": "Zamk. HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Otwarty hi-hat", + "shortname": "Op HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Hi-hat pedałem", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Talerz crash", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Talerz ride", + "shortname": "Talerz ride", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "Talerz china", + "shortname": "China tal.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Dzwonek Ride", + "shortname": "Rd Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Tamburyn", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Talerz splash", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Krowi dzwonek", + "shortname": "Krowi dzwonek", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Struny szarpane", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Gitara akustyczna", + "shortname": "Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Gitara klasyczna", + "shortname": "Git.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Gitara akustyczna", + "shortname": "Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Gitara elektryczna", + "shortname": "Git. el.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Gitara elektryczna (czysta)", + "shortname": "Git. el.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Gitara elektryczna (jazz)", + "shortname": "Git. el.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Gitara elektryczna (stłumiona)", + "shortname": "Git. el.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Gitara elektryczna – mocny przester", + "shortname": "Przest. git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Gitara elektryczna (crunch)", + "shortname": "Git. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Gitara elektryczna prowadząca", + "shortname": "Git. prow.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Gitara z przesterem", + "shortname": "Git. z przest.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Nowoczesny bas elektryczny", + "shortname": "Now. Bas.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Elektryczny bas w stylu vintage", + "shortname": "Vin. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Bas elektryczny", + "shortname": "B. el.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Bas elektryczny (kostka)", + "shortname": "Bas el.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Bas slap", + "shortname": "Sl. Bas.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Japońskie koto", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (lutnia japońska)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (lutnia arabska)", + "shortname": "Oud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandolina", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Harfa", + "shortname": "Har.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Smyczki", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Skrzypce", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Skrzypce", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Skrzypce prowadzące", + "shortname": "Skrz. Prow.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Altówka", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Altówka", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Wiolonczela", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Wiolonczela", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Kontrabas", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Kontrabas", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Zespół smyczkowy", + "shortname": "Zesp. smyczk.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Chińskie erhu", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Wokale", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Chór sopranów kobiecy", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Chór sopranów dziewczęcy", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Chór sopranów chłopięcy", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Chór kontratenorów męski", + "shortname": "Cnt.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Chór altów kobiecy", + "shortname": "Alt", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Chór altów dziewczęcy", + "shortname": "Alt", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Chór tenorów (sala)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Chór tenorów katedralny", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Chór basów (sala)", + "shortname": "Bas", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Chór basów katedralny", + "shortname": "Bas", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Chór sopranów", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Chór altów", + "shortname": "Alt", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Chór tenorów", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Chór basów", + "shortname": "Bas", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Chór „Aah”", + "shortname": "Ch. Aa.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Głos „Ooh”", + "shortname": "Gł. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Głos prowadzący", + "shortname": "Wokal prowadzący", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Dęte drewniane", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Flet piccolo", + "shortname": "Fl. picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Flet orkiestrowy", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Flet tradycyjny", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Flet", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Flet altowy", + "shortname": "Fl. alt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Fletnia Pana", + "shortname": "Fl. Pana", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Flet prosty", + "shortname": "Flet pr.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Flet prosty altowy w F", + "shortname": "Flet prosty altowy", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Flet irlandzki (tin whistle)", + "shortname": "Flet cynowy", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Obój", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Rożek angielski", + "shortname": "R. ang.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Klarnet koncertowy (B)", + "shortname": "Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Duet klarnetowy", + "shortname": "Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Klarnet", + "shortname": "Kl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Klarnet altowy", + "shortname": "Al. Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Klarnet basowy", + "shortname": "Kl. bas.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Klarnet kontrabasowy", + "shortname": "Kl. kontrab.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Fagot", + "shortname": "Fag.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Kontrafagot", + "shortname": "Kontrafagot", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Saksofon sopranowy", + "shortname": "Sax sop.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Saksofon altowy", + "shortname": "Sax alt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Saksofon tenorowy", + "shortname": "Sax ten.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Saksofon barytonowy", + "shortname": "Sax bar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Saksofon sopranowy", + "shortname": "Sax sop.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Saksofon altowy", + "shortname": "Sax alt.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Saksofon tenorowy", + "shortname": "Sax ten.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Saksofon barytonowy", + "shortname": "Sax bar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Dudy", + "shortname": "Dud.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Okaryna", + "shortname": "Ok.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (chiński flet)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (japoński flet)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Specjalne", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Kocie miauczenia", + "shortname": "Kot", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Zestaw Star Wars", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/pt-BR.json b/data/i18n/pt-BR.json new file mode 100644 index 0000000..9eda4f6 --- /dev/null +++ b/data/i18n/pt-BR.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Metais", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trompete", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trompete", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Trombone", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Trombone", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Trompa em Fá", + "shortname": "Tpa. Fá", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Trompa em Fá", + "shortname": "Tpa. Fá", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Trompa em Dó", + "shortname": "Trompa em Dó", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Trompa em Dó", + "shortname": "Trompa em Dó", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Trompa em Ré", + "shortname": "Trompa em Ré", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Trompa em Ré", + "shortname": "Trompa em Ré", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Bombardino", + "shortname": "Bomb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Bombardino", + "shortname": "Bomb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Barítono (CS)", + "shortname": "Bar. CS", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Barítono (CS)", + "shortname": "Bar. CS", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Bombardino", + "shortname": "Bomb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Seção de metais", + "shortname": "Seção de metais", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Instrumentos eletrônicos", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Baixo de sintetizador com portamento", + "shortname": "Prt. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Baixo de sintetizador Reese", + "shortname": "Rs. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Baixo de sintetizador dedilhado", + "shortname": "Baixo dedilhado", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Baixo de sintetizador Underwide", + "shortname": "Uw. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Baixo sintetizado sólido", + "shortname": "Sd. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Baixo de sintetizador leve", + "shortname": "Lv. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Baixo de sintetizador Airbass", + "shortname": "Ab. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Baixo de sintetizador Evolution", + "shortname": "Ev. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Baixo de sintetizador Weekend", + "shortname": "Wk. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Baixo Synth Plucky", + "shortname": "Pl. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Baixo Synth Phase", + "shortname": "Ph. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Baixo Synth Out", + "shortname": "Out Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Lead Sino Épico", + "shortname": "Epc Sn LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Lead de dente de serra com chorus", + "shortname": "Ds Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Lead de sabre de luz", + "shortname": "Lead de sintetizador (leve)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Lead de estrela brilhante", + "shortname": "Est Brl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Lead de espaço profundo", + "shortname": "Es Pr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Lead de computador de ficção científica", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Lead de robôs cantores", + "shortname": "Rb Cnt Ld", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Lead Estrela do Norte", + "shortname": "EN LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Lead Ruidoso", + "shortname": "Lead de sintetizador (ruidoso)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Lead Square One (sintetizador)", + "shortname": "Lead de sintetizador (onda quadrada 1)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Lead Drill", + "shortname": "Lead de sintetizador (drill)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Lead Funk", + "shortname": "Lead de sintetizador (funk)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Lead Comunicação Astral", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Lead Coro Etéreo", + "shortname": "Cr Etr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Lead Orquestra Espacial", + "shortname": "Orq Esp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Lead Asteroide Melódico", + "shortname": "Ast Mld LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Lead Rover de Marte", + "shortname": "Marte LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Sintetizador de coro", + "shortname": "Sint.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Palhetas Livres", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Acordeão", + "shortname": "Acord.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Gaita", + "shortname": "Harmônica", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Teclados", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Piano de cauda", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Piano Seco", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Piano de Concerto", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Piano de cauda", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Cravo", + "shortname": "Crv.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Celesta", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Órgão", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Órgão Hammond", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Harmônio", + "shortname": "Org. palh.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Órgão Rotativo", + "shortname": "Org. Rot.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Órgão Percussivo", + "shortname": "Org. Perc.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Percussão Afinada", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Tímpanos", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Xilofone", + "shortname": "Xil.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibrafone", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Glockenspiel", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Sinos Tubulares (Carrilhão Orquestral)", + "shortname": "Si. Tub.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Caixa de Música", + "shortname": "Cx. Mús.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Tambores de aço soprano", + "shortname": "Tb. Aç. Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Steel Drum Baixo", + "shortname": "Tb. Aç. Bx.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Percussão", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Bateria", + "shortname": "Bateria", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Bateria", + "shortname": "Bateria", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Bateria orquestral", + "shortname": "Bateria", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Kit de hip-hop", + "shortname": "Kit HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Caixas Marciais", + "shortname": "Cx Mar", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Caixas Marciais", + "shortname": "Cx Mar", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Tambores tenores de marcha", + "shortname": "Tn Mar", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Tambores tenores de marcha", + "shortname": "Tn Mar", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Bumbos de marcha", + "shortname": "Bmb Mar", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Bumbos de marcha", + "shortname": "Bmb Mar", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Pratos Marciais", + "shortname": "Pr Mar", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Pratos Marciais", + "shortname": "Pr Mar", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Bumbo de Concerto", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Gongos orientais", + "shortname": "Ggo.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Tambores taiko nagado japoneses", + "shortname": "Nag", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Blocos de madeira", + "shortname": "BM", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongôs", + "shortname": "Bongô", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Congas", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Claves", + "shortname": "Claves", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Agogô", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Apitos", + "shortname": "Apit.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Carrilhão de vento", + "shortname": "Sinos de vento", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Estalo de dedo", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Palmas", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Prato suspenso", + "shortname": "Prato susp.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Triângulo", + "shortname": "Tri.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Guizos", + "shortname": "Guizos", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Maracas", + "shortname": "Mrcs", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Bumbo acústico", + "shortname": "Bmb.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Toque no aro", + "shortname": "Toq. aro", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Caixa acústica", + "shortname": "Cx.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Tom de chão", + "shortname": "T. chão", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Tom grave", + "shortname": "T. b.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Tom médio-grave", + "shortname": "T. m-b.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Tom médio", + "shortname": "T. m.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Tom médio-agudo", + "shortname": "T. m-ag.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Tom agudo", + "shortname": "T ag.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Chimbal fechado", + "shortname": "Chb fch.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Chimbal aberto", + "shortname": "Chb ab.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Pedal do chimbal", + "shortname": "Chb ped.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Prato de ataque", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Prato de condução", + "shortname": "Pr Rd", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "Prato China", + "shortname": "Pr Ch", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Sino do ride", + "shortname": "Rd Si", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Pandeiro", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Prato splash", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Sino de vaca", + "shortname": "Cowbell", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Cordas dedilhadas", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Violão acústico", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Violão clássico", + "shortname": "Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Violão acústico", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Guitarra elétrica", + "shortname": "Guit. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Guitarra elétrica (limpa)", + "shortname": "Guit. El.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Guitarra elétrica (jazz)", + "shortname": "Guit. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Guitarra elétrica (abafada)", + "shortname": "Guit. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Guitarra com distorção de alta tensão", + "shortname": "Guit. dist.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Guitarra elétrica (crunch)", + "shortname": "Guit. crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Guitarra Elétrica Solo", + "shortname": "Guit. Sol.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Guitarra com distorção", + "shortname": "Guit. dist.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Baixo elétrico moderno", + "shortname": "Bx. mod.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Baixo elétrico vintage", + "shortname": "Bx. vint.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Baixo elétrico", + "shortname": "Bx. El.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Baixo elétrico (palheta)", + "shortname": "Bx. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Baixo Slap", + "shortname": "Bx. Slap", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Koto japonês", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (alaúde japonês)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (alaúde árabe)", + "shortname": "Alaúde", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Bandolim", + "shortname": "Bdl.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Harpa", + "shortname": "Hrp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Sit.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Cordas", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Violino", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Violino", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Violino Solo", + "shortname": "Vln. Sol.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Viola", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Viola", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Violoncelo", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Violoncelo", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Contrabaixo", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Contrabaixo", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Ensemble de Cordas", + "shortname": "Ens. Cdas.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Erhu chinês", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Vozes", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Coro Soprano Mulheres", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Coro Soprano Meninas", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Coro Soprano Meninos", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Coro Contratenor Homens", + "shortname": "Cten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Coro Contralto Mulheres", + "shortname": "Contralto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Coro Contralto (Meninas)", + "shortname": "Contralto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Coro Tenor Sala de Concerto", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Coro Tenor Catedral", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Coro Baixo Sala de Concerto", + "shortname": "Baixo", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Coro Baixo Catedral", + "shortname": "Baixo", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Coro Soprano", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Coro Contralto", + "shortname": "Contralto", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Coro Tenor", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Coro Baixo", + "shortname": "Baixo", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Coro Aahs", + "shortname": "Cor. Aa.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Vozes Ooh", + "shortname": "Vo. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Voz Principal", + "shortname": "Voz principal", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Madeiras", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Flautim", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Flauta orquestral", + "shortname": "Fla.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Flauta tradicional", + "shortname": "Fla.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Flauta Transversal", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Flauta Alto", + "shortname": "Fl. A.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Flauta de Pã", + "shortname": "Fl. Pã.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Flauta Doce", + "shortname": "Rec.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Flauta Doce Contralto em Fá", + "shortname": "Fl. d. contr.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Flauta irlandesa", + "shortname": "Fla. Irl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Oboé", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Corne Inglês", + "shortname": "Cor. Ing.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Clarinete de concerto (Sib)", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Dueto de clarinetes", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Clarinete", + "shortname": "Cl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Clarinete Alto", + "shortname": "Cl. Al.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Clarinete Baixo (Clarone)", + "shortname": "Cl. Baixo", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Clarinete Contrabaixo", + "shortname": "Cl. Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Fagote", + "shortname": "Fgt.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Contrafagote", + "shortname": "Ctfgt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Saxofone Soprano", + "shortname": "Sax. Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Saxofone Alto", + "shortname": "A. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Saxofone Tenor", + "shortname": "Sax. Tn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Saxofone Barítono", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Saxofone Soprano", + "shortname": "Sax. Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Saxofone Alto", + "shortname": "A. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Saxofone Tenor", + "shortname": "Sax. Tn.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Saxofone Barítono", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Gaita de foles", + "shortname": "Gat. Fol.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Ocarina", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (flauta chinesa)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (flauta japonesa)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Especial", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Miados de gato", + "shortname": "Gato", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Coleção Star Wars", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/pt.json b/data/i18n/pt.json new file mode 100644 index 0000000..26fdb8b --- /dev/null +++ b/data/i18n/pt.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Metais", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trompete", + "shortname": "Tp.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trompete", + "shortname": "Tp.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Trombone", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Trombone", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Trompa em Fá", + "shortname": "Tr. em Fá", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Trompa em Fá", + "shortname": "Tr. em Fá", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Trompa em Dó", + "shortname": "Trompa em Dó", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Trompa em Dó", + "shortname": "Trompa em Dó", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Trompa em Ré", + "shortname": "Trompa em Ré", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Trompa em Ré", + "shortname": "Trompa em Ré", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Barítono", + "shortname": "Bar.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Barítono", + "shortname": "Bar.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Barítono (clave de sol)", + "shortname": "Bar. CS", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Barítono (clave de sol)", + "shortname": "Bar. CS", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Bombardino", + "shortname": "Euf.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Seção de Metais", + "shortname": "Naipe de metais", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Instrumentos Eletrônicos", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Baixo de sintetizador com portamento", + "shortname": "Baixo com portamento", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Baixo de sintetizador Reese", + "shortname": "Baixo ressonante", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Baixo de sintetizador dedilhado", + "shortname": "Baixo plocado", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Baixo de sintetizador Underwide", + "shortname": "Uw. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Baixo sintético sólido", + "shortname": "Sd. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Baixo de sintetizador Light", + "shortname": "Lt. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Baixo de sintetizador Airbass", + "shortname": "Ab. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Baixo de sintetizador Evolution", + "shortname": "Ev. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Baixo de sintetizador Weekend", + "shortname": "Wk. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Baixo sintetizado com ataque curto", + "shortname": "Pl. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Baixo sintetizado com phaser", + "shortname": "Ph. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Baixo sintetizado Out", + "shortname": "Out Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Sintetizador lead de sino épico", + "shortname": "Ep Sn SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Sintetizador lead dente de serra com chorus", + "shortname": "DS Ch SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Lead de Sabre de Luz", + "shortname": "Lead sintético Lights", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Sintetizador lead Estrela Brilhante", + "shortname": "Est Br SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Lead de Espaço Profundo", + "shortname": "Esp. Prof. SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Lead de Computador de Ficção Científica", + "shortname": "FC Cp SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Lead de Robôs Cantores", + "shortname": "Rb Cnt. SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Estrela do Norte - Sintetizador Lead", + "shortname": "EN SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Ruidoso - Sintetizador Lead", + "shortname": "Lead sintético ruidoso", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Sintetizador lead Onda Quadrada 1", + "shortname": "Lead sintético (onda quadrada 1)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Drill - Sintetizador Lead", + "shortname": "Lead sintético drill", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Funky - Sintetizador Lead", + "shortname": "Lead sintético funk", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Comunicação Astral - Sintetizador Lead", + "shortname": "Ast. SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Coro Onírico - Sintetizador Lead", + "shortname": "Cr Onír. SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Orquestra Espacial - Sintetizador Lead", + "shortname": "Orq. Esp. SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Asteroide Melódico - Sintetizador Lead", + "shortname": "Ast. Mel. SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Rover de Marte - Sintetizador Lead", + "shortname": "Marte SL", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Sintetizador de coro", + "shortname": "Sint.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Palheta livre", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Acordeão", + "shortname": "Ac.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Harmónica", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Teclados", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Piano de cauda", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Piano seco", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Piano de concerto", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Piano de cauda", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Cravo", + "shortname": "Sinos de mão", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Celesta", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Órgão", + "shortname": "Órg.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Órgão Hammond", + "shortname": "Órg. Hm.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Órgão de Palhetas", + "shortname": "Harmónio", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Órgão com Leslie", + "shortname": "Órg. Rot.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Orgão Percussivo", + "shortname": "Órg. Perc.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Percussão com altura definida", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Tímpanos", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Xilofone", + "shortname": "Xil.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibrafone", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Glockenspiel", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Sinos Tubulares (Carrilhão Orquestral)", + "shortname": "Sinos tubulares", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Caixa de música", + "shortname": "C. mús.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Tambores de aço soprano", + "shortname": "Tb. Aç. S.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Tambores de aço baixo", + "shortname": "Tb. Aç. B.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Percussão", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Kit de bateria", + "shortname": "Bateria", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Kit de bateria", + "shortname": "Bateria", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Bateria Orquestral", + "shortname": "Bateria", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Kit de Hip-Hop", + "shortname": "Kit HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Caixas marciais", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Caixas marciais", + "shortname": "Mch Sn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Tambores tenores de marcha", + "shortname": "Tn. Marcha", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Tambores tenores de marcha", + "shortname": "Tn. Marcha", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Bumbos de marcha", + "shortname": "Mch Bm", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Bumbos de marcha", + "shortname": "Mch Bm", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Pratos marciais", + "shortname": "Mch Pr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Pratos marciais", + "shortname": "Mch Pr", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Bumbo de Concerto", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Gongos orientais", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Tambores taiko nagado japoneses", + "shortname": "Nag", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Blocos de madeira", + "shortname": "BM", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongôs", + "shortname": "Bongô", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Congas", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Claves", + "shortname": "Claves", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Agogô", + "shortname": "Agogô", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Apitos", + "shortname": "Api.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Sinos de vento", + "shortname": "Carr. de vento", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Estalo de dedos", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Palmas", + "shortname": "Plm", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Prato suspenso", + "shortname": "Prato suspenso", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Triângulo", + "shortname": "Tri.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Guizos", + "shortname": "Gzs", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Maracas", + "shortname": "Mrcs", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Bumbo acústico", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Toque no aro", + "shortname": "Sd Stk", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Caixa acústica", + "shortname": "Cx", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Tom de chão", + "shortname": "Fl Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Tom grave", + "shortname": "L Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Tom médio-grave", + "shortname": "LM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Tom médio", + "shortname": "M Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Tom médio-agudo", + "shortname": "HM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Tom agudo", + "shortname": "H Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Chimbal fechado", + "shortname": "Cl HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Chimbal aberto", + "shortname": "Op HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Chimbal com pedal", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Prato crash", + "shortname": "Prato crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Prato ride", + "shortname": "Rd Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "Prato China", + "shortname": "Ch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Sino do ride", + "shortname": "Rd Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Pandeireta", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Prato Splash", + "shortname": "Prato splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Sino de vaca", + "shortname": "Cowbell", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Cordas dedilhadas", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Guitarra Acústica", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Guitarra Clássica", + "shortname": "Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Guitarra Acústica", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Guitarra Elétrica", + "shortname": "Guit. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Guitarra Elétrica (som limpo)", + "shortname": "Guit. El.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Guitarra Elétrica (jazz)", + "shortname": "Guit. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Guitarra Elétrica (abafada)", + "shortname": "Guit. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Guitarra com distorção de alta voltagem", + "shortname": "Dist. G.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Guitarra elétrica com crunch", + "shortname": "G. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Guitarra elétrica solo", + "shortname": "G. Solo", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Guitarra com distorção", + "shortname": "Guit. dist.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Baixo elétrico moderno", + "shortname": "Baixo Moog", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Baixo elétrico vintage", + "shortname": "Vin. Bx.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Baixo Elétrico", + "shortname": "Bx. El.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Baixo Elétrico (com palheta)", + "shortname": "Bx. El.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Baixo slap", + "shortname": "Sl. Baixo", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Koto japonês", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (alaúde japonês)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (alaúde árabe)", + "shortname": "Oud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Bandolim", + "shortname": "Mod.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Harpa", + "shortname": "Hrp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Sit.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Cordas", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Violino", + "shortname": "Vno.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Violino", + "shortname": "Vno.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Violino solo", + "shortname": "Vno. Solo", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Viola", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Viola", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Violoncelo", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Violoncelo", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Contrabaixo", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Contrabaixo", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Conjunto de cordas", + "shortname": "Conj. cord.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Erhu chinês", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Vozes", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Coro de sopranos (mulheres)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Coro de sopranos (meninas)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Coro de sopranos (meninos)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Coro de contratenores (homens)", + "shortname": "Cnt.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Coro de contraltos (mulheres)", + "shortname": "Contralto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Coro de contraltos (meninas)", + "shortname": "Contralto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Coro de tenores (sala)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Coro de tenores (catedral)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Coro de baixos (sala)", + "shortname": "Baixo", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Coro de baixos (catedral)", + "shortname": "Baixo", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Coro de sopranos", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Coro de contraltos", + "shortname": "Contralto", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Coro de tenores", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Coro de baixos", + "shortname": "Baixo", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Coro em \"Ah\"", + "shortname": "Cor. Ah.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Vozes \"Oo\"", + "shortname": "Voz Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Voz principal", + "shortname": "Voz solo", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Madeiras", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Flautim", + "shortname": "Fltm.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Flauta orquestral", + "shortname": "Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Flauta tradicional", + "shortname": "Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Flauta", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Flauta Contralto", + "shortname": "Fl. A.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Flauta de Pã", + "shortname": "Pno. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Flauta de bisel", + "shortname": "Fl. doce", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Flauta doce contralto em Fá", + "shortname": "Fl. doce contr.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Flauta irlandesa (tin whistle)", + "shortname": "Flauta irlandesa", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Oboé", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Corne inglês", + "shortname": "Cor. ingl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Clarinete de concerto (Sib)", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Dueto de clarinetes", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Clarinete", + "shortname": "Cl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Clarinete Alto", + "shortname": "Al. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Clarinete Baixo", + "shortname": "Cl. B.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Clarinete Contrabaixo", + "shortname": "Cl. Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Fagote", + "shortname": "Fg.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Contrafagote", + "shortname": "Contrafagote", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Saxofone Soprano", + "shortname": "Sax. S.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Saxofone Alto", + "shortname": "Sax. A.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Saxofone Tenor", + "shortname": "Sax. T.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Saxofone Barítono", + "shortname": "Sax. Bar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Saxofone Soprano", + "shortname": "Sax. S.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Saxofone Alto", + "shortname": "Sax. A.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Saxofone Tenor", + "shortname": "Sax. T.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Saxofone Barítono", + "shortname": "Sax. Bar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Gaita de foles", + "shortname": "G. foles", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Ocarina", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (flauta chinesa)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (flauta japonesa)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Especial", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Miados de gato", + "shortname": "Gato", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Kit Star Wars", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/ro.json b/data/i18n/ro.json new file mode 100644 index 0000000..609aec1 --- /dev/null +++ b/data/i18n/ro.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Instrumente de alamă", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trompetă", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trompetă", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Trombon", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Trombon", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Corn în Fa", + "shortname": "Cn. Fa", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Corn în Fa", + "shortname": "Cn. Fa", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Corn în Do", + "shortname": "Corn în Do", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Corn în Do", + "shortname": "Corn în Do", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Corn în Re", + "shortname": "Corn în Re", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Corn în Re", + "shortname": "Corn în Re", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Bariton", + "shortname": "Cn. Bar.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Bariton", + "shortname": "Cn. Bar.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Bariton (cheia Sol)", + "shortname": "Bar. Ch. Sol", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Bariton (cheia Sol)", + "shortname": "Bar. Ch. Sol", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Eufoniu", + "shortname": "Euf.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tubă", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tubă", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Secțiune de alamă", + "shortname": "Secțiune de alămuri", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Instrumente electronice", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Bas de sintetizator cu portamento", + "shortname": "Bas portamento", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Bas de sintetizator Reese", + "shortname": "Bas rezonant", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Bas de sintetizator ciupit", + "shortname": "Bas ciupit", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Bas de sintetizator Underwide", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Bas sintetic solid", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Bas de sintetizator ușor", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Bas de sintetizator Airbass", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Bas de sintetizator Evolution", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Bas de sintetizator Weekend", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Bas de sintetizator cu atac scurt", + "shortname": "Bs. Sin. Pl.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Bas de sintetizator cu fază", + "shortname": "Bs. Sin. Ph.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Bas de sintetizator Out", + "shortname": "Bas Out", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Sintetizator lead Epic Bell", + "shortname": "Epc Bl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Sintetizator lead Saw Chorus", + "shortname": "Sw Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Sintetizator lead Lightsaber", + "shortname": "Lumini (lead de sinteză)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Sintetizator lead Bright Star", + "shortname": "Brt S LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Sintetizator lead Deep Space", + "shortname": "Dp Sp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Sintetizator lead Sci-Fi Computer", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Sintetizator lead Singing Robots", + "shortname": "Sg Rb LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Sintetizator lead Steaua Nordului", + "shortname": "SN LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Sintetizator lead zgomotos", + "shortname": "Zgomotos (lead de sinteză)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Sintetizator lead Square One", + "shortname": "Pătrat 1 (lead de sinteză)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Sintetizator lead de drill", + "shortname": "Drill (lead de sinteză)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Sintetizator lead de funk", + "shortname": "Funk (lead de sinteză)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Sintetizator lead Comunicare astrală", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Sintetizator lead Cor de vis", + "shortname": "Cor de vis LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Sintetizator lead Orchestră spațială", + "shortname": "Orch Sp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Sintetizator lead Asteroid melodic", + "shortname": "Ast Mld LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Sintetizator lead Rover marțian", + "shortname": "Marte LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Sintetizator de cor", + "shortname": "Sint.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Instrumente cu ancii libere", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Acordeon", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Muzicuță", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Instrumente cu claviatură", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Pian cu coadă", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Pian cu atac strâns", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Pian de Concert", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Pian cu coadă", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Pian", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Clavecin", + "shortname": "Clv.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Celestă", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Orgă", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Orgă Hammond", + "shortname": "Org. Hm.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Orgă cu ancii", + "shortname": "Org. Anc.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Orgă Rotativă", + "shortname": "Org. Rot.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Orgă Percusivă", + "shortname": "Org. Perc.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Percuție afinată", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Timpane", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Xilofon", + "shortname": "Xil.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibrafon", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Glockenspiel", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimbă", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Clopote tubulare (clopote orchestrale)", + "shortname": "Clop. tub.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Cutie Muzicală", + "shortname": "C. Muz.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Tobe de oțel sopran", + "shortname": "S. St. Dr.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Tobe de oțel bas", + "shortname": "Tb. Oț. B.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Percuție", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Set de tobe", + "shortname": "Tobe", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Set de tobe", + "shortname": "Tobe", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Set de tobe orchestrale", + "shortname": "Tobe", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Set Hip-Hop", + "shortname": "HH Set", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Tobe mici de marș", + "shortname": "TM marș", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Tobe mici de marș", + "shortname": "TM marș", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Tobe Tenor de Marș", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Tobe Tenor de Marș", + "shortname": "Mch Tn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Tobe mari de marș", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Tobe mari de marș", + "shortname": "Mch Ba", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Cinele de marș", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Cinele de marș", + "shortname": "Mch Cy", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Tobă mare de concert", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Gonguri orientale", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Tobe taiko Nagado japoneze", + "shortname": "Nag", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Blocuri de lemn", + "shortname": "WB", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongos", + "shortname": "Bongo", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Congas", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Claves", + "shortname": "Claves", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Clopote Agogo", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Fluiere", + "shortname": "Flu.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Clopoței de Vânt", + "shortname": "Clopoței de vânt", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Pocnitură din degete", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Bătaie din palme", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Cinel suspendat", + "shortname": "Cinel susp.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Trianglu", + "shortname": "Trg.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Clopoței de Crăciun", + "shortname": "Clp Cr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Maracas", + "shortname": "Mrcs.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Tobă mare acustică", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Lovitură pe cerc", + "shortname": "Sd Stk", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Tobă mică acustică", + "shortname": "Snr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Tom de podea", + "shortname": "Fl Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Tom jos", + "shortname": "L Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Tom mediu-grav", + "shortname": "LM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Tom mediu", + "shortname": "M Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Tom mediu-înalt", + "shortname": "HM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Tom înalt", + "shortname": "H Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Charleston închis", + "shortname": "Cl HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Charleston deschis", + "shortname": "Op HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Charleston la pedală", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Cinel crash", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Cinel ride", + "shortname": "Rd Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "Cinel China", + "shortname": "Ch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Clopot de ride", + "shortname": "Rd Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Tamburină", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Cinel Splash", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Clopot de vacă", + "shortname": "Clopot de vacă", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Coarde ciupite", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Chitară acustică", + "shortname": "Chit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Chitară clasică", + "shortname": "Chit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Chitară acustică", + "shortname": "Chit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Chitară electrică", + "shortname": "Chit. el.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Chitară electrică (curat)", + "shortname": "Chit. el.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Chitară electrică (jazz)", + "shortname": "Chit. el.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Chitară electrică (amortizată)", + "shortname": "Chit. el.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Chitară cu distorsiune de înaltă tensiune", + "shortname": "Chitară distorsionată", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Chitară electrică crunch", + "shortname": "Ch. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Chitară electrică lead", + "shortname": "Ch. Lead", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Chitară electrică (distors)", + "shortname": "Chit. dist.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Chitară bas electrică modernă", + "shortname": "B. mod.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Chitară bas electrică vintage", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Bas electric", + "shortname": "Bas el.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Bas electric (cu pană)", + "shortname": "Bas el.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Chitară bas slap", + "shortname": "Sl. Bas", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Koto japonez", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (lăută japoneză)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (lăută arabă)", + "shortname": "Oud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandolină", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Harpă", + "shortname": "Hrp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Coarde cu arcuș", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Vioară", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Vioară", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Vioară principală", + "shortname": "Vln. Pr.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Violă", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Violă", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Violoncel", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Violoncel", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Contrabas", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Contrabas", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Ansamblu de coarde", + "shortname": "Ans. de coarde", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Erhu chinezesc", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Vocale", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Cor Sopran Femei", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Cor Sopran Fete", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Cor Sopran Băieți", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Cor Contratenor Bărbați", + "shortname": "Cnt.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Cor Alto Femei", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Cor Alto Fete", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Cor Tenor Sală", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Cor Tenor Catedrală", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Cor Bas Sală", + "shortname": "Bas", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Cor Bas Catedrală", + "shortname": "Bas", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Cor de soprane", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Cor Alto", + "shortname": "Alto", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Cor Tenor", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Cor Bas", + "shortname": "Bas", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Cor Ah-uri", + "shortname": "Cor. Ah.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Voce Oo-uri", + "shortname": "Vo. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Voce Principală", + "shortname": "Voce lead", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Instrumente de suflat din lemn", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Piculină", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Flaut Orchestral", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Flaut Tradițional", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Flaut", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Flaut Alto", + "shortname": "Fl. A.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Nai", + "shortname": "Nai", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Flaut dulce", + "shortname": "Flaut dulce", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Fluier Alto în Fa", + "shortname": "Fluier Alto", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Fluier irlandez", + "shortname": "Fluier irlandez", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Oboi", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Corn Englez", + "shortname": "Cn. En.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Clarinet de concert (Si♭)", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Duet de clarinete", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Clarinet", + "shortname": "Cl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Clarinet Alto", + "shortname": "Cl. Al.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Clarinet bas", + "shortname": "Cl. B.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Clarinet contrabas", + "shortname": "Cl. Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Fagot", + "shortname": "Fgt.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Contrafagot", + "shortname": "Contrafagot", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Saxofon sopran", + "shortname": "Sax. S.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Saxofon Alto", + "shortname": "Sax. A.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Saxofon Tenor", + "shortname": "Sax. T.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Saxofon Bariton", + "shortname": "Sax. Bar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Saxofon sopran", + "shortname": "Sax. S.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Saxofon Alto", + "shortname": "Sax. A.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Saxofon Tenor", + "shortname": "Sax. T.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Saxofon Bariton", + "shortname": "Sax. Bar.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Cimpoi", + "shortname": "Cmp.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Ocarina", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (flaut chinezesc)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (flaut japonez)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Special", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Mieunături de pisică", + "shortname": "Pisică", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Set Star Wars", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/ru.json b/data/i18n/ru.json new file mode 100644 index 0000000..d19dfac --- /dev/null +++ b/data/i18n/ru.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Медные духовые", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Труба", + "shortname": "Тр.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Труба", + "shortname": "Тр.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Тромбон", + "shortname": "Трб.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Тромбон", + "shortname": "Трб.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Валторна в строе фа", + "shortname": "F Валт.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Валторна в строе фа", + "shortname": "F Валт.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Валторна в строе до", + "shortname": "Валторна (до)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Валторна в строе до", + "shortname": "Валторна (до)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Валторна в строе ре", + "shortname": "Валторна (ре)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Валторна в строе ре", + "shortname": "Валторна (ре)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Баритон-горн", + "shortname": "Бар.-горн", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Баритон-горн", + "shortname": "Бар.-горн", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Баритон (скрипичный ключ)", + "shortname": "Бар. (СК)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Баритон (скрипичный ключ)", + "shortname": "Бар. (СК)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Эуфониум", + "shortname": "Эуф.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Туба", + "shortname": "Тба.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Туба", + "shortname": "Тба.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Секция медных", + "shortname": "Секция медных духовых", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Электронные инструменты", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Бас‑синтезатор с портаменто", + "shortname": "Порт. бас", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Бас‑синтезатор Reese", + "shortname": "Рез. бас", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Щипковый бас‑синтезатор", + "shortname": "Плук-бас", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Бас‑синтезатор Underwide", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Плотный синт-бас", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Лёгкий бас‑синтезатор", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Бас‑синтезатор Airbass", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Бас‑синтезатор Evolution", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Бас‑синтезатор Weekend", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Щипковый синтезаторный бас", + "shortname": "Пл. Бс.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Фазовый синтезаторный бас", + "shortname": "Фаз. бс.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Аут синтезаторный бас", + "shortname": "Аут Бс.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Эпический колокольный лид-синтезатор", + "shortname": "Эпк Кл ЛС", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Пилообразный лид-синтезатор с хорусом", + "shortname": "Пил Хрс ЛС", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Лид-синтезатор светового меча", + "shortname": "Лёгкий (лид)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Лид-синтезатор «Яркая звезда»", + "shortname": "Ярк Зв ЛС", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Лид-синтезатор «Глубокий космос»", + "shortname": "ГК ЛС", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Лид-синтезатор научно-фантастического компьютера", + "shortname": "SF Кп ЛС", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Лид-синтезатор поющих роботов", + "shortname": "ПР ЛС", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Лид‑синтезатор Полярная звезда", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Шумный лид‑синтезатор", + "shortname": "Шумный (лид)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Лид‑синтезатор Square One", + "shortname": "Квадрат 1 (лид)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Лид‑синтезатор Drill", + "shortname": "Дрилл (лид)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Фанковый лид‑синтезатор", + "shortname": "Фанк (лид)", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Лид‑синтезатор Astral Communication", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Лид‑синтезатор Мечтательный хор", + "shortname": "Dr Chr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Лид‑синтезатор Космический оркестр", + "shortname": "Sp Orch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Лид‑синтезатор Мелодичный астероид", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Лид‑синтезатор Марсоход", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Синтезатор хора", + "shortname": "Синт.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Свободноязычковые", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Аккордеон", + "shortname": "Акк.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Губная гармоника", + "shortname": "Гарм.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Клавишные", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Рояль", + "shortname": "Фп.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Плотное фортепиано", + "shortname": "Фп.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Концертный рояль", + "shortname": "Фп.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Рояль", + "shortname": "Фп.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Фортепиано", + "shortname": "Фп.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Клавесин", + "shortname": "Хичирики", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Челеста", + "shortname": "Чел.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Орган", + "shortname": "Ор.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Орган Хаммонда", + "shortname": "Ор. Х.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Язычковый орган", + "shortname": "Яз. ор.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Ротари-орган", + "shortname": "Рт. ор.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Перкуссивный орган", + "shortname": "Пк. ор.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Ударные с определенной высотой звука", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Литавры", + "shortname": "Лит.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Ксилофон", + "shortname": "Ксил.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Вибрафон", + "shortname": "Виб.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Глокеншпиль", + "shortname": "Глк.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Маримба", + "shortname": "Мрм.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Трубчатые колокола (Оркестровые колокола)", + "shortname": "Тр. кол.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Музыкальная шкатулка", + "shortname": "Муз. шк.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Сопрановые стальные барабаны", + "shortname": "С. ст. б.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Басовый стил-драмс", + "shortname": "Б. ст. уд.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Ударные", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Ударная установка", + "shortname": "Ударные", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Ударная установка", + "shortname": "Ударные", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Оркестровая ударная установка", + "shortname": "Ударные", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Хип-хоп-набор", + "shortname": "ХХ набор", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Маршевые малые барабаны", + "shortname": "Мч Сн", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Маршевые малые барабаны", + "shortname": "Мч Сн", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Маршевые тенорные барабаны", + "shortname": "Маршевый тенор", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Маршевые тенорные барабаны", + "shortname": "Маршевый тенор", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Маршевые бас-барабаны", + "shortname": "Маршевый баритон", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Маршевые бас-барабаны", + "shortname": "Маршевый баритон", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Маршевые тарелки", + "shortname": "Мч Тр", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Маршевые тарелки", + "shortname": "Мч Тр", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Концертный бас-барабан", + "shortname": "КББ", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Восточные гонги", + "shortname": "Гнг.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Японские барабаны нагадо-тайко", + "shortname": "Нагадо", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Деревянные блоки", + "shortname": "ДБ", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Бонго", + "shortname": "Бонго", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Конги", + "shortname": "Конг.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Клаве", + "shortname": "Клаве", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Колокольчики агого", + "shortname": "Аго.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Свистки", + "shortname": "Свист.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Ветряные колокольчики", + "shortname": "Ветр. колокольчики", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Щелчок пальцами", + "shortname": "Фгр.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Хлопок в ладоши", + "shortname": "Клп", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Подвешенная тарелка", + "shortname": "Подв. тар.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Треугольник", + "shortname": "Треуг.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Бубенцы", + "shortname": "Буб.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Маракасы", + "shortname": "Мрк.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Акустический бас-барабан", + "shortname": "Бас-б.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Удар по ободу", + "shortname": "Обод", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Акустический малый барабан", + "shortname": "Малый барабан", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Напольный том", + "shortname": "Напольный том", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Низкий том", + "shortname": "Низкий том", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Том средне-низкий", + "shortname": "Ср.-низк. том", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Средний том", + "shortname": "Средний том", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Том средне-высокий", + "shortname": "Ср.-выс. том", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Высокий том", + "shortname": "Высокий том", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Закрытый хай-хэт", + "shortname": "Закр. ХХ", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Открытый хай-хэт", + "shortname": "Откр. ХХ", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Хай-хэт педалью", + "shortname": "Пед. ХХ", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Крэш-тарелка", + "shortname": "Крэш", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Райд-тарелка", + "shortname": "Райд", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "Чайна-тарелка", + "shortname": "Чайна", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Белл райда", + "shortname": "Белл райда", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Тамбурин", + "shortname": "Тбр", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Сплэш-тарелка", + "shortname": "Сплэш", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Ковбелл", + "shortname": "Каубелл", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Щипковые", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Акустическая гитара", + "shortname": "Гит.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Классическая гитара", + "shortname": "Гит.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Акустическая гитара", + "shortname": "Гит.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Укулеле", + "shortname": "Ук.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Укулеле", + "shortname": "Ук.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Электрогитара", + "shortname": "Эл. гит.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Электрогитара (чистая)", + "shortname": "Эл. гит.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Электрогитара (джаз)", + "shortname": "Эл. гит.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Электрогитара (приглушённая)", + "shortname": "Эл. гит.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Мощная дисторшн-гитара", + "shortname": "Дист. Г.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Электрогитара (кранч)", + "shortname": "Г. Крч.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Электрогитара (соло)", + "shortname": "Г. соло", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Электрогитара (дисторшн)", + "shortname": "Дист. гит.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Современный электрический бас", + "shortname": "Совр. Б.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Винтажный электрический бас", + "shortname": "Винт. Б.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Электрическая бас-гитара", + "shortname": "Эл. б.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Электрическая бас-гитара (медиатор)", + "shortname": "Эл. бас", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Слэп-бас", + "shortname": "Сл. бас", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Японский кото", + "shortname": "Кото", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Сямисэн (японская лютня)", + "shortname": "Сям.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Уд (арабская лютня)", + "shortname": "Уд", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Банджо", + "shortname": "Бандж.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Мандолина", + "shortname": "Совр.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Арфа", + "shortname": "Арф.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Ситар", + "shortname": "Сит.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Струнно-смычковые", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Скрипка", + "shortname": "Скр.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Скрипка", + "shortname": "Скр.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Скрипка соло", + "shortname": "Скр. соло", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Альт", + "shortname": "Алт.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Альт", + "shortname": "Алт.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Виолончель", + "shortname": "Влч.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Виолончель", + "shortname": "Влч.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Контрабас", + "shortname": "Кб.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Контрабас", + "shortname": "Кб.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Струнный ансамбль", + "shortname": "Стр. анс.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Китайская эрху", + "shortname": "Эр.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Вокал", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Женский хор сопрано", + "shortname": "Сопр.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Хор сопрано (девочки)", + "shortname": "Сопр.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Хор сопрано (мальчики)", + "shortname": "Сопр.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Хор контратеноров (мужчины)", + "shortname": "Корн.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Хор альтов (женщины)", + "shortname": "Альт", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Хор альтов (девочки)", + "shortname": "Альт", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Хор теноров (зал)", + "shortname": "Тен.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Хор теноров (собор)", + "shortname": "Тен.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Хор басов (зал)", + "shortname": "Бас", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Хор басов (собор)", + "shortname": "Бас", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Хор сопрано", + "shortname": "Сопр.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Хор альтов", + "shortname": "Альт", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Хор теноров", + "shortname": "Тен.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Хор басов", + "shortname": "Бас", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Хор «Аа»", + "shortname": "Хор \"Аа\"", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Голоса «У-у»", + "shortname": "Гол. «У-у»", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Ведущий голос", + "shortname": "Сол. вок.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Казу", + "shortname": "Каз.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Деревянные духовые", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Флейта-пикколо", + "shortname": "Фл.-пик.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Оркестровая Флейта", + "shortname": "Фл.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Традиционная Флейта", + "shortname": "Фл.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Флейта", + "shortname": "Фл.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Альтовая флейта", + "shortname": "А. фл.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Пан-флейта", + "shortname": "Пан. фл.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Блокфлейта", + "shortname": "Блокфл.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Альтовая блокфлейта в фа", + "shortname": "Альтовая блокфлейта", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Тин-вистл", + "shortname": "Ирл. свир.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Гобой", + "shortname": "Гоб.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Английский рожок", + "shortname": "Англ. р.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Концертный Кларнет (Bb)", + "shortname": "Кл.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Дуэт Кларнетов", + "shortname": "Кл.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Кларнет", + "shortname": "Кл.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Альтовый кларнет", + "shortname": "Альт. кл.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Бас-кларнет", + "shortname": "Б. кл.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Контрабас-кларнет", + "shortname": "Кб. кл.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Фагот", + "shortname": "Фаг.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Контрафагот", + "shortname": "Контрфаг.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Сопрано-саксофон", + "shortname": "Сопр. сакс.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Альт-саксофон", + "shortname": "Альт. сакс.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Тенор-саксофон", + "shortname": "Тен. сакс.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Баритон-саксофон", + "shortname": "Бар. сакс.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Сопрано-саксофон", + "shortname": "Сопр. сакс.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Альт-саксофон", + "shortname": "Альт. сакс.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Тенор-саксофон", + "shortname": "Тен. сакс.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Баритон-саксофон", + "shortname": "Бар. сакс.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Волынка", + "shortname": "Вол.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Окарина", + "shortname": "Окар.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Дицзы (китайская флейта)", + "shortname": "Дицзы", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Сякухати (японская флейта)", + "shortname": "Сяк.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Особые", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Кошачье мяуканье", + "shortname": "Кошка", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Набор Star Wars", + "shortname": "Зв. В.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/sv.json b/data/i18n/sv.json new file mode 100644 index 0000000..b86ca98 --- /dev/null +++ b/data/i18n/sv.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Bleckblås", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trumpet", + "shortname": "Trp.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trumpet", + "shortname": "Trp.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Trombon", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Trombon", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Horn i F", + "shortname": "F Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Horn i F", + "shortname": "F Hn.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Horn i C", + "shortname": "Valthorn i C", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Horn i C", + "shortname": "Valthorn i C", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Horn i D", + "shortname": "Valthorn i D", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Horn i D", + "shortname": "Valthorn i D", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Baritonhorn", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Baritonhorn", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Bariton (G-klav)", + "shortname": "Bar. G-klav", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Bariton (G-klav)", + "shortname": "Bar. G-klav", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Eufonium", + "shortname": "Euf.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Bleckblåssektion", + "shortname": "Brassektion", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Elektroniska instrument", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Syntbas med portamento", + "shortname": "Portamentobas", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Reese-syntbas", + "shortname": "Resonansbas", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Plockad syntbas", + "shortname": "Plockad bas", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Underwide syntbas", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Solid syntbas", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Lätt syntbas", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Airbass syntbas", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Evolution-syntbas", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Weekend-syntbas", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Plucky syntbas", + "shortname": "Pl. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Fas-syntbas", + "shortname": "Ph. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Out-syntbas", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Episk klockklang lead-synt", + "shortname": "Epk Klk LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Sågtand-chorus lead-synt", + "shortname": "Sg Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Ljussabel lead-synt", + "shortname": "Ljus LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Lysande stjärna lead-synt", + "shortname": "Lys Stj LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Djupa rymden lead-synt", + "shortname": "Dj Rym LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Sci-fi-dator lead-synt", + "shortname": "SF Dt LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Sjungande robot lead-synt", + "shortname": "Sj Rb LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Polstjärna lead-synt", + "shortname": "PS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Brusig lead-synt", + "shortname": "Brusig LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Square One leadsynt", + "shortname": "Fyrkantsvåg 1 LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Drill leadsynt", + "shortname": "Drl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Funkig leadsynt", + "shortname": "Funk LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Astral Communication leadsynt", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Drömsk kör lead-synt", + "shortname": "Dr Kör LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Rymdorkester lead-synt", + "shortname": "Rymd Ork LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Melodisk asteroid lead-synt", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Mars-rover lead-synt", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Körsyntetisator", + "shortname": "Synt.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Fria rörbladsinstrument", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Dragspel", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Munspel", + "shortname": "Munsp.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Klaverinstrument", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Flygel", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Tajt piano", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Konsertflygel", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Flygel", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Piano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Cembalo", + "shortname": "Hch.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Celesta", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Orgel", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Hammondorgel", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Harmonium", + "shortname": "Harm.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Orgel med roterande högtalare", + "shortname": "Rot. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Perkussiv orgel", + "shortname": "Perc. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Stämt slagverk", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Pukor", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Xylofon", + "shortname": "Xyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibrafon", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Klockspel", + "shortname": "Klsp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Rörklockor (orkesterklockor)", + "shortname": "Rörkl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Speldosa", + "shortname": "Spd.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Sopran-ståltrummor", + "shortname": "S. ståltr.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Bas-ståltrummor", + "shortname": "B. ståltr.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Slagverk", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Trumset", + "shortname": "Trummor", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Trumset", + "shortname": "Trummor", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Orkestertrumset", + "shortname": "Trummor", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Hiphopset", + "shortname": "HH-set", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Marschvirveltrummor", + "shortname": "Marsch Virv.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Marschvirveltrummor", + "shortname": "Marsch Virv.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Marschtenortrummor", + "shortname": "Marsch Ten.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Marschtenortrummor", + "shortname": "Marsch Ten.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Marschbastrummor", + "shortname": "Marsch-BT", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Marschbastrummor", + "shortname": "Marsch-BT", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Marschcymbaler", + "shortname": "Marschcymbaler", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Marschcymbaler", + "shortname": "Marschcymbaler", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Konsertbastrumma", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Orientaliska gongar", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Japanska nagado-taiko-trummor", + "shortname": "Nag", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Träblock", + "shortname": "TB", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongos", + "shortname": "Bongo", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Congas", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Claves", + "shortname": "Claves", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Agogo-klockor", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Visselpipor", + "shortname": "Viss.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Vindspel", + "shortname": "Vindsp.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Fingerknäpp", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Handklapp", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Hängcymbal", + "shortname": "Hängcym.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Triangel", + "shortname": "Tri.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Bjällerkrans", + "shortname": "Bjä Kr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Maracas", + "shortname": "Mrcs", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Akustisk bastrumma", + "shortname": "Btr.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Kantslag", + "shortname": "Kantsl.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Akustisk virveltrumma", + "shortname": "Virv.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Golvtom", + "shortname": "Glv Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Låg tom", + "shortname": "L Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Mellantom (låg)", + "shortname": "LM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Mellantom", + "shortname": "M Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Mellantom (hög)", + "shortname": "HM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Hög tom", + "shortname": "H Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Stängd hi-hat", + "shortname": "St HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Öppen hi-hat", + "shortname": "Öp HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Hi-hat med pedal", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Crashcymbal", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Ridecymbal", + "shortname": "Rd Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "Kinasymbal", + "shortname": "Ch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Ride-klocka", + "shortname": "Rd Kl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Tamburin", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Splashcymbal", + "shortname": "Splash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "Koskälla", + "shortname": "Koskälla", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Knäppinstrument", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Akustisk gitarr", + "shortname": "Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Klassisk gitarr", + "shortname": "Git.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Akustisk gitarr", + "shortname": "Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Elgitarr", + "shortname": "Elgit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Elgitarr (ren)", + "shortname": "Elgit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Elgitarr (jazz)", + "shortname": "Elgit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Elgitarr (dämpad)", + "shortname": "Elgit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Högspänningsdistad elgitarr", + "shortname": "Dist. git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Elgitarr (crunch)", + "shortname": "Git. crunch", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Elgitarr (lead)", + "shortname": "Git. lead", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Distad gitarr", + "shortname": "Dist. git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Modern elbas", + "shortname": "Mod. bas", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Vintage-elbas", + "shortname": "Vint. bas", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Elbas", + "shortname": "Elb.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Elbas (plektrum)", + "shortname": "Elbas", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Slapbas", + "shortname": "Slapbas", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Japansk koto", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (japansk luta)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Oud (arabisk luta)", + "shortname": "Oud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandolin", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Harpa", + "shortname": "Hrp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Stråkar", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Violin", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Violin", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Fiol (lead)", + "shortname": "Vl. Ld.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Altfiol", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Altfiol", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Cello", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Cello", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Kontrabas", + "shortname": "Kb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Kontrabas", + "shortname": "Kb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Stråkensemble", + "shortname": "Str. Ens.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Kinesisk erhu", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Sång", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Körsopran (kvinnor)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Körsopran (flickor)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Körsopran (pojkar)", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Körkontratenor (män)", + "shortname": "Ktr.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Köralt (kvinnor)", + "shortname": "Alt", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Köralt (flickor)", + "shortname": "Alt", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Körtenor (konsertsal)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Körtenor (katedral)", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Körbas (konsertsal)", + "shortname": "Bas", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Körbas (katedral)", + "shortname": "Bas", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Körsopran", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Kör alt", + "shortname": "Alt", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Körtenor", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Kör bas", + "shortname": "Bas", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Kör aah", + "shortname": "Kör Aa.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Röst (”ooh”)", + "shortname": "Röst Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Leadsång", + "shortname": "Vokal lead", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Träblås", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Piccolaflöjt", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Orkesterflöjt", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Traditionell flöjt", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Tvärflöjt", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Altflöjt", + "shortname": "A. fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Panflöjt", + "shortname": "Pn. fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Blockflöjt", + "shortname": "Blockfl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Altblockflöjt i F", + "shortname": "Altblockfl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "Tin whistle", + "shortname": "Tin wh.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Oboe", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "Engelskt horn", + "shortname": "Eng. hn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Konsertklarinett (Bb)", + "shortname": "Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Klarinettduett", + "shortname": "Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Klarinett", + "shortname": "Kl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Altklarinett", + "shortname": "Altkl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Basklarinett", + "shortname": "B. kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Kontrabasklarinett", + "shortname": "Kb. kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Fagott", + "shortname": "Fag.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Kontrafagott", + "shortname": "Kontrafagott", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Sopransaxofon", + "shortname": "S. sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Altsaxofon", + "shortname": "A. sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Tenorsaxofon", + "shortname": "T. sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Barytonsaxofon", + "shortname": "Bar. sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Sopransaxofon", + "shortname": "S. sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Altsaxofon", + "shortname": "A. sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Tenorsaxofon", + "shortname": "T. sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Barytonsaxofon", + "shortname": "Bar. sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Säckpipa", + "shortname": "Säckp.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Okarina", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (kinesisk flöjt)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (japansk flöjt)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Special", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Kattjamanden", + "shortname": "Katt", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Star Wars-set", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/tr.json b/data/i18n/tr.json new file mode 100644 index 0000000..d1ecd25 --- /dev/null +++ b/data/i18n/tr.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "Bakır Üflemeliler", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "Trompet", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "Trompet", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "Trombon", + "shortname": "Trb.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "Trombon", + "shortname": "Trb.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "Fa Korno", + "shortname": "F Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "Fa Korno", + "shortname": "F Hn.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "Do Korno", + "shortname": "Do Korno", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "Do Korno", + "shortname": "Do Korno", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "Re Korno", + "shortname": "Re Korno", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "Re Korno", + "shortname": "Re Korno", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "Bariton", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "Bariton", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "Bariton TC", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "Bariton TC", + "shortname": "Bar. TC", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "Eufonium", + "shortname": "Euph.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "Tuba", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "Bakır Üflemeliler Bölümü", + "shortname": "Bakır Nefesliler Grubu", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "Elektronik Enstrümanlar", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "Portamento Synth Bas", + "shortname": "Portamento Bas", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Reese Synth Bas", + "shortname": "Rezonanslı Bas", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "Mızraplı Synth Bas", + "shortname": "Pluck Bas", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Underwide Synth Bas", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "Dolgun Synth Bas", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "Hafif Synth Bas", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Airbass Synth Bas", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Evolution Synth Bas", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Weekend Synth Bas", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Ataklı Synth Bas", + "shortname": "Pl. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Fazlı Synth Bas", + "shortname": "Fz. Bas.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Out Synth Bas", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "Epik Çan Lead Sentezleyici", + "shortname": "Epc Bl LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "Testere Chorus Lead Sentezleyici", + "shortname": "Sw Ch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "Işın Kılıcı Lead Sentezleyici", + "shortname": "Işıltılı Lead Sentezleyici", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "Parlak Yıldız Lead Sentezleyici", + "shortname": "Brt S LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "Derin Uzay Lead Sentezleyici", + "shortname": "Dp Sp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "Bilim Kurgu Bilgisayar Lead Sentezleyici", + "shortname": "SF Cp LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "Şarkı Söyleyen Robotlar Lead Sentezleyici", + "shortname": "Sg Rb LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "Kutup Yıldızı Lead Synth", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "Gürültülü Lead Synth", + "shortname": "Gürültülü Lead Sentezleyici", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "Square One Lead Sentezleyici", + "shortname": "Kare Dalga 1 Lead Sentezleyici", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Drill Lead Synth", + "shortname": "Drill Lead Sentezleyici", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "Funky Lead Synth", + "shortname": "Funk Lead Sentezleyici", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "Astral İletişim Lead Synth", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "Rüya Gibi Koro Lead Synth", + "shortname": "Dr Chr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "Uzay Orkestrası Lead Synth", + "shortname": "Sp Orch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "Melodik Asteroit Lead Synth", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "Mars Gezgini Lead Synth", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "Koro Sentezleyici", + "shortname": "Synth.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "Serbest Kamışlı", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "Akordeon", + "shortname": "Akr.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "Ağız Armonikası", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "Klavye Çalgıları", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "Kuyruklu Piyano", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "Sıkı Piyano", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "Konser Piyanosu", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "Kuyruklu Piyano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "Piyano", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "Klavsen", + "shortname": "Klv.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "Çelesta", + "shortname": "Çel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "Org", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "Hammond Org", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "Kamışlı Org", + "shortname": "Kmş. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "Döner Org", + "shortname": "Rot. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "Perküsyon Org", + "shortname": "Perk. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "Akortlu Vurmalı Çalgılar", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "Timpani", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "Ksilofon", + "shortname": "Ksl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "Vibrafon", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "Glockenspiel", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "Marimba", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "Tübüler Çanlar (Orkestra Çanları)", + "shortname": "Tü. Ç.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "Müzik Kutusu", + "shortname": "M. Kts.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "Soprano Çelik Davullar", + "shortname": "S. Ç. D.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "Bas Çelik Davullar", + "shortname": "B. Çel. D.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "Vurmalı Çalgılar", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "Davul Seti", + "shortname": "Davullar", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "Davul Seti", + "shortname": "Davullar", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "Orkestra Davul Seti", + "shortname": "Davullar", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "Hip-Hop Seti", + "shortname": "HH Seti", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "Yürüyüş Trampetleri", + "shortname": "Yür Tr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "Yürüyüş Trampetleri", + "shortname": "Yür Tr", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Marş Tenor Davulları", + "shortname": "Mrş Tn", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "Marş Tenor Davulları", + "shortname": "Mrş Tn", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "Yürüyüş Bas Davulları", + "shortname": "Yür Bs", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "Yürüyüş Bas Davulları", + "shortname": "Yür Bs", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "Yürüyüş Zilleri", + "shortname": "Yür Zl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "Yürüyüş Zilleri", + "shortname": "Yür Zl", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "Konser Bas Davulu", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "Doğu Gongları", + "shortname": "Gng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "Japon Nagado Taiko Davulları", + "shortname": "Nağara", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "Ahşap Bloklar", + "shortname": "WB", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "Bongolar", + "shortname": "Bongo", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "Kongalar", + "shortname": "Kon.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "Claves", + "shortname": "Klaves", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "Agogo Çanları", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "Düdükler", + "shortname": "Düd.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "Rüzgar Çanları", + "shortname": "Rüzgar Çanları", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "Parmak Şaklatma", + "shortname": "Fgr.", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "Alkış", + "shortname": "Clp", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "Askı Zili", + "shortname": "Asılı zil", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "Üçgen", + "shortname": "Üçg.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "Çıngıraklar", + "shortname": "Çıng.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "Marakas", + "shortname": "Mrks", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "Akustik Bas Davul", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "Kenar Vuruşu", + "shortname": "Sd Stk", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "Akustik Trampet", + "shortname": "Snr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "Floor Tom", + "shortname": "Fl Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "Kalın Tom", + "shortname": "L Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "Alçak-Orta Tom", + "shortname": "LM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "Orta Tom", + "shortname": "M Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "Yüksek-Orta Tom", + "shortname": "HM Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "Tiz Tom", + "shortname": "H Tom", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "Kapalı Hi-hat", + "shortname": "Cl HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "Açık Hi-hat", + "shortname": "Op HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "Pedalla Hi-hat", + "shortname": "Pd HH", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "Crash Zil", + "shortname": "Crash", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "Ride Zil", + "shortname": "Rd Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "Çin Zili", + "shortname": "Ch Cy", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Ride Zili Göbeği", + "shortname": "Rd Bl", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "Tef", + "shortname": "Tbr", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "Splash Zili", + "shortname": "Splash Zil", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "İnek Çanı", + "shortname": "İnek Çanı", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "Mızraplı Telli Çalgılar", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "Akustik Gitar", + "shortname": "Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "Klasik Gitar", + "shortname": "Git.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "Akustik Gitar", + "shortname": "Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "Ukulele", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "Elektro Gitar", + "shortname": "El. Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "Elektro Gitar (temiz)", + "shortname": "El. Git.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "Elektro Gitar (caz)", + "shortname": "El. Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "Elektro Gitar (susturulmuş)", + "shortname": "El. Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "Yüksek Voltajlı Distortion Gitar", + "shortname": "Dist. G.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "Elektro Gitar Crunch", + "shortname": "G. Crch.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "Solo Elektro Gitar", + "shortname": "G. Lead", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "Distorsiyonlu Gitar", + "shortname": "Dist. Git.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "Modern Elektro Bas Gitar", + "shortname": "Mo. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "Vintage Elektro Bas Gitar", + "shortname": "Vi. B.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "Elektro Bas", + "shortname": "El. B.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "Elektro Bas (pena ile)", + "shortname": "El. Bas", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "Slap Bas Gitar", + "shortname": "Sl. Bas", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "Japon Koto", + "shortname": "Koto", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "Shamisen (Japon udu)", + "shortname": "Sha.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "Ud (Arap udu)", + "shortname": "Ud", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "Banjo", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "Mandolin", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "Arp", + "shortname": "Arp", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "Sitar", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "Yaylılar", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "Keman", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "Keman", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "Solo Keman", + "shortname": "Sl. Km.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "Viyola", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "Viyola", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "Çello", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "Çello", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "Kontrbas", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "Kontrbas", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "Yaylı Çalgılar Topluluğu", + "shortname": "Y. Ç. T.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "Çin Erhu", + "shortname": "Er.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "Vokaller", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "Koro Soprano Kadınlar", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "Koro Soprano Kız Çocuklar", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "Koro Soprano Erkek Çocuklar", + "shortname": "Sop.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "Koro Kontrtenor Erkekler", + "shortname": "Knt.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "Koro Alto Kadınlar", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "Koro Alto Kız Çocuklar", + "shortname": "Alto", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "Koro Tenor Salon", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "Koro Tenor Katedral", + "shortname": "Ten.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "Koro Bas Salon", + "shortname": "Bas", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "Koro Bas Katedral", + "shortname": "Bas", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "Koro Soprano", + "shortname": "Sop.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "Koro Alto", + "shortname": "Alto", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "Koro Tenor", + "shortname": "Ten.", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "Koro Bas", + "shortname": "Bas", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "Koro Aah", + "shortname": "Kr. Aa.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "Ses Ooh", + "shortname": "Vok. Oo.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "Solo Ses", + "shortname": "Vok. Sl.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "Kazoo", + "shortname": "Kz.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "Tahta Üflemeliler", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "Pikolo", + "shortname": "Pik.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "Orkestra Flütü", + "shortname": "Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "Geleneksel Flüt", + "shortname": "Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "Flüt", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "Alto Flüt", + "shortname": "A. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "Pan Flüt", + "shortname": "Pn. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "Blok Flüt", + "shortname": "Bl.Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "Fa akortlu Alto Blokflüt", + "shortname": "Alto Blokfl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "İrlanda Düdüğü", + "shortname": "İrl. Düd.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "Obua", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "İngiliz Kornosu", + "shortname": "İ. Kn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "Konser Klarneti (Si bemol)", + "shortname": "Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "Klarnet Düeti", + "shortname": "Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "Klarnet", + "shortname": "Kl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "Alto Klarnet", + "shortname": "Al. Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "Bas Klarnet", + "shortname": "B. Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "Kontrbas Klarnet", + "shortname": "Kb. Kl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "Fagot", + "shortname": "Fg.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "Kontrafagot", + "shortname": "Ktr. Fgt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "Soprano Saksafon", + "shortname": "S. Saks.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "Alto Saksafon", + "shortname": "A. Saks.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "Tenor Saksafon", + "shortname": "T. Saks.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "Bariton Saksafon", + "shortname": "Bar. Saks.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "Soprano Saksafon", + "shortname": "S. Saks.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "Alto Saksafon", + "shortname": "A. Saks.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "Tenor Saksafon", + "shortname": "T. Saks.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "Bariton Saksafon", + "shortname": "Bar. Saks.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "Gayda", + "shortname": "Gyd.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "Okarina", + "shortname": "Ok.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "Dizi (Çin flütü)", + "shortname": "Di.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "Shakuhachi (Japon flütü)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "Özel", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "Kedi Miyavlamaları", + "shortname": "Kedi", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "Star Wars Seti", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/zh-HK.json b/data/i18n/zh-HK.json new file mode 100644 index 0000000..0124949 --- /dev/null +++ b/data/i18n/zh-HK.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "銅管樂器", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "小號", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "小號", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "長號", + "shortname": "長號", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "長號", + "shortname": "長號", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "F調圓號", + "shortname": "F調圓號", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "F調圓號", + "shortname": "F調圓號", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "C調圓號", + "shortname": "C調圓號", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "C調圓號", + "shortname": "C調圓號", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "D調圓號", + "shortname": "D調圓號", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "D調圓號", + "shortname": "D調圓號", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "上低音號", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "上低音號", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "次中音號(高音譜號)", + "shortname": "次中音號(高音譜號)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "次中音號(高音譜號)", + "shortname": "次中音號(高音譜號)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "次中音號", + "shortname": "Euph.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "大號", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "大號", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "銅管合奏", + "shortname": "銅管合奏", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "電子樂器", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "滑音合成低音", + "shortname": "滑音合成低音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Reese 合成低音", + "shortname": "共鳴合成低音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "撥弦合成低音", + "shortname": "撥奏合成低音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Underwide 合成低音", + "shortname": "Underwide 低音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "厚實合成低音", + "shortname": "Solide 低音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "輕盈合成低音", + "shortname": "輕盈低音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Airbass 合成低音", + "shortname": "Airbass 低音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "Evolution 合成低音", + "shortname": "Evolution 低音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "Weekend 合成低音", + "shortname": "Weekend 低音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "Plucky 合成低音", + "shortname": "Plucky 低音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "Phase 合成低音", + "shortname": "Phase 低音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Out 合成低音", + "shortname": "Out 低音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "史詩鐘聲主音合成器", + "shortname": "史詩 鐘聲 主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "鋸齒波合唱主音合成器", + "shortname": "鋸齒波 合唱 主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "光靈主音合成器", + "shortname": "亮光主音合成器", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "亮星主音合成器", + "shortname": "亮星 主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "深空主音合成器", + "shortname": "深空 主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "科幻電腦主音合成器", + "shortname": "科幻 電腦 主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "機械人歌聲主音合成器", + "shortname": "機械人 歌聲 主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "北極星主音合成器", + "shortname": "北極星 主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "噪聲主音合成器", + "shortname": "噪聲主音合成器", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "方波一號主音合成器", + "shortname": "方波1主音合成器", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Drill 主音合成器", + "shortname": "Drill 主音合成器", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "放克主音合成器", + "shortname": "放克主音合成器", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "星際通訊主音合成器", + "shortname": "星際通訊主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "夢幻合唱主音合成器", + "shortname": "夢幻 合唱 主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "太空管弦樂主音合成器", + "shortname": "太空 管弦樂 主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "旋律小行星主音合成器", + "shortname": "旋律 小行星 主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "火星探測車主音合成器", + "shortname": "火星 主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "合唱合成器", + "shortname": "Synth.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "自由簧樂器", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "手風琴", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "口琴", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "鍵盤樂器", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "三角鋼琴", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "緊實鋼琴", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "音樂會鋼琴", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "三角鋼琴", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "鋼琴", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "羽管鍵琴", + "shortname": "Hch.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "鋼片琴", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "風琴", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "哈蒙德風琴", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "簧風琴", + "shortname": "Rd. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "旋轉風琴", + "shortname": "Rot. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "敲擊風琴", + "shortname": "Perc. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "有音高打擊樂器", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "定音鼓", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "木琴", + "shortname": "Xyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "顫音琴", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "鐘琴", + "shortname": "鐘琴", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "馬林巴琴", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "管鐘(交響鐘)", + "shortname": "管鐘", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "音樂盒", + "shortname": "音樂盒", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "高音鋼鼓", + "shortname": "S. St. Dr.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "低音鋼鼓", + "shortname": "B. St. Dr.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "敲擊樂", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "鼓組", + "shortname": "鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "鼓組", + "shortname": "鼓", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "管弦樂鼓組", + "shortname": "鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "嘻哈套組", + "shortname": "踩鈸套組", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "行進式軍鼓", + "shortname": "行進式軍鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "行進式軍鼓", + "shortname": "行進式軍鼓", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "步操中音鼓", + "shortname": "行進式中鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "步操中音鼓", + "shortname": "行進式中鼓", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "步操低音鼓", + "shortname": "行進低音鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "步操低音鼓", + "shortname": "行進低音鼓", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "步操鐃鈸", + "shortname": "行進鈸", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "步操鐃鈸", + "shortname": "行進鈸", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "音樂會大鼓", + "shortname": "音樂會大鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "東方鑼", + "shortname": "鑼", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "日本長胴太鼓", + "shortname": "鼓身敲擊", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "木魚", + "shortname": "木魚", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "邦戈鼓", + "shortname": "邦戈鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "康加鼓", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "響棒", + "shortname": "節奏棒", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "阿哥哥鈴", + "shortname": "阿哥哥", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "口哨", + "shortname": "哨", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "風鈴", + "shortname": "風鈴", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "響指", + "shortname": "指鈸", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "拍手", + "shortname": "拍手", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "吊鈸", + "shortname": "懸吊鈸", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "三角鐵", + "shortname": "三角鐵", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "串鈴", + "shortname": "串鈴", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "砂槌", + "shortname": "Mrcs", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "原聲大鼓", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "邊擊", + "shortname": "邊擊", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "原聲小鼓", + "shortname": "小鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "落地通鼓", + "shortname": "落地通", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "低通鼓", + "shortname": "低通鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "中低音通鼓", + "shortname": "中低通鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "中通鼓", + "shortname": "中通鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "中高音通鼓", + "shortname": "中高通鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "高通鼓", + "shortname": "高通鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "關閉踩鈸", + "shortname": "閉踩", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "開放踩鈸", + "shortname": "開踩", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "踩鈸踏板", + "shortname": "踏板踩鈸", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "碎鈸", + "shortname": "碎鈸", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "節奏鈸", + "shortname": "節奏鈸", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "中式鈸", + "shortname": "中國鈸", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "Ride鈸心", + "shortname": "鈸心", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "鈴鼓", + "shortname": "塔布鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "濺鈸", + "shortname": "濺鈸", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "牛鈴", + "shortname": "牛鈴", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "撥弦樂器", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "原聲結他", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "古典結他", + "shortname": "Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "原聲結他", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "烏克麗麗", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "烏克麗麗", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "電結他", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "電結他(清音)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "電結他(爵士)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "電結他(悶音)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "高壓失真結他", + "shortname": "失真電結他", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "電結他(破音)", + "shortname": "破音結他", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "主音電結他", + "shortname": "主音結他", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "失真電結他", + "shortname": "失真電結他", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "現代電低音結他", + "shortname": "現代低音結他", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "復古電低音結他", + "shortname": "復古低音結他", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "電低音結他", + "shortname": "El. B.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "電低音結他(撥片)", + "shortname": "電低音結他", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "拍擊低音結他", + "shortname": "拍擊低音結他", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "日本箏", + "shortname": "日本箏", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "三味線(日本撥弦樂器)", + "shortname": "三味線", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "烏德琴(阿拉伯魯特琴)", + "shortname": "烏德琴", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "班卓琴", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "曼陀林", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "豎琴", + "shortname": "Hrp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "西塔琴", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "弦樂", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "小提琴", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "小提琴", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "主音小提琴", + "shortname": "主音小提琴", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "中提琴", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "中提琴", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "大提琴", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "大提琴", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "低音提琴", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "低音提琴", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "弦樂合奏", + "shortname": "弦樂合奏", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "二胡", + "shortname": "二胡", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "人聲", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "合唱 女高音(女聲)", + "shortname": "女高", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "合唱 女童高音", + "shortname": "女高", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "合唱 男童高音", + "shortname": "女高", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "合唱 假聲男高音(男聲)", + "shortname": "Cnt.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "合唱 女低音(女聲)", + "shortname": "中音", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "合唱 女童中音", + "shortname": "中音", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "合唱 男高音(音樂廳)", + "shortname": "男高", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "合唱 男高音(大教堂)", + "shortname": "男高", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "合唱 男低音(音樂廳)", + "shortname": "低音結他", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "合唱 男低音(大教堂)", + "shortname": "低音結他", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "合唱 女高音", + "shortname": "女高", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "合唱 女低音", + "shortname": "中音", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "合唱 男高音", + "shortname": "男高", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "合唱 男低音", + "shortname": "低音結他", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "合唱「啊」音", + "shortname": "合唱「啊」音", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "人聲「嗚」音", + "shortname": "人聲「嗚」", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "主音人聲", + "shortname": "主唱", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "卡祖笛", + "shortname": "卡祖笛", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "木管", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "短笛", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "管弦樂團長笛", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "傳統長笛", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "長笛", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "中音長笛", + "shortname": "A. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "排簫", + "shortname": "Pn. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "直笛", + "shortname": "Rec.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "F調中音直笛", + "shortname": "中音直笛", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "愛爾蘭哨笛", + "shortname": "愛爾蘭哨笛", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "雙簧管", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "英國管", + "shortname": "E. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "降B單簧管", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "單簧管二重奏", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "單簧管", + "shortname": "Cl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "中音單簧管", + "shortname": "中音單簧管", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "低音單簧管", + "shortname": "B. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "倍低音單簧管", + "shortname": "Cb. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "巴松管", + "shortname": "Bsn.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "低音巴松管", + "shortname": "倍低音巴松管", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "高音色士風", + "shortname": "S. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "中音薩克管", + "shortname": "A. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "次中音色士風", + "shortname": "T. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "上低音薩克管", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "高音色士風", + "shortname": "S. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "中音薩克管", + "shortname": "A. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "次中音色士風", + "shortname": "T. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "上低音薩克管", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "蘇格蘭風笛", + "shortname": "Bagp.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "陶笛", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "笛子(中國笛)", + "shortname": "笛子", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "尺八(日本竹笛)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "特殊", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "貓叫聲", + "shortname": "貓", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "星球大戰套裝", + "shortname": "星戰", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/zh-Hans.json b/data/i18n/zh-Hans.json new file mode 100644 index 0000000..0e5f0f8 --- /dev/null +++ b/data/i18n/zh-Hans.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "铜管乐器", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "小号", + "shortname": "小号", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "小号", + "shortname": "小号", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "长号", + "shortname": "长号", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "长号", + "shortname": "长号", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "F调圆号", + "shortname": "F调圆号", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "F调圆号", + "shortname": "F调圆号", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "C调圆号", + "shortname": "C调圆号", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "C调圆号", + "shortname": "C调圆号", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "D调圆号", + "shortname": "D调圆号", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "D调圆号", + "shortname": "D调圆号", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "上低音号", + "shortname": "上低音号", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "上低音号", + "shortname": "上低音号", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "上低音号(高音谱号)", + "shortname": "上低音号(高音谱号)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "上低音号(高音谱号)", + "shortname": "上低音号(高音谱号)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "次中音号", + "shortname": "次中音号", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "大号", + "shortname": "大号", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "大号", + "shortname": "大号", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "铜管组", + "shortname": "铜管合奏", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "电子乐器", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "滑音合成贝斯", + "shortname": "滑音贝斯", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Reese合成贝斯", + "shortname": "共振贝斯", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "拨弦合成贝斯", + "shortname": "拨奏贝斯", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "Underwide合成贝斯", + "shortname": "Uw. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "厚实合成贝斯", + "shortname": "Sd. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "轻盈合成贝斯", + "shortname": "Lt. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Airbass合成贝斯", + "shortname": "Ab. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "进化合成贝斯", + "shortname": "Ev. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "周末合成贝斯", + "shortname": "Wk. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "拨奏合成贝斯", + "shortname": "Pl. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "相位合成贝斯", + "shortname": "Ph. Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "前卫合成贝斯", + "shortname": "Out Bs.", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "史诗钟声主音合成器", + "shortname": "史诗钟声主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "锯齿波合唱主音合成器", + "shortname": "锯齿合唱主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "光剑主音合成器", + "shortname": "明亮主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "明亮星光主音合成器", + "shortname": "明亮星光主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "深空主音合成器", + "shortname": "深空主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "科幻计算机主音合成器", + "shortname": "科幻计算机主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "歌唱机器人主音合成器", + "shortname": "歌唱机器人主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "北极星主音合成器", + "shortname": "NS LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "噪声主音合成器", + "shortname": "噪声主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "方波一号主音合成器", + "shortname": "方波1主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Drill 主音合成器", + "shortname": "Drill 主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "放克主音合成器", + "shortname": "放克主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "星际通讯主音合成器", + "shortname": "Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "梦幻合唱主音合成器", + "shortname": "Dr Chr LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "太空管弦乐主音合成器", + "shortname": "Sp Orch LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "旋律小行星主音合成器", + "shortname": "Mld Ast LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "火星探测车主音合成器", + "shortname": "Mars LS", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "合唱合成器", + "shortname": "合成器", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "自由簧乐器", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "手风琴", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "口琴", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "键盘乐器", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "三角钢琴", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "紧凑钢琴", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "音乐会三角钢琴", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "三角钢琴", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "钢琴", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "大键琴", + "shortname": "Hch.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "钢片琴", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "风琴", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "哈蒙德风琴", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "簧风琴", + "shortname": "Rd. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "旋转风琴", + "shortname": "Rot. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "打击式风琴", + "shortname": "Perc. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "有音高打击乐器", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "定音鼓", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "木琴", + "shortname": "Xyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "颤音琴", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "钟琴", + "shortname": "Glk.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "马林巴琴", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "管钟(交响管钟)", + "shortname": "Tu. Be.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "八音盒", + "shortname": "M. Box", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "高音钢鼓", + "shortname": "S. St. Dr.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "低音钢鼓", + "shortname": "B. St. Dr.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "打击乐", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "架子鼓", + "shortname": "鼓组", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "架子鼓", + "shortname": "鼓组", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "管弦乐鼓组", + "shortname": "鼓组", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "嘻哈套组", + "shortname": "嘻哈套组", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "行进小军鼓", + "shortname": "行进军鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "行进小军鼓", + "shortname": "行进军鼓", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "行进次中音鼓", + "shortname": "行进中鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "行进次中音鼓", + "shortname": "行进中鼓", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "行进大鼓", + "shortname": "行进大鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "行进大鼓", + "shortname": "行进大鼓", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "行进对镲", + "shortname": "行进对镲", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "行进对镲", + "shortname": "行进对镲", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "音乐会大鼓", + "shortname": "CBD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "东方锣", + "shortname": "锣", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "日本长胴太鼓", + "shortname": "长胴太鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "木块", + "shortname": "木鱼", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "邦戈鼓", + "shortname": "邦戈鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "康加鼓", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "响木", + "shortname": "响木", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "阿戈戈铃", + "shortname": "Ago.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "口哨", + "shortname": "口哨", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "风铃", + "shortname": "风铃", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "响指", + "shortname": "响指", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "拍手", + "shortname": "拍手", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "吊镲", + "shortname": "悬吊镲", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "三角铁", + "shortname": "三角铁", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "铃铛", + "shortname": "铃铛", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "沙锤", + "shortname": "沙锤", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "原声底鼓", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "边击", + "shortname": "边击", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "原声军鼓", + "shortname": "军鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "落地嗵鼓", + "shortname": "落地嗵", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "低嗵鼓", + "shortname": "低嗵", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "中低音嗵鼓", + "shortname": "中低嗵", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "中嗵鼓", + "shortname": "中嗵", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "中高音嗵鼓", + "shortname": "中高嗵", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "高嗵鼓", + "shortname": "高嗵", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "闭合踩镲", + "shortname": "闭踩", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "开镲", + "shortname": "开踩", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "踩镲脚踏", + "shortname": "脚踏踩镲", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "碎音镲", + "shortname": "碎音镲", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "节奏镲", + "shortname": "节奏镲", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "中国镲", + "shortname": "中国镲", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "节奏镲钟心", + "shortname": "节奏镲钟心", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "铃鼓", + "shortname": "铃鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "溅镲", + "shortname": "溅镲", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "牛铃", + "shortname": "牛铃", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "拨弦乐器", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "原声吉他", + "shortname": "吉他", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "古典吉他", + "shortname": "吉他", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "原声吉他", + "shortname": "吉他", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "尤克里里", + "shortname": "尤克里里", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "尤克里里", + "shortname": "尤克里里", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "电吉他", + "shortname": "电吉", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "电吉他(清音)", + "shortname": "电吉", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "电吉他(爵士)", + "shortname": "电吉", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "电吉他(闷音)", + "shortname": "电吉", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "高增益失真电吉他", + "shortname": "失真吉他", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "电吉他过载", + "shortname": "电吉他(Crunch)", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "电吉他主音", + "shortname": "吉他主音", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "电吉他(失真)", + "shortname": "失真电吉", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "现代电贝斯", + "shortname": "现代贝斯", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "复古电贝斯", + "shortname": "复古贝斯", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "电贝斯", + "shortname": "电贝", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "电贝斯(拨片)", + "shortname": "电贝", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "拍击贝斯", + "shortname": "拍击贝斯", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "日本筝", + "shortname": "日本筝", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "三味线(日本三弦)", + "shortname": "三味线", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "乌德琴(阿拉伯鲁特琴)", + "shortname": "乌德琴", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "班卓琴", + "shortname": "班卓琴", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "曼陀林", + "shortname": "曼陀林", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "竖琴", + "shortname": "竖琴", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "西塔琴", + "shortname": "锡塔尔琴", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "弦乐", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "小提琴", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "小提琴", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "小提琴主音", + "shortname": "小提琴主音", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "中提琴", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "中提琴", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "大提琴", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "大提琴", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "低音提琴", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "低音提琴", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "弦乐合奏", + "shortname": "弦乐合奏", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "中国二胡", + "shortname": "二胡", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "人声", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "女高音合唱(女声)", + "shortname": "女高", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "女童高音合唱", + "shortname": "女高", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "男童高音合唱", + "shortname": "女高", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "合唱 假声男高音(男声)", + "shortname": "假声男高音", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "女声合唱(女低音)", + "shortname": "女低音", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "女童中音合唱", + "shortname": "女低音", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "男高音合唱(音乐厅)", + "shortname": "男高", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "男高音合唱(大教堂)", + "shortname": "男高", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "男低音合唱(音乐厅)", + "shortname": "贝斯", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "男低音合唱(大教堂)", + "shortname": "贝斯", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "女高音合唱", + "shortname": "女高", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "女低音合唱", + "shortname": "女低音", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "男高音合唱", + "shortname": "男高", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "男低音合唱", + "shortname": "贝斯", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "合唱“啊”音", + "shortname": "合唱“啊”", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "人声“喔”", + "shortname": "人声“喔”", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "人声主音", + "shortname": "主唱", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "卡祖笛", + "shortname": "卡祖笛", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "木管乐器", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "短笛", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "管弦乐长笛", + "shortname": "长笛", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "传统长笛", + "shortname": "长笛", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "长笛", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "中音长笛", + "shortname": "中音长笛", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "排箫", + "shortname": "Pn. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "竖笛", + "shortname": "竖笛", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "F调中音竖笛", + "shortname": "中竖", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "锡笛", + "shortname": "爱尔兰哨笛", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "双簧管", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "英国管", + "shortname": "E. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "降B调单簧管", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "单簧管二重奏", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "单簧管", + "shortname": "Cl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "中音单簧管", + "shortname": "中音单簧管", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "低音单簧管", + "shortname": "B. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "倍低音单簧管", + "shortname": "Cb. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "大管", + "shortname": "Bsn.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "低音大管", + "shortname": "低音巴松管", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "高音萨克斯", + "shortname": "S. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "中音萨克斯", + "shortname": "中音萨克斯", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "次中音萨克斯", + "shortname": "T. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "上低音萨克斯", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "高音萨克斯", + "shortname": "S. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "中音萨克斯", + "shortname": "中音萨克斯", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "次中音萨克斯", + "shortname": "T. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "上低音萨克斯", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "风笛", + "shortname": "Bagp.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "陶笛", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "笛子(中国竹笛)", + "shortname": "笛子", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "尺八(日本竹笛)", + "shortname": "尺八", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "特殊", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "猫叫声", + "shortname": "猫", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "星球大战套装", + "shortname": "St. W.", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/data/i18n/zh-TW.json b/data/i18n/zh-TW.json new file mode 100644 index 0000000..5689346 --- /dev/null +++ b/data/i18n/zh-TW.json @@ -0,0 +1,1710 @@ +{ + "groups": [ + { + "id": "brass", + "name": "銅管樂器", + "instruments": [ + { + "id": "brass.hq-trumpet", + "group": "brass", + "name": "小號", + "shortname": "Tpt.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trumpet", + "group": "brass", + "name": "小號", + "shortname": "Tpt.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-trombone", + "group": "brass", + "name": "長號", + "shortname": "長號", + "type": "pitched", + "premium": true + }, + { + "id": "brass.trombone", + "group": "brass", + "name": "長號", + "shortname": "長號", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-french-horn", + "group": "brass", + "name": "F調圓號", + "shortname": "F圓號", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn", + "group": "brass", + "name": "F調圓號", + "shortname": "F圓號", + "type": "pitched", + "premium": false + }, + { + "id": "brass.hq-horn-in-c", + "group": "brass", + "name": "C調圓號", + "shortname": "C調圓號", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-c", + "group": "brass", + "name": "C調圓號", + "shortname": "C調圓號", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-horn-in-d", + "group": "brass", + "name": "D調圓號", + "shortname": "D調圓號", + "type": "pitched", + "premium": true + }, + { + "id": "brass.horn-in-d", + "group": "brass", + "name": "D調圓號", + "shortname": "D調圓號", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn", + "group": "brass", + "name": "上低音號", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn", + "group": "brass", + "name": "上低音號", + "shortname": "Bar. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-baritone-horn-treble", + "group": "brass", + "name": "上低音號(高音譜號)", + "shortname": "男中音號(高音譜號)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.baritone-horn-treble", + "group": "brass", + "name": "上低音號(高音譜號)", + "shortname": "男中音號(高音譜號)", + "type": "pitched", + "premium": true + }, + { + "id": "brass.euphonium", + "group": "brass", + "name": "粗管上低音號", + "shortname": "Euph.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.hq-tuba", + "group": "brass", + "name": "低音號", + "shortname": "Tba.", + "type": "pitched", + "premium": true + }, + { + "id": "brass.tuba", + "group": "brass", + "name": "低音號", + "shortname": "Tba.", + "type": "pitched", + "premium": false + }, + { + "id": "brass.brass", + "group": "brass", + "name": "銅管群", + "shortname": "銅管部", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "electronic-instruments", + "name": "電子樂器", + "instruments": [ + { + "id": "electronic-instruments.synth-bass-1", + "group": "electronic-instruments", + "name": "滑音合成貝斯", + "shortname": "滑音貝斯", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-2", + "group": "electronic-instruments", + "name": "Reese 合成貝斯", + "shortname": "共鳴貝斯", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-3", + "group": "electronic-instruments", + "name": "彈撥式合成貝斯", + "shortname": "撥奏貝斯", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-1", + "group": "electronic-instruments", + "name": "寬低域合成貝斯", + "shortname": "寬低域貝斯", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-2", + "group": "electronic-instruments", + "name": "厚實合成貝斯", + "shortname": "厚實貝斯", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-3", + "group": "electronic-instruments", + "name": "輕柔合成貝斯", + "shortname": "輕柔貝斯", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-4", + "group": "electronic-instruments", + "name": "Airbass 合成貝斯", + "shortname": "Airbass 貝斯", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-5", + "group": "electronic-instruments", + "name": "進化合成貝斯", + "shortname": "進化貝斯", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-6", + "group": "electronic-instruments", + "name": "週末合成貝斯", + "shortname": "週末貝斯", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-7", + "group": "electronic-instruments", + "name": "清脆撥奏合成貝斯", + "shortname": "清脆撥奏貝斯", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-8", + "group": "electronic-instruments", + "name": "相位合成貝斯", + "shortname": "相位貝斯", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.synth-bass-808-9", + "group": "electronic-instruments", + "name": "Out 合成貝斯", + "shortname": "Out 貝斯", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-1", + "group": "electronic-instruments", + "name": "史詩鐘聲主音合成器", + "shortname": "史詩鐘聲主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-2", + "group": "electronic-instruments", + "name": "鋸齒波合唱主音合成器", + "shortname": "鋸齒波合唱主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-3", + "group": "electronic-instruments", + "name": "光劍主音合成器", + "shortname": "亮光主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-4", + "group": "electronic-instruments", + "name": "明亮星光主音合成器", + "shortname": "明亮星光主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-5", + "group": "electronic-instruments", + "name": "深空主音合成器", + "shortname": "深空主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-6", + "group": "electronic-instruments", + "name": "科幻電腦主音合成器", + "shortname": "SF電腦主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-mod-7", + "group": "electronic-instruments", + "name": "歌唱機器人主音合成器", + "shortname": "歌唱機器人主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-1", + "group": "electronic-instruments", + "name": "北極星主音合成器", + "shortname": "北極星主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-2", + "group": "electronic-instruments", + "name": "雜訊主音合成器", + "shortname": "噪聲主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-3", + "group": "electronic-instruments", + "name": "方波一號主音合成器", + "shortname": "方波 1 主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-4", + "group": "electronic-instruments", + "name": "Drill 主音合成器", + "shortname": "Drill 主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-5", + "group": "electronic-instruments", + "name": "放克風主音合成器", + "shortname": "放克主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-vin-6", + "group": "electronic-instruments", + "name": "星際通訊主音合成器", + "shortname": "星際主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-1", + "group": "electronic-instruments", + "name": "夢幻合唱主音合成器", + "shortname": "夢幻合唱主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-2", + "group": "electronic-instruments", + "name": "太空管弦樂主音合成器", + "shortname": "太空管弦樂主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-3", + "group": "electronic-instruments", + "name": "旋律小行星主音合成器", + "shortname": "旋律小行星主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.lead-synth-other-4", + "group": "electronic-instruments", + "name": "火星探測車主音合成器", + "shortname": "火星主音", + "type": "pitched", + "premium": true + }, + { + "id": "electronic-instruments.choir-synth", + "group": "electronic-instruments", + "name": "合成合唱", + "shortname": "Synth.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "free-reed", + "name": "自由簧樂器", + "instruments": [ + { + "id": "free-reed.accordion", + "group": "free-reed", + "name": "手風琴", + "shortname": "Acc.", + "type": "pitched", + "premium": true + }, + { + "id": "free-reed.harmonica", + "group": "free-reed", + "name": "口琴", + "shortname": "Harm.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "keyboards", + "name": "鍵盤樂器", + "instruments": [ + { + "id": "keyboards.hq-grand-piano", + "group": "keyboards", + "name": "三角鋼琴", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-tight", + "group": "keyboards", + "name": "緊湊鋼琴", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hq-piano-concert", + "group": "keyboards", + "name": "音樂會三角鋼琴", + "shortname": "Pno.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.grand-piano", + "group": "keyboards", + "name": "三角鋼琴", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.piano", + "group": "keyboards", + "name": "鋼琴", + "shortname": "Pno.", + "type": "pitched", + "premium": false + }, + { + "id": "keyboards.harpsichord", + "group": "keyboards", + "name": "羽管鍵琴", + "shortname": "Hch.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.celesta", + "group": "keyboards", + "name": "鋼片琴", + "shortname": "Cel.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.organ", + "group": "keyboards", + "name": "風琴", + "shortname": "Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.hammond-organ", + "group": "keyboards", + "name": "哈蒙德風琴", + "shortname": "Hm. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.reed-organ", + "group": "keyboards", + "name": "簧風琴", + "shortname": "Rd. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.rotary-organ", + "group": "keyboards", + "name": "旋轉風琴", + "shortname": "Rot. Org.", + "type": "pitched", + "premium": true + }, + { + "id": "keyboards.percussive-organ", + "group": "keyboards", + "name": "打擊式風琴", + "shortname": "Perc. Org.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "pitched-percussion", + "name": "定音打擊樂器", + "instruments": [ + { + "id": "pitched-percussion.timpani", + "group": "pitched-percussion", + "name": "定音鼓", + "shortname": "Timp.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.xylophone", + "group": "pitched-percussion", + "name": "木琴", + "shortname": "Xyl.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.vibraphone", + "group": "pitched-percussion", + "name": "顫音琴", + "shortname": "Vib.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.glockenspiel", + "group": "pitched-percussion", + "name": "鐘琴", + "shortname": "鐘琴", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.marimba", + "group": "pitched-percussion", + "name": "馬林巴琴", + "shortname": "Mrm.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.tubular-bells", + "group": "pitched-percussion", + "name": "管鐘(交響鐘)", + "shortname": "管鐘", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.music-box", + "group": "pitched-percussion", + "name": "音樂盒", + "shortname": "音樂盒", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.soprano-steel-drums", + "group": "pitched-percussion", + "name": "高音鋼鼓", + "shortname": "S. St. Dr.", + "type": "pitched", + "premium": true + }, + { + "id": "pitched-percussion.bass-steel-drums", + "group": "pitched-percussion", + "name": "低音鋼鼓", + "shortname": "B. St. Dr.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "unpitched-percussion", + "name": "打擊樂", + "instruments": [ + { + "id": "unpitched-percussion.hq-drumset-rock", + "group": "unpitched-percussion", + "name": "鼓組", + "shortname": "鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumset-1", + "group": "unpitched-percussion", + "name": "鼓組", + "shortname": "鼓", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-orchestral-drumset", + "group": "unpitched-percussion", + "name": "管弦樂鼓組", + "shortname": "鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hip-hop-drum-set", + "group": "unpitched-percussion", + "name": "嘻哈套組", + "shortname": "踩鈸組", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.hq-marching-snare-drums", + "group": "unpitched-percussion", + "name": "行進軍鼓", + "shortname": "行進軍鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-snare-drums", + "group": "unpitched-percussion", + "name": "行進軍鼓", + "shortname": "行進軍鼓", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-tenor-drums", + "group": "unpitched-percussion", + "name": "行進中音鼓", + "shortname": "行進中鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-tenor-drums", + "group": "unpitched-percussion", + "name": "行進中音鼓", + "shortname": "行進中鼓", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-bass-drums", + "group": "unpitched-percussion", + "name": "行進大鼓", + "shortname": "行進大鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-bass-drums", + "group": "unpitched-percussion", + "name": "行進大鼓", + "shortname": "行進大鼓", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hq-marching-cymbals", + "group": "unpitched-percussion", + "name": "行進雙鈸", + "shortname": "行進手鈸", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.marching-cymbals", + "group": "unpitched-percussion", + "name": "行進雙鈸", + "shortname": "行進手鈸", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.concert-bass-drum", + "group": "unpitched-percussion", + "name": "音樂會大鼓", + "shortname": "音樂會大鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.gong", + "group": "unpitched-percussion", + "name": "東方鑼", + "shortname": "鑼", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.nagado-drums", + "group": "unpitched-percussion", + "name": "日本長胴太鼓套組", + "shortname": "Nag", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.woodblocks", + "group": "unpitched-percussion", + "name": "木魚", + "shortname": "木魚", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.bongos", + "group": "unpitched-percussion", + "name": "邦戈鼓", + "shortname": "邦戈鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.congas", + "group": "unpitched-percussion", + "name": "康加鼓", + "shortname": "Con.", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.claves", + "group": "unpitched-percussion", + "name": "響木", + "shortname": "響木", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.agogo-bells", + "group": "unpitched-percussion", + "name": "阿高哥鈴", + "shortname": "阿高哥", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.whistles", + "group": "unpitched-percussion", + "name": "口哨", + "shortname": "哨", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.wind-chimes", + "group": "unpitched-percussion", + "name": "風鈴", + "shortname": "風鈴", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.finger-snap", + "group": "unpitched-percussion", + "name": "打響指", + "shortname": "指鈸", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.hand-clap", + "group": "unpitched-percussion", + "name": "拍手", + "shortname": "拍手", + "type": "unpitched", + "premium": false + }, + { + "id": "unpitched-percussion.suspended-cymbal", + "group": "unpitched-percussion", + "name": "吊鈸", + "shortname": "懸鈸", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.triangle", + "group": "unpitched-percussion", + "name": "三角鐵", + "shortname": "三角鐵", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.jingle-bells", + "group": "unpitched-percussion", + "name": "鈴鐺", + "shortname": "鈴鐺", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.maracas", + "group": "unpitched-percussion", + "name": "砂鈴", + "shortname": "Mrcs", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-bass-drum", + "group": "unpitched-percussion", + "name": "原聲大鼓", + "shortname": "BD", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-side-stick", + "group": "unpitched-percussion", + "name": "邊擊", + "shortname": "邊擊", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-acoustic-snare-drum", + "group": "unpitched-percussion", + "name": "原聲小鼓", + "shortname": "小鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-floor-tom", + "group": "unpitched-percussion", + "name": "落地嗵鼓", + "shortname": "落地嗵", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-tom", + "group": "unpitched-percussion", + "name": "低嗵鼓", + "shortname": "低嗵", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-low-mid-tom", + "group": "unpitched-percussion", + "name": "中低音通鼓", + "shortname": "中低嗵", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-mid-tom", + "group": "unpitched-percussion", + "name": "中嗵鼓", + "shortname": "中嗵", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-mid-tom", + "group": "unpitched-percussion", + "name": "中高音通鼓", + "shortname": "中高嗵", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-high-tom", + "group": "unpitched-percussion", + "name": "高嗵鼓", + "shortname": "高嗵", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-closed-hi-hat", + "group": "unpitched-percussion", + "name": "踩鈸(閉)", + "shortname": "閉踩", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-open-hi-hat", + "group": "unpitched-percussion", + "name": "踩鈸(開)", + "shortname": "開踩", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-pedal-hi-hat", + "group": "unpitched-percussion", + "name": "踩鈸(踏板)", + "shortname": "踏踩", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-crash-cymbal", + "group": "unpitched-percussion", + "name": "碎鈸", + "shortname": "碎鈸", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-cymbal", + "group": "unpitched-percussion", + "name": "節奏鈸", + "shortname": "節奏鈸", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-china-cymbal", + "group": "unpitched-percussion", + "name": "中國鈸", + "shortname": "中國鈸", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-ride-bell", + "group": "unpitched-percussion", + "name": "節奏鈸心", + "shortname": "節奏鈸心", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-tambourine", + "group": "unpitched-percussion", + "name": "鈴鼓", + "shortname": "鈴鼓", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-splash-cymbal", + "group": "unpitched-percussion", + "name": "水鈸", + "shortname": "濺鈸", + "type": "unpitched", + "premium": true + }, + { + "id": "unpitched-percussion.drumline-cowbell", + "group": "unpitched-percussion", + "name": "牛鈴", + "shortname": "牛鈴", + "type": "unpitched", + "premium": true + } + ] + }, + { + "id": "plucked-strings", + "name": "撥弦樂器", + "instruments": [ + { + "id": "plucked-strings.hq-acoustic-guitar", + "group": "plucked-strings", + "name": "原聲吉他", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.guitar-nylon", + "group": "plucked-strings", + "name": "古典吉他", + "shortname": "Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.guitar-steel", + "group": "plucked-strings", + "name": "原聲吉他", + "shortname": "Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-ukulele", + "group": "plucked-strings", + "name": "烏克麗麗", + "shortname": "Uk.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.ukulele", + "group": "plucked-strings", + "name": "烏克麗麗", + "shortname": "Uk.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.hq-electric-guitar", + "group": "plucked-strings", + "name": "電吉他", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-clean", + "group": "plucked-strings", + "name": "電吉他(清音)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-guitar-jazz", + "group": "plucked-strings", + "name": "電吉他(爵士)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-guitar-muted", + "group": "plucked-strings", + "name": "電吉他(悶音)", + "shortname": "El. Guit.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-distortion", + "group": "plucked-strings", + "name": "高壓失真電吉他", + "shortname": "失真吉", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-crunch", + "group": "plucked-strings", + "name": "電吉他(Crunch)", + "shortname": "電吉 Crunch", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.premium-guitar-lead", + "group": "plucked-strings", + "name": "主音電吉他", + "shortname": "主音吉", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.distortion-guitar", + "group": "plucked-strings", + "name": "失真電吉他", + "shortname": "失真電吉", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-modern-electric-bass", + "group": "plucked-strings", + "name": "現代電貝斯", + "shortname": "現代貝", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.hq-vintage-electric-bass", + "group": "plucked-strings", + "name": "復古電貝斯", + "shortname": "復古貝", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.electric-bass", + "group": "plucked-strings", + "name": "電貝斯", + "shortname": "El. B.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.electric-bass-pick", + "group": "plucked-strings", + "name": "電貝斯(撥片)", + "shortname": "電貝", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.slap-bass", + "group": "plucked-strings", + "name": "拍擊貝斯", + "shortname": "拍擊貝斯", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.koto", + "group": "plucked-strings", + "name": "日本箏", + "shortname": "日本箏", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.shamisen", + "group": "plucked-strings", + "name": "三味線(日本三弦)", + "shortname": "三味線", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.oud", + "group": "plucked-strings", + "name": "烏德琴(阿拉伯魯特琴)", + "shortname": "烏德琴", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.banjo", + "group": "plucked-strings", + "name": "班卓琴", + "shortname": "Bj.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.mandolin", + "group": "plucked-strings", + "name": "曼陀林", + "shortname": "Mdn.", + "type": "pitched", + "premium": true + }, + { + "id": "plucked-strings.harp", + "group": "plucked-strings", + "name": "豎琴", + "shortname": "Hrp.", + "type": "pitched", + "premium": false + }, + { + "id": "plucked-strings.sitar", + "group": "plucked-strings", + "name": "西塔琴", + "shortname": "Si.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "strings", + "name": "弦樂", + "instruments": [ + { + "id": "strings.hq-violin", + "group": "strings", + "name": "小提琴", + "shortname": "Vln.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violin", + "group": "strings", + "name": "小提琴", + "shortname": "Vln.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.violin-lead", + "group": "strings", + "name": "主音小提琴", + "shortname": "主音小提", + "type": "pitched", + "premium": true + }, + { + "id": "strings.hq-viola", + "group": "strings", + "name": "中提琴", + "shortname": "Vla.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.viola", + "group": "strings", + "name": "中提琴", + "shortname": "Vla.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-cello", + "group": "strings", + "name": "大提琴", + "shortname": "Vc.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.violoncello", + "group": "strings", + "name": "大提琴", + "shortname": "Vc.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.hq-contrabass", + "group": "strings", + "name": "低音提琴", + "shortname": "Cb.", + "type": "pitched", + "premium": true + }, + { + "id": "strings.contrabass", + "group": "strings", + "name": "低音提琴", + "shortname": "Cb.", + "type": "pitched", + "premium": false + }, + { + "id": "strings.string-ensemble", + "group": "strings", + "name": "弦樂合奏", + "shortname": "弦樂合", + "type": "pitched", + "premium": true + }, + { + "id": "strings.erhu", + "group": "strings", + "name": "中國二胡", + "shortname": "二胡", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "vocals", + "name": "人聲", + "instruments": [ + { + "id": "vocals.hq-choir-soprano-women", + "group": "vocals", + "name": "合唱女高音(成人)", + "shortname": "女高", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-girls", + "group": "vocals", + "name": "合唱女童高音", + "shortname": "女高", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-soprano-boys", + "group": "vocals", + "name": "合唱男童高音", + "shortname": "女高", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-countertenor-men", + "group": "vocals", + "name": "合唱假聲男高音(男聲)", + "shortname": "Cnt.", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-women", + "group": "vocals", + "name": "合唱女中音(成人)", + "shortname": "女低音", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-alto-girls", + "group": "vocals", + "name": "合唱女童中音", + "shortname": "女低音", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-hall", + "group": "vocals", + "name": "合唱男高音(音樂廳)", + "shortname": "男高", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-tenor-cathedral", + "group": "vocals", + "name": "合唱男高音(大教堂)", + "shortname": "男高", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-hall", + "group": "vocals", + "name": "合唱男低音(音樂廳)", + "shortname": "男低音", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.hq-choir-bass-cathedral", + "group": "vocals", + "name": "合唱男低音(大教堂)", + "shortname": "男低音", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.choir-soprano", + "group": "vocals", + "name": "合唱女高音", + "shortname": "女高", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-alto", + "group": "vocals", + "name": "合唱女中音", + "shortname": "女低音", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-tenor", + "group": "vocals", + "name": "合唱男高音", + "shortname": "男高", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-bass", + "group": "vocals", + "name": "合唱男低音", + "shortname": "男低音", + "type": "pitched", + "premium": false + }, + { + "id": "vocals.choir-aahs", + "group": "vocals", + "name": "合唱「啊」", + "shortname": "合唱「啊」", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-oohs", + "group": "vocals", + "name": "人聲「嗚」", + "shortname": "人聲 Ooh", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.voice-lead", + "group": "vocals", + "name": "人聲主奏", + "shortname": "主唱", + "type": "pitched", + "premium": true + }, + { + "id": "vocals.kazoo", + "group": "vocals", + "name": "卡祖笛", + "shortname": "卡祖笛", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "woodwinds", + "name": "木管樂器", + "instruments": [ + { + "id": "woodwinds.piccolo", + "group": "woodwinds", + "name": "短笛", + "shortname": "Picc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-orchestral-flute", + "group": "woodwinds", + "name": "管弦樂長笛", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-traditional-flute", + "group": "woodwinds", + "name": "傳統長笛", + "shortname": "Flt.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.flute", + "group": "woodwinds", + "name": "長笛", + "shortname": "Fl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-flute", + "group": "woodwinds", + "name": "中音長笛", + "shortname": "A. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.pan-flute", + "group": "woodwinds", + "name": "排簫", + "shortname": "Pn. Fl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.recorder", + "group": "woodwinds", + "name": "直笛", + "shortname": "Rec.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.alto-recorder-in-f", + "group": "woodwinds", + "name": "F調中音直笛", + "shortname": "中音直笛", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.tin-whistle", + "group": "woodwinds", + "name": "錫笛", + "shortname": "愛爾蘭哨笛", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.oboe", + "group": "woodwinds", + "name": "雙簧管", + "shortname": "Ob.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.english-horn", + "group": "woodwinds", + "name": "英國管", + "shortname": "E. Hn.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-concert-clarinet", + "group": "woodwinds", + "name": "標準單簧管(降B)", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-clarinet-ensemble", + "group": "woodwinds", + "name": "單簧管二重奏", + "shortname": "Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.clarinet", + "group": "woodwinds", + "name": "單簧管", + "shortname": "Cl.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-clarinet", + "group": "woodwinds", + "name": "中音單簧管", + "shortname": "中音單簧管", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bass-clarinet", + "group": "woodwinds", + "name": "低音單簧管", + "shortname": "B. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.contrabass-clarinet", + "group": "woodwinds", + "name": "倍低音單簧管", + "shortname": "Cb. Cl.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bassoon", + "group": "woodwinds", + "name": "巴松管", + "shortname": "Bsn.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.contrabassoon", + "group": "woodwinds", + "name": "倍低音巴松管", + "shortname": "倍低音巴松管", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-soprano-saxophone", + "group": "woodwinds", + "name": "高音薩克斯風", + "shortname": "S. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-alto-saxophone", + "group": "woodwinds", + "name": "中音薩克斯風", + "shortname": "A. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-tenor-saxophone", + "group": "woodwinds", + "name": "次中音薩克斯風", + "shortname": "T. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.hq-baritone-saxophone", + "group": "woodwinds", + "name": "上低音薩克斯風", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.soprano-saxophone", + "group": "woodwinds", + "name": "高音薩克斯風", + "shortname": "S. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.alto-saxophone", + "group": "woodwinds", + "name": "中音薩克斯風", + "shortname": "A. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.tenor-saxophone", + "group": "woodwinds", + "name": "次中音薩克斯風", + "shortname": "T. Sax.", + "type": "pitched", + "premium": false + }, + { + "id": "woodwinds.baritone-saxophone", + "group": "woodwinds", + "name": "上低音薩克斯風", + "shortname": "Bar. Sax.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.bagpipe", + "group": "woodwinds", + "name": "風笛", + "shortname": "Bagp.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.ocarina", + "group": "woodwinds", + "name": "陶笛", + "shortname": "Oc.", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.dizi-flute", + "group": "woodwinds", + "name": "笛子(中國笛)", + "shortname": "笛子", + "type": "pitched", + "premium": true + }, + { + "id": "woodwinds.shakuhachi-flute", + "group": "woodwinds", + "name": "尺八(日本竹笛)", + "shortname": "Sh.", + "type": "pitched", + "premium": true + } + ] + }, + { + "id": "special", + "name": "特殊音色", + "instruments": [ + { + "id": "special.cat", + "group": "special", + "name": "貓叫聲", + "shortname": "貓", + "type": "pitched", + "premium": false + }, + { + "id": "special.starwars", + "group": "special", + "name": "星際大戰套組", + "shortname": "星戰", + "type": "unpitched", + "premium": false + } + ] + } + ] +} diff --git a/package.json b/package.json index 970c426..e259711 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,7 @@ "default": "./dist/src/index.js" }, "./data/instruments.json": "./data/instruments.json", + "./data/i18n/*.json": "./data/i18n/*.json", "./schema/instruments.schema.json": "./schema/instruments.schema.json" }, "files": [ diff --git a/scripts/validate.mjs b/scripts/validate.mjs index 5d01af0..eb2a973 100644 --- a/scripts/validate.mjs +++ b/scripts/validate.mjs @@ -1,8 +1,10 @@ -// Validates data/instruments.json against the JSON Schema, plus cross-field invariants -// the schema cannot express (id format, group consistency, ID uniqueness). +// Validates data/instruments.json and every localized data/i18n/.json against the JSON +// Schema, plus cross-field invariants the schema cannot express (id format, group consistency, +// ID uniqueness). Localized catalogs share the same shape as the English one, and must also expose +// the exact same set of group/instrument IDs in the same order — only names are allowed to differ. // Run with: pnpm validate import Ajv from 'ajv'; -import { readFileSync } from 'node:fs'; +import { readdirSync, readFileSync } from 'node:fs'; import { fileURLToPath } from 'node:url'; import path from 'node:path'; @@ -10,36 +12,58 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url)); const root = path.join(__dirname, '..'); const schema = JSON.parse(readFileSync(path.join(root, 'schema/instruments.schema.json'), 'utf8')); -const data = JSON.parse(readFileSync(path.join(root, 'data/instruments.json'), 'utf8')); - -const ajv = new Ajv({ allErrors: true }); -const validate = ajv.compile(schema); +const validate = new Ajv({ allErrors: true }).compile(schema); let failed = false; - -if (!validate(data)) { - console.error('Schema validation failed:', validate.errors); +const fail = message => { + console.error(message); failed = true; -} +}; -const seen = new Set(); -for (const group of data.groups) { - for (const instrument of group.instruments) { - if (instrument.group !== group.id) { - console.error( - `group mismatch: "${instrument.id}" is listed under "${group.id}" but has group="${instrument.group}"`, - ); - failed = true; - } - if (!instrument.id.startsWith(`${group.id}.`)) { - console.error(`id "${instrument.id}" does not start with group prefix "${group.id}."`); - failed = true; - } - if (seen.has(instrument.id)) { - console.error(`duplicate id: "${instrument.id}"`); - failed = true; +// Validates one catalog's schema + cross-field invariants. Returns the ordered list of instrument +// IDs (or null when the schema check fails), so callers can compare structure across locales. +function validateCatalog(label, data) { + if (!validate(data)) { + fail(`${label}: schema validation failed: ${JSON.stringify(validate.errors)}`); + return null; + } + + const ids = []; + const seen = new Set(); + for (const group of data.groups) { + for (const instrument of group.instruments) { + if (instrument.group !== group.id) { + fail(`${label}: "${instrument.id}" is listed under "${group.id}" but has group="${instrument.group}"`); + } + if (!instrument.id.startsWith(`${group.id}.`)) { + fail(`${label}: id "${instrument.id}" does not start with group prefix "${group.id}."`); + } + if (seen.has(instrument.id)) { + fail(`${label}: duplicate id "${instrument.id}"`); + } + seen.add(instrument.id); + ids.push(instrument.id); } - seen.add(instrument.id); + } + return ids; +} + +const data = JSON.parse(readFileSync(path.join(root, 'data/instruments.json'), 'utf8')); +const baseIds = validateCatalog('data/instruments.json', data); + +let localeCount = 0; +const i18nDir = path.join(root, 'data/i18n'); +for (const file of readdirSync(i18nDir).sort()) { + if (!file.endsWith('.json')) { + continue; + } + localeCount += 1; + const rel = `data/i18n/${file}`; + const localized = JSON.parse(readFileSync(path.join(i18nDir, file), 'utf8')); + const localeIds = validateCatalog(rel, localized); + // A localized catalog must mirror the English one exactly (same IDs, same order). + if (baseIds && localeIds && JSON.stringify(baseIds) !== JSON.stringify(localeIds)) { + fail(`${rel}: instrument IDs do not match data/instruments.json (same set and order required)`); } } @@ -47,4 +71,7 @@ if (failed) { process.exit(1); } -console.log(`data/instruments.json valid — ${seen.size} instruments across ${data.groups.length} groups`); +console.log( + `data/instruments.json valid — ${baseIds.length} instruments across ${data.groups.length} groups, ` + + `plus ${localeCount} localized catalogs`, +); diff --git a/test/i18n.test.mjs b/test/i18n.test.mjs new file mode 100644 index 0000000..32be88f --- /dev/null +++ b/test/i18n.test.mjs @@ -0,0 +1,64 @@ +// Tests the localized catalogs in data/i18n/.json. Each one must be a complete, drop-in +// catalog: same shape and same instrument IDs (in the same order) as the English data, with only +// the names allowed to differ. Run `pnpm build` first (the English baseline comes from dist/). +import assert from 'node:assert/strict'; +import { readdirSync, readFileSync } from 'node:fs'; +import { fileURLToPath } from 'node:url'; +import path from 'node:path'; +import { test } from 'node:test'; +import { groups, instruments } from '../dist/src/index.js'; + +const i18nDir = path.join(path.dirname(fileURLToPath(import.meta.url)), '../data/i18n'); +const localeFiles = readdirSync(i18nDir) + .filter(file => file.endsWith('.json')) + .sort(); +const loadCatalog = file => JSON.parse(readFileSync(path.join(i18nDir, file), 'utf8')); + +const baseIds = instruments.map(instrument => instrument.id); + +test('ships a localized catalog for every locale', () => { + assert.ok(localeFiles.length >= 27, `expected the full locale set, got ${localeFiles.length}`); +}); + +test('every locale catalog mirrors the English structure exactly', () => { + for (const file of localeFiles) { + const catalog = loadCatalog(file); + assert.equal(catalog.groups.length, groups.length, `${file}: group count`); + + const localeIds = catalog.groups.flatMap(group => group.instruments.map(i => i.id)); + assert.deepEqual(localeIds, baseIds, `${file}: instrument IDs and order must match English`); + + for (const group of catalog.groups) { + for (const instrument of group.instruments) { + const english = instruments.find(i => i.id === instrument.id); + assert.equal(instrument.group, group.id, `${file}: ${instrument.id} group`); + // Names are localized; everything else is locale-independent and must match English. + assert.equal(instrument.type, english.type, `${file}: ${instrument.id} type`); + assert.equal(instrument.premium, english.premium, `${file}: ${instrument.id} premium`); + assert.equal(typeof instrument.name, 'string', `${file}: ${instrument.id} name`); + assert.ok(instrument.name.length > 0, `${file}: ${instrument.id} empty name`); + assert.equal(typeof instrument.shortname, 'string', `${file}: ${instrument.id} shortname`); + } + } + } +}); + +test('translations are applied (fr)', () => { + const fr = loadCatalog('fr.json'); + const trumpet = fr.groups + .flatMap(group => group.instruments) + .find(instrument => instrument.id === 'brass.trumpet'); + assert.equal(trumpet.name, 'Trompette'); + assert.equal(trumpet.shortname, 'Tromp.'); + + const brass = fr.groups.find(group => group.id === 'brass'); + assert.equal(brass.name, 'Cuivres'); +}); + +test('untranslated names fall back to English (fr piano)', () => { + const fr = loadCatalog('fr.json'); + const piano = fr.groups + .flatMap(group => group.instruments) + .find(instrument => instrument.id === 'keyboards.piano'); + assert.equal(piano.name, 'Piano'); +});