From 9d73cb0de78fb2f5b430fc6e6b227ef375966443 Mon Sep 17 00:00:00 2001 From: "Simon A. Eugster" Date: Mon, 29 Jun 2009 11:22:22 +0000 Subject: [PATCH] music note: unicode values corrected svn path=/trunk/kdenlive/; revision=3692 --- src/unicodedialog.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/unicodedialog.cpp b/src/unicodedialog.cpp index f1e9207b..34a85118 100644 --- a/src/unicodedialog.cpp +++ b/src/unicodedialog.cpp @@ -164,11 +164,11 @@ QString UnicodeDialog::unicodeInfo(QString unicode) infoText = i18n("Open box; stands for a space."); } else if (u == "2669") { infoText = i18n("Quarter note (Am.) or crochet (Brit.). See Wikipedia:Quarter_note"); - } else if (u == "266a") { + } else if (u == "266a" || u == "266b") { infoText = i18n("Eighth note (Am.) or quaver (Brit.). Half as long as a quarter note (U+2669). See Wikipedia:Eighth_note"); - } else if (u == "266b") { - infoText = i18n("Sixteenth note (Am.) or semiquaver (Brit.). Half as long as an eighth note (U+266a). See Wikipedia:Sixteenth_note"); } else if (u == "266c") { + infoText = i18n("Sixteenth note (Am.) or semiquaver (Brit.). Half as long as an eighth note (U+266a). See Wikipedia:Sixteenth_note"); + } else if (u == "1D162") { infoText = i18n("Thirty-second note (Am.) or demisemiquaver (Brit.). Half as long as a sixteenth note (U+266b). See Wikipedia:Thirty-second_note"); } else { infoText = i18n("No additional information available for this character."); -- 2.39.2