From b23ba5c0dc7116a08a177559fb2d3af1549cf2fc Mon Sep 17 00:00:00 2001 From: tux Date: Wed, 22 Nov 2023 18:36:59 +0100 Subject: [PATCH] =?UTF-8?q?Aussprache=20ist=20nat=C3=BCrlich=20pronunciati?= =?UTF-8?q?on?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- default_songinfo_style.ly | 4 ++-- footer_with_songinfo.ly | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/default_songinfo_style.ly b/default_songinfo_style.ly index 9e5da1a..4c23d65 100644 --- a/default_songinfo_style.ly +++ b/default_songinfo_style.ly @@ -8,7 +8,7 @@ (copyright (chain-assoc-get 'songinfo:copyright props #f)) (infotext (chain-assoc-get 'songinfo:infotext props #f)) (translation (chain-assoc-get 'songinfo:translation props #f)) - (spelling (chain-assoc-get 'songinfo:spelling props #f)) + (pronunciation (chain-assoc-get 'songinfo:pronunciation props #f)) (year_text (chain-assoc-get 'songinfo:year_text props #f)) (year_melody (chain-assoc-get 'songinfo:year_melody props #f))) (stack-lines DOWN 0.0 (chain-assoc-get 'baseline-skip props) @@ -22,7 +22,7 @@ (if copyright (string-append "© " copyright) "") (if infotext (string-append "\n\n" infotext) "") (if translation (string-append "\n\nÜbersetzung: " translation) "") - (if spelling (string-append "\n\nAussprache: " spelling) "")))))))) + (if pronunciation (string-append "\n\nAussprache: " pronunciation) "")))))))) (make-null-markup) ) } \ No newline at end of file diff --git a/footer_with_songinfo.ly b/footer_with_songinfo.ly index 9735721..c5d2185 100644 --- a/footer_with_songinfo.ly +++ b/footer_with_songinfo.ly @@ -37,7 +37,7 @@ (composer (chain-assoc-get 'header:composer props (if (and composerId (not poet-and-composer-same)) (format-composer composerId) #f))) (copyright (chain-assoc-get 'header:copyright props #f)) (translation (chain-assoc-get 'header:translation props #f)) - (spelling (chain-assoc-get 'header:spelling props #f)) + (pronunciation (chain-assoc-get 'header:pronunciation props #f)) (year_text (chain-assoc-get 'header:year_text props #f)) (year_melody (chain-assoc-get 'header:year_melody props #f))) (markup @@ -51,8 +51,8 @@ (if (and infotext (not (and (string? infotext) (string-null? infotext)))) infotext #f)) #:override (cons 'songinfo:translation (if (and translation (not (and (string? translation) (string-null? translation)))) translation #f)) - #:override (cons 'songinfo:spelling - (if (and spelling (not (and (string? spelling) (string-null? spelling)))) spelling #f)) + #:override (cons 'songinfo:pronunciation + (if (and pronunciation (not (and (string? pronunciation) (string-null? pronunciation)))) pronunciation #f)) #:override (cons 'songinfo:year_text (if (and year_text (not (and (string? year_text) (string-null? year_text)))) year_text #f)) #:override (cons 'songinfo:year_melody