]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/aligning-and-centering-instrument-names.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / aligning-and-centering-instrument-names.ly
index 3706adfbb2280e6a99317e4f65ba2f51d6019cd4..b67aeac03a360a4c01f1a2ddfa57c0e0b5842de2 100644 (file)
@@ -4,34 +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 = "paper-and-layout, text, titles"
 
-%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
-  texidoces = "
-La alineación horizontal de los nombres de instrumento se puede
-trucar modificando la propiedad @code{Staff.InstrumentName
-#'self-alignment-X}.  Las variables de @code{\\layout}
-@code{indent} y @code{short-indent} definen el espacio en que se
-alinean los nombres de instrumento antes del primer sistema y de
-los siguientes, respectivamente.
-
-"
-  doctitlees = "Alinear y centrar los nombres de instrumento"
-
-%% Translation of GIT committish: 85394d425536d267ed0cb71d17023849f1611180
-  texidocfr = "
-L'alignement horizontal des noms d'instrument se gère à l'aide de la
-propriété @code{Staff.InstrumentName #'self-alignment-X}.  Les variables
-@code{indent} et @code{short-indent}, attachées au bloc @code{\\layout},
-déterminent l'espace alloué à l'alignement des noms d'instrument,
-respectivement dans leurs formes développée et abrégée.
-
-"
-  doctitlefr = "Alignement des noms d'instrument"
-
   texidoc = "
 The horizontal alignment of instrument names is tweaked by changing the
 @code{Staff.InstrumentName #'self-alignment-X} property. The
@@ -51,7 +28,7 @@ and the following systems, respectively.
 \score {
   \new StaffGroup <<
     \new Staff {
-      \override Staff.InstrumentName #'self-alignment-X = #LEFT
+      \override Staff.InstrumentName.self-alignment-X = #LEFT
       \set Staff.instrumentName = \markup \left-column {
         "Left aligned"
         "instrument name"
@@ -62,7 +39,7 @@ and the following systems, respectively.
       c''1
     }
     \new Staff {
-      \override Staff.InstrumentName #'self-alignment-X = #CENTER
+      \override Staff.InstrumentName.self-alignment-X = #CENTER
       \set Staff.instrumentName = \markup \center-column {
         Centered
         "instrument name"
@@ -72,7 +49,7 @@ and the following systems, respectively.
       g'1
     }
     \new Staff {
-      \override Staff.InstrumentName #'self-alignment-X = #RIGHT
+      \override Staff.InstrumentName.self-alignment-X = #RIGHT
       \set Staff.instrumentName = \markup \right-column {
         "Right aligned"
         "instrument name"