]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly
Merge branch 'master' of /home/jcharles/GIT/Lily/. into translation
[lilypond.git] / Documentation / snippets / hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly
index 9d334e98611d800ec9aef5c10bbac105b92d6ccf..db44168bbb85dc6fbe334845c622a9dd8c78818f 100644 (file)
@@ -1,53 +1,25 @@
-% 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.14.0
-\version "2.14.0"
-\header {
-%% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
-
-  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.17.11"
 
-  doctitlees = "Ocultar las alteraciones sobre notas ligadas al principio de un sistema nuevo"
-
-
-%% Translation of GIT committish: COMMITTISH
-  texidocit = "
-Questo frammento mostra come nascondere le alterazioni delle note con
-legatura di valore all'inizio di un nuovo sistema
-
-"
-  doctitleit = "Nascondere le alterazioni delle note con legatura di valore
-  all'inizio di un nuovo sistema"
+\header {
+  lsrtags = "pitches"
 
-%% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
-  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.
+  texidoc = "
+This shows how to hide accidentals on tied notes at the start of a new
+system.
 
 "
-  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
+  \override Accidental.hide-tied-accidental-after-break = ##t
   cis1~ cis~
   \break
   cis
 }
-