]> git.donarmstrong.com Git - lilypond.git/blobdiff - ly/suomi.ly
Update texinfo.tex.
[lilypond.git] / ly / suomi.ly
index 69ea3a726e590f6c3b4c1dc0739ace3dd8b48598..4b80c8046a2cf4319884f7037d6c12537acc8d30 100644 (file)
@@ -1,10 +1,25 @@
-% common finnish names for notes. "es" means flat, "is" means sharp
-%
-% by Heikki Junes <<heikki.junes@hut.fi>>
-% based on svenska.ly by Mats Bengtsson.
+%%%% suomi.ly -- common Finnish names for notes
+%%%%
+%%%% source file of the GNU LilyPond music typesetter
+%%%%
+%%%% (c) 2001--2009 Heikki Junes <heikki.junes@hut.fi>
 
-% 2001/08/28 Heikki Junes <<heikki.junes@hut.fi>>
-%            added bb and marked heses as `unusual'
+\version "2.12.0"
+
+%{
+
+  es   = flat
+  eses = double-flat
+
+  is   = sharp
+  isis = double-sharp
+
+  English: c  d  e  f  g  a  bf b
+  Finnish: c  d  e  f  g  a  b  h
+
+  Adapted from svenska.ly
+
+%}
 
 pitchnamesSuomi = #`(
        (ceses . ,(ly:make-pitch -1 0 DOUBLE-FLAT))
@@ -38,7 +53,8 @@ pitchnamesSuomi = #`(
        (a . ,(ly:make-pitch -1 5 NATURAL))
        (ais . ,(ly:make-pitch -1 5 SHARP))
        (aisis . ,(ly:make-pitch -1 5 DOUBLE-SHARP))
-       (bb . ,(ly:make-pitch -1 6 DOUBLE-FLAT))
+       (bb . ,(ly:make-pitch -1 6 DOUBLE-FLAT)) ;; should be bes. Kept for downwards compatibility
+       (bes . ,(ly:make-pitch -1 6 DOUBLE-FLAT))
        (heses . ,(ly:make-pitch -1 6 DOUBLE-FLAT))  ;;non-standard name for bb
        (b . ,(ly:make-pitch -1 6 FLAT))
        (h . ,(ly:make-pitch -1 6 NATURAL))
@@ -48,6 +64,4 @@ pitchnamesSuomi = #`(
 
 pitchnames = \pitchnamesSuomi
 
-\version "2.3.16"
-
 #(ly:parser-set-note-names parser pitchnames)