]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-the-minimum-length-of-hairpins.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / setting-the-minimum-length-of-hairpins.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   texidoces = "
11 Si los reguladores son demasiado cortos, se pueden alargar
12 modificando la propiedad @code{minimum-length} del objeto
13 @code{Hairpin}.
14
15 "
16   doctitlees = "Ajustar la longitud mínima de los reguladores"
17
18 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19 texidocde = "
20 Wenn Crescendo-Klammern zu kurz sind, können sie verlängert werden, indem
21 die @code{minimum-length}-Eigenschaft des @code{Hairpin}-Objektes
22 verändert wird.
23
24 "
25   doctitlede = "Die Mindestlänge von Crescendo-Klammern bestimmen"
26 %% Translation of GIT committish: ae814f45737bd1bdaf65b413a4c37f70b84313b7
27   texidocfr = "
28 Si un soufflet est trop court, il suffit d'ajuster la propriété 
29 @code{minimum-length} de l'objet @code{Hairpin} pour l'allonger.
30
31 "
32   doctitlefr = "Ajustement de la longueur d'un soufflet"
33
34
35   texidoc = "
36 If hairpins are too short, they can be lengthened by modifying the
37 @code{minimum-length} property of the @code{Hairpin} object.
38
39 "
40   doctitle = "Setting the minimum length of hairpins"
41 } % begin verbatim
42
43 \relative c'' {
44   c4\< c\! d\> e\!
45   \override Hairpin #'minimum-length = #5
46   << f1 { s4 s\< s\> s\! } >>
47 }
48