]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-the-number-of-augmentation-dots-per-note.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / changing-the-number-of-augmentation-dots-per-note.ly
index 08acb0e72f7a08d3392fda52705ac5606718eeb9..0719c560b1a62836e5c91dce7937397bb6bb91ad 100644 (file)
@@ -4,30 +4,11 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.2"
+\version "2.17.6"
 
 \header {
   lsrtags = "expressive-marks, rhythms"
 
-%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
-
-  texidoces = "
-Este código muestra cómo cambiar la cantidad de puntillos de una nota.
-
-"
-
-  doctitlees = "Modificar el número de puntillos de una nota"
-
-
-%% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
-  texidocfr = "
-Voici comment modifier le nombre de points d'augmentation
-affectés à une note en particulier.
-
-"
-  doctitlefr = "Spécification du nombre de points d'augmentation d'une note"
-
-
   texidoc = "
 This code demonstrates how to change the number of augmentation dots on
 a single note.
@@ -38,10 +19,10 @@ a single note.
 
 \relative c' {
   c4.. a16 r2 |
-  \override Dots #'dot-count = #4
+  \override Dots.dot-count = #4
   c4.. a16 r2 |
-  \override Dots #'dot-count = #0
+  \override Dots.dot-count = #0
   c4.. a16 r2 |
-  \revert Dots #'dot-count
+  \revert Dots.dot-count
   c4.. a16 r2 |
 }