]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/redefining-grace-note-global-defaults.ly
Fixes all once-Stem-now-Flag properties in the docs.
[lilypond.git] / Documentation / snippets / redefining-grace-note-global-defaults.ly
index f19f7f1aa851b8c800730642039402124e5c0166..4c2f071f5255a902f55713e4564c03a3f36a2121 100644 (file)
@@ -1,15 +1,59 @@
-%% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
-%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
-%% and then run scripts/auxiliar/makelsr.py
-%%
-%% This file is in the public domain.
-\version "2.12.2"
+% DO NOT EDIT this file manually; it is automatically
+% generated from Documentation/snippets/new
+% Make any changes in Documentation/snippets/new/
+% and then run scripts/auxiliar/makelsr.py
+%
+% This file is in the public domain.
+%% Note: this file works from version 2.15.15
+\version "2.15.15"
 
 \header {
+%% Translation of GIT committish: 2d548a99cb9dba80f2ff035582009477cd37eceb
+  texidoces = "
+
+Los valores predeterminados para las notas de adorno están
+almacenados en los identificadores @code{startGraceMusic},
+@code{stopGraceMusic}, @code{startAcciaccaturaMusic},
+@code{stopAcciaccaturaMusic}, @code{startAppoggiaturaMusic} y
+@code{stopAppoggiaturaMusic}, que están definidos en el archivo
+@file{ly/grace-init.ly}.  Redefiniéndolos se pueden obtener otros
+efectos.
+
+"
+
+  doctitlees = "Redefinición de los valores globales predeterminados para notas de adorno"
+
+
+
+%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
+  texidocde = "
+Die globalen Standardeinstellungen für Verzierungsnoten werden in
+den Variablen@code{startGraceMusic}, @code{stopGraceMusic},
+@code{startAcciaccaturaMusic}, @code{stopAcciaccaturaMusic},
+@code{startAppoggiaturaMusic} und @code{stopAppoggiaturaMusic}
+gespeichert, die in der Datei @file{ly/grace-init.ly} definiert
+sind.  Wenn man sie umdefiniert, können andere Effekte erreicht
+werden.
+
+"
+  doctitlede = "Globale Umdefinition von Verzierungsnoten"
+
+
+
+%% Translation of GIT committish: 374d57cf9b68ddf32a95409ce08ba75816900f6b
+  texidocfr = "
+Vous pouvez modifier les valeurs des variables @code{startGraceMusic},
+@code{stopGraceMusic}, @code{startAcciaccaturaMusic},
+@code{stopAcciaccaturaMusic}, @code{startAppoggiaturaMusic}, et
+@code{stopAppoggiaturaMusic} afin d'en personnaliser les effets.  Pour
+plus de détails, voir le fichier @file{ly/grace-init.ly}.
+
+"
+  doctitlefr = "Redéfinition des réglages de mise en forme par défaut des notes d'ornement"
+
   lsrtags = "rhythms"
 
-%% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
+%% Translation of GIT committish: 2d548a99cb9dba80f2ff035582009477cd37eceb
   texidoces = "
 
 Los valores predeterminados para las notas de adorno están
@@ -66,12 +110,13 @@ other effects may be obtained.
 
 startAcciaccaturaMusic = {
   s1*0(
-  \override Stem #'stroke-style = #"grace"
+  \override Flag #'stroke-style = #"grace"
   \slurDashed
-}
+} % begin verbatim
+
 
 stopAcciaccaturaMusic = {
-  \revert Stem #'stroke-style
+  \revert Flag #'stroke-style
   \slurSolid
   s1*0)
 }