From c05764762eb457186c92455f05dc7aa5579f8cec Mon Sep 17 00:00:00 2001 From: omsuneri <142336291+omsuneri@users.noreply.github.com> Date: Sun, 22 Sep 2024 20:21:26 +0530 Subject: [PATCH] Update musicutils.js --- js/utils/musicutils.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/js/utils/musicutils.js b/js/utils/musicutils.js index 40c393d729..37fbf2f2b9 100644 --- a/js/utils/musicutils.js +++ b/js/utils/musicutils.js @@ -1554,11 +1554,11 @@ const OSCTYPES = [ * @constant {Array>} */ const INITIALTEMPERAMENTS = [ - [_("equal"), "equal", "equal"], - [_("just intonation"), "just intonation", "just intonation"], - [_("Pythagorean"), "Pythagorean", "Pythagorean"], - [_("meantone") + " (1/3)", "1/3 comma meantone", "meantone (1/3)"], - [_("meantone") + " (1/4)", "1/4 comma meantone", "meantone (1/4)"] + [_("Equal (12EDO)"), "equal", "equal"], + [_("5-limit Just Intonation"), "just intonation", "just intonation"], + [_("Pythagorean (3-limit JI)"), "Pythagorean", "Pythagorean"], + [_("Meantone") + " (1/3)", "1/3 comma meantone", "meantone (1/3)"], + [_("Meantone") + " (1/4)", "1/4 comma meantone", "meantone (1/4)"] ]; /** @@ -1566,12 +1566,12 @@ const INITIALTEMPERAMENTS = [ * @type {Array>} */ let TEMPERAMENTS = [ - [_("equal"), "equal", "equal"], - [_("just intonation"), "just intonation", "just intonation"], - [_("Pythagorean"), "Pythagorean", "Pythagorean"], - [_("meantone") + " (1/3)", "1/3 comma meantone", "meantone (1/3)"], - [_("meantone") + " (1/4)", "1/4 comma meantone", "meantone (1/4)"], - [_("custom"), "custom", "custom"] + [_("Equal (12EDO)"), "equal", "equal"], + [_("5-limit Just Intonation"), "just intonation", "just intonation"], + [_("Pythagorean (3-limit JI)"), "Pythagorean", "Pythagorean"], + [_("Meantone") + " (1/3)", "1/3 comma meantone", "meantone (1/3)"], + [_("Meantone") + " (1/4)", "1/4 comma meantone", "meantone (1/4)"], + [_("Custom"), "custom", "custom"] ]; /**