Note names in English and Italian
Hi everyone,
It is possible to show, at the same time, the notes in a score either in English (C D E ...) and Italian (Do Re Mi ...)
I've tried with plugin "Note Names" but obviously this shows only the name of the language set for for the program.
Thanks
Comments
You could modify that plugin to show them translated and untranslated
In reply to You could modify that plugin… by Jojo-Schmitz
OK thank I'll try but how?
In reply to OK thank I'll try but how? by roccodep
Duplicate thw corresponding line(s) and remove the translation mimics from one, add a linefeed or /
In reply to Duplicate thw corresponding… by Jojo-Schmitz
First of all THANK YOU for your help.
You mean something like this?
case 13: text.text = qsTranslate("InspectorAmbitus", "A") + text.text; break;
case 13: text.text = qsTranslate("InspectorAmbitus", "LA") + text.text; break;
In reply to First of all THANK YOU for… by roccodep
Not quite
case 13: text.text = qsTranslate("InspectorAmbitus", "A") + text.text; text.text += "/ A"; break;
In reply to Not quite case 13: text.text… by Jojo-Schmitz
THANK YOU!!!!!
Just finished ... works perfectly!