]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly
Merge remote-tracking branch 'origin/translation' into staging
[lilypond.git] / Documentation / snippets / hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly
index bd80b8c369d1ca32c4dadf4871e7b8fef8f1067c..7cb8869e0afd7cbd90cd056a12f689fff3f2708e 100644 (file)
@@ -1,40 +1,25 @@
-% Do not edit this file; it is automatically
-% generated from Documentation/snippets/new
-% This file is in the public domain.
-%% Note: this file works from version 2.13.36
-\version "2.13.40"
-\header {
-%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce
-
-  texidoces = "
-Aquí se muestra la manera de ocultar las alteraciones de las notas
-ligadas al comienzo de un sistema nuevo.
-
-"
+%% 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.19.2"
 
-  doctitlees = "Ocultar las alteraciones sobre notas ligadas al principio de un sistema nuevo"
+\header {
+  lsrtags = "pitches"
 
+  texidoc = "
+This shows how to hide accidentals on tied notes at the start of a new
+system.
 
-%% Translation of GIT committish: 31097723b2b816696ad61696630a80ff17a39557
-  texidocfr = "Cet exemple illustre comment, lorsqu'une note affublée
-  d'une altération accidentelle est prolongée, ne pas répéter cette
-  altération après un saut de ligne.
 "
-  doctitlefr = "Non répétition de l'altération après saut de ligne
-  sur liaison de prolongation"
-
-
-  lsrtags = "pitches"
-  texidoc = "This shows how to hide accidentals on tied notes at the beginning of a
-new system."
-  doctitle = "Hiding accidentals on tied notes at the beginning of a new system"
+  doctitle = "Hiding accidentals on tied notes at the start of a new system"
 } % begin verbatim
 
-
 \relative c'' {
-  \override Accidental #'hide-tied-accidental-after-break = ##t
-  cis1~ cis~
+  \override Accidental.hide-tied-accidental-after-break = ##t
+  cis1~ 1~
   \break
   cis
 }
-