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