]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/controlling-spanner-visibility-after-a-line-break.ly
LSR updates from tarball
[lilypond.git] / Documentation / snippets / controlling-spanner-visibility-after-a-line-break.ly
index 7e9312edb3e6fe9759d5033c570101c475123143..b59c53da0a2043cb8388c2fd54d695bcc797b990 100644 (file)
@@ -1,27 +1,69 @@
-% 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.1
-\version "2.13.16"
+%% 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.14.2"
 
 \header {
   lsrtags = "expressive-marks, tweaks-and-overrides"
-  texidoc = "The visibility of spanners which end on the first note
-following a line break is controlled by the @code{after-line-breaking}
-callback @code{ly:spanner::kill-zero-spanned-time}.
+
+%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
+
+  texidoces = "
+La visibilidad de los objetos de extensión que acaban en la primera
+nota después de un salto de línea está controlada por la función de
+callback de @code{after-line-breaking}
+@code{ly:spanner::kill-zero-spanned-time}.
+
+Para los objetos como los glissandos y los reguladores, el
+comportamiento predeterminado es ocultar el objeto de extensión
+después del salto; la inhabilitación de la función de callback hace
+que el objeto de extensión roto por la izquierda pueda mostrarse.
+
+De forma inversa, los objetos de extensión que son visibles
+normalmente, como los objetos de extensión de texto, se pueden
+ocultar habilitando la función de callback.
+"
+
+  doctitlees = "Controlar la visibilidad de los objetos de
+  extensión después de un salto de línea"
+
+
+%% Translation of GIT committish: f5cfaf8ef4ac347702f554af0944ef0d8396e73a
+  texidocfr = "
+La visibilité des extensions qui se terminent sur la première note après
+un saut de ligne est contrôlé par un appel de @code{after-line-breaking}
+à la fonction @code{ly:spanner::kill-zero-spanned-time}.
+
+Pour des objets tels qu'un glissando ou un soufflet, le comportement
+par défaut est de ne pas être reportés après un saut de ligne.
+L'extension sera donc reprise dès lors que l'appel aura été désactivé.
+
+Il en va inversement pour les extensions qui, par défaut pour les textes
+notamment, sont reportées après un saut de ligne@tie{}; il faudra alors
+activer l'appel pour empêcher leur report.
+
+"
+  doctitlefr = "Contrôle de la visibilité des extensions d'objet après saut de ligne"
+
+  texidoc = "
+The visibility of spanners which end on the first note following a line
+break is controlled by the @code{after-line-breaking} callback
+@code{ly:spanner::kill-zero-spanned-time}.
 
 For objects such as glissandos and hairpins, the default behaviour is
 to hide the spanner after a break; disabling the callback will allow
 the left-broken span to be shown.
 
-Conversely, spanners which are usually visible, such as text spans,
-can be hidden by enabling the callback.
-"
+Conversely, spanners which are usually visible, such as text spans, can
+be hidden by enabling the callback.
 
+"
   doctitle = "Controlling spanner visibility after a line break"
 } % begin verbatim
 
-
 \paper { ragged-right = ##t }
 
 \relative c'' {
@@ -39,4 +81,3 @@ can be hidden by enabling the callback.
   \break
   f,1\!\stopTextSpan
 }
-