]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-text-for-sustain-markings.ly
Doc-es: add translations for new snippets. Update LSR
[lilypond.git] / Documentation / snippets / changing-the-text-for-sustain-markings.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.16"
5
6 \header {
7 %% Translation of GIT committish: 5a7301fc350ffc3ab5bd3a2084c91666c9e9a549
8   texidoces = "
9 Se puede usar @code{Staff.pedalSustainStrings} para fijar el texto de
10 las indicaciones de pisar pedal y levantar pedal.  Observe que las
11 únicas cadenas válidas son las que están en la lista de glifos de
12 pedal: los valores que aparecen en este fragmento de código son una
13 relación exhaustiva.
14
15 "
16   doctitlees = "Modificar el texto de las indicaciones de pedal"
17
18
19
20   lsrtags = "keyboards, tweaks-and-overrides"
21
22   texidoc = "
23 @code{Staff.pedalSustainStrings} can be used to set the text used for
24 pedal down and up.  Note that the only valid strings are those found in
25 the list of pedal glyphs - the values used this snippet constitute an
26 exhaustive list.
27
28 "
29   doctitle = "Changing the text for sustain markings"
30 } % begin verbatim
31
32 sustainNotes = { c4\sustainOn d e\sustainOff\sustainOn f\sustainOff }
33
34 \relative c' {
35   \sustainNotes
36   \set Staff.pedalSustainStrings = #'("P" "P-" "-")
37   \sustainNotes
38   \set Staff.pedalSustainStrings = #'("d" "de" "e")
39   \sustainNotes
40   \set Staff.pedalSustainStrings = #'("M" "M-" "-")
41   \sustainNotes
42   \set Staff.pedalSustainStrings = #'("Ped" "*Ped" "*")
43   \sustainNotes
44 }