Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions js/utils/musicutils.js
Original file line number Diff line number Diff line change
Expand Up @@ -5791,9 +5791,14 @@ const i18nSolfege = (note) => {
if (i !== -1) {
return solfnotes_[i] + obj[1];
} else {
// Wasn't solfege so it doesn't need translation.
return note;
// Check if the note is in a different language.
const i = Object.values(solfnotes_).indexOf(obj[0]);
if (i !== -1) {
return SOLFNOTES[i] + obj[1];
}
}
// Wasn't solfege so it doesn't need translation.
return note;
};

/**
Expand Down