]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / preventing-natural-signs-from-being-printed-when-the-key-signature-changes.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 = "pitches"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10 doctitlees = "Evitar que se impriman becuadros cuando cambia la armadura"
11 texidoces = "
12 Cuando cambia la armadura de la tonalidad, se imprimen becuadros
13 automáticamente para cancelar las alteraciones de las armaduras
14 anteriores.  Esto se puede evitar estableciendo al valor \"falso\" la
15 propiedad @code{printKeyCancellation} del contexto @code{Staff}.
16
17 "
18
19 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
20 doctitlede = "Auflösungzeichen nicht setzen, wenn die Tonart wechselt"
21
22 texidocde = "
23 Wenn die Tonart wechselt, werden automatisch Auflösungszeichen ausgegeben,
24 um Versetzungszeichen der vorherigen Tonart aufzulösen.  Das kann
25 verhindert werden, indem die @code{printKeyCancellation}-Eigenschaft
26 im @code{Staff}-Kontext auf \"false\" gesetzt wird.
27 "
28 %% Translation of GIT committish: 59968a089729d7400f8ece38d5bc98dbb3656a2b
29   texidocfr = "
30 Après un changement de tonalité, un bécarre est imprimé pour annuler
31 toute altération précédente.  Ceci peut être supprimé en réglant à
32 @code{\"false\"} la propriété @code{printKeyCancellation} du contexte
33 @code{Staff}. 
34
35 "
36
37   doctitlefr = "Suppression des bécarres superflus après un changement de
38 tonalité"
39
40   texidoc = "
41 When the key signature changes, natural signs are automatically printed
42 to cancel any accidentals from previous key signatures.  This may be
43 prevented by setting to @code{f} the @code{printKeyCancellation}
44 property in the @code{Staff} context.
45
46 "
47   doctitle = "Preventing natural signs from being printed when the key signature changes"
48 } % begin verbatim
49
50 \relative c' {
51   \key d \major
52   a4 b cis d
53   \key g \minor
54   a4 bes c d
55   \set Staff.printKeyCancellation = ##f
56   \key d \major
57   a4 b cis d
58   \key g \minor
59   a4 bes c d
60 }
61