Skip to content

Commit da98e88

Browse files
committed
Fix Mu4 compatibility
Seem it doesn't like translatable strings in the title, but does in the description.
1 parent 4ebb16e commit da98e88

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

blacknotes.qml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// Copyright (C)2010 Nicolas Froment (lasconic)
66
// Copyright (C)2014 Jörn Eichler (heuchi)
7-
// Copyright (C)2012-2019 Joachim Schmitz (Jojo-Schmitz)
7+
// Copyright (C)2012-2024 Joachim Schmitz (Jojo-Schmitz)
88
//
99
// This program is free software; you can redistribute it and/or modify
1010
// it under the terms of the GNU General Public License version 2.
@@ -25,12 +25,12 @@ import MuseScore 3.0
2525

2626
MuseScore {
2727
version: "3.0"
28-
description: "This plugin paints all chords and rests in black"
28+
description: qsTr("This plugin paints all chords and rests in black")
2929
menuPath: "Plugins.Notes.Color Notes in Black"
3030

3131
Component.onCompleted : {
3232
if (mscoreMajorVersion >= 4) {
33-
title = qsTr("Black Notes") ;
33+
title = "Color Notes in Black" ;
3434
// thumbnailName = ".png";
3535
categoryCode = "color-notes";
3636
}

0 commit comments

Comments
 (0)