Skip to content

Commit

Permalink
Update musicutils.js
Browse files Browse the repository at this point in the history
  • Loading branch information
omsuneri authored Sep 22, 2024
1 parent a4d3a7e commit c057647
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions js/utils/musicutils.js
Original file line number Diff line number Diff line change
Expand Up @@ -1554,24 +1554,24 @@ const OSCTYPES = [
* @constant {Array<Array<string>>}
*/
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)"]
];

/**
* Array of available temperaments.
* @type {Array<Array<string>>}
*/
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"]
];

/**
Expand Down

0 comments on commit c057647

Please sign in to comment.