]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/de/usage/running.itely
Doc: updates translation status
[lilypond.git] / Documentation / de / usage / running.itely
index 32149adf0249189ea40772db6959b22edc0e53ce..ff5bdb67befda3876333ab9f766a4539aa5e91ac 100644 (file)
@@ -8,7 +8,7 @@
     Guide, node Updating translation committishes..
 @end ignore
 
-@c \version "2.17.6"
+@c \version "2.19.21"
 
 @c Translators: Reinhold Kainhofer, Till Paala
 @c Translation checkers: Till Paala
@@ -32,7 +32,7 @@ Dieses Kapitel behandelt die technischen Details, wie Lilypond ausgeführt werde
 @translationof Normal usage
 
 Die meisten Benutzer führen LilyPond von einer graphischen Benutzeroberfläche
-aus. Siehe @rlearning{Übung}, falls Sie dies nicht bereits getan haben.  Wenn
+aus. Siehe @rlearning{Tutorium}, falls Sie dies nicht bereits getan haben.  Wenn
 Sie einen alternativen Editor für Ihre LilyPond-Dateien verwenden, lesen Sie
 bitte die Dokumentation dieses Editors.
 
@@ -1062,9 +1062,9 @@ annehmen, dass folgendes Beispiel alle Notenköpfe in dem Notensystem
 rot macht, aber als Resultat hat man zwei Systeme, während die
 Notenköpfe immernoch schwarz im unteren System erscheinen.
 
-@lilypond[quote,verbatim,relative=2]
+@lilypond[quote,verbatim,fragment]
 \override Staff.NoteHead.color = #red
-\new Staff { a }
+\new Staff { a' }
 @end lilypond
 
 Das liegt daran, dass kein @code{Staff}-Kontext existiert, wenn
@@ -1073,10 +1073,10 @@ für diesen Befehl erstellt wird.  Dann aber erstellt @code{\new Staff}
 noch ein zusätzliches System, wo die Noten gesetzt werden.  Die
 richtige Schreibweise wäre:
 
-@lilypond[quote,verbatim,relative=2]
+@lilypond[quote,verbatim]
 \new Staff {
   \override Staff.NoteHead.color = #red
-  a
+  a'
 }
 @end lilypond
 
@@ -1088,7 +1088,7 @@ erstellen.
 
 @lilypond[quote,verbatim]
 \repeat unfold 2 {
-  \relative c' { c4 d e f }
+  \relative { c'4 d e f }
 }
 @end lilypond
 
@@ -1098,7 +1098,7 @@ umgangen werden.
 @lilypond[quote,verbatim]
 \new Voice {
   \repeat unfold 2 {
-    \relative c' { c4 d e f }
+    \relative { c'4 d e f }
   }
 }
 @end lilypond