From 0067695459e3fe8a8bb6f2c68d5e7accb93fa0f5 Mon Sep 17 00:00:00 2001 From: Francisco Vila Date: Mon, 26 Sep 2011 17:10:51 +0200 Subject: [PATCH] Doc-es: update CHANGES, Fundamental, Pitches, ... ... Repeats, Rhythms, Simultaneous, Spacing, World, External, Running, Updating. --- Documentation/es/changes.tely | 29 +++++++++++++++++++- Documentation/es/learning/fundamental.itely | 4 +-- Documentation/es/notation/pitches.itely | 6 +++- Documentation/es/notation/repeats.itely | 16 ++++++++++- Documentation/es/notation/rhythms.itely | 6 +--- Documentation/es/notation/simultaneous.itely | 6 ++-- Documentation/es/notation/spacing.itely | 8 +++--- Documentation/es/notation/world.itely | 10 +++---- Documentation/es/usage/external.itely | 8 +++++- Documentation/es/usage/running.itely | 4 +-- Documentation/es/usage/updating.itely | 9 +++++- 11 files changed, 80 insertions(+), 26 deletions(-) diff --git a/Documentation/es/changes.tely b/Documentation/es/changes.tely index 242a6673af..fd3507b7ec 100644 --- a/Documentation/es/changes.tely +++ b/Documentation/es/changes.tely @@ -1,6 +1,6 @@ \input texinfo @c -*- coding: utf-8; mode: texinfo; documentlanguage: es -*- @ignore - Translation of GIT committish: 5b7a2524c1d3b7e3df53219aafc10bb3f33a7c53 + Translation of GIT committish: 688f5f1711d8ca07338385a2ae0191b1a8aae315 When revising a translation, copy the HEAD committish of the version that you are working on. For details, see the Contributors' @@ -68,6 +68,33 @@ which scares away people. * only show user-visible changes. @end ignore +@item +Las funciones musicales, de eventos y de Scheme se pueden ahora +definir con argumentos opcionales antes de los argumentos +obligatorios. + +@item +Hay una instrucción nueva @code{define-event-function} en analogía con +@code{define-music-function} que se puede usar para definir funciones +musicales que actúan como eventos sin que se requiera un especificador +de dirección como (@code{-}, @code{^} o @code{_}) antes de ellos. + +@lilypond[quote,verbatim,raggedright] +dyn=#(define-event-function (parser location arg) (markup?) + (make-dynamic-script arg)) +\relative c' { c\dyn pfsss } +@end lilypond + +@item +Se puede incluir una lista de alias en ASCII para caracteres +especiales. + +@lilypond[quote,verbatim] +\paper { + #(include-special-characters) +} +\markup "• † ©right; &OE; &ss; ¶" +@end lilypond @item Hay una instrucción nueva @code{define-scheme-function} en analogía diff --git a/Documentation/es/learning/fundamental.itely b/Documentation/es/learning/fundamental.itely index 594e9f8575..2ccb44cccc 100644 --- a/Documentation/es/learning/fundamental.itely +++ b/Documentation/es/learning/fundamental.itely @@ -1,7 +1,7 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: es -*- @ignore - Translation of GIT committish: 2055f35c47a045a50a01ff4dba8524322cfc3b48 + Translation of GIT committish: 7ae1e99ff67432c96faf743bc28ac7b90a47a852 When revising a translation, copy the HEAD committish of the version that you are working on. For details, see the Contributors' @@ -988,7 +988,7 @@ Referencia de la notación: Los contextos de voz también se pueden crear manualmente dentro de un bloque @code{<< >>} para crear música polifónica, utilizando -@code{\voiceOne} ... @code{\voiceFour} para indicar las direcciones +@code{\voiceOne} @dots{} @code{\voiceFour} para indicar las direcciones requeridas de plicas, ligaduras, etc. En partituras más largas, este método es más claro porque permite que las voces estén separadas y reciban nombres más descriptivos. diff --git a/Documentation/es/notation/pitches.itely b/Documentation/es/notation/pitches.itely index d444e2e8d8..b6c3f50405 100644 --- a/Documentation/es/notation/pitches.itely +++ b/Documentation/es/notation/pitches.itely @@ -1,6 +1,6 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: es -*- @ignore - Translation of GIT committish: 4ca01b6da8d60b0d8575be05ae974429c91becd5 + Translation of GIT committish: 0d4c0b0979c200e54cffc6b68671df50d6b90a49 When revising a translation, copy the HEAD committish of the version that you are working on. For details, see the Contributors' @@ -261,6 +261,10 @@ independientemente del número de semitonos de cada uno de ellos. } @end lilypond +Es una consecuencia de las reglas expuestas que la primera nota dentro +de una expresión musical precedida de @code{@w{\relative f}} se +interpreta igual que si estuviera escrita en el modo de altura +absoluta. @seealso Glosario musical: diff --git a/Documentation/es/notation/repeats.itely b/Documentation/es/notation/repeats.itely index 937f24168e..cb7829fe35 100644 --- a/Documentation/es/notation/repeats.itely +++ b/Documentation/es/notation/repeats.itely @@ -1,6 +1,6 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: es -*- @ignore - Translation of GIT committish: 4ca01b6da8d60b0d8575be05ae974429c91becd5 + Translation of GIT committish: f84eab93e732ed2b9aa50436202a28f34243c658 When revising a translation, copy the HEAD committish of the version that you are working on. For details, see the Contributors' @@ -496,6 +496,20 @@ donde @code{@var{expresión_musical}} es una expresión musical y c1 @end lilypond +En ciertos casos, especialmente dentro de un contexto +@code{\relative}, la función @code{\repeat unfold} no es exactamente +igual que escribir la expresión musical varias veces. P. ej.: + +@example +\repeat unfold 2 @{ a'4 b c @} +@end example + +no equivale a + +@example +a'4 b c | a'4 b c +@end example + Se pueden hacer repeticiones desplegadas con finales alternativos. @lilypond[verbatim,quote,relative=2] diff --git a/Documentation/es/notation/rhythms.itely b/Documentation/es/notation/rhythms.itely index 334c34a734..6a3b8bb072 100644 --- a/Documentation/es/notation/rhythms.itely +++ b/Documentation/es/notation/rhythms.itely @@ -1,6 +1,6 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: es -*- @ignore - Translation of GIT committish: e1fb62a6d5f6aaeadafdef10550e38e25704394e + Translation of GIT committish: 875ee88c8a68b924af0916239e8d081acafc4dfb When revising a translation, copy the HEAD committish of the version that you are working on. For details, see the Contributors' @@ -1242,10 +1242,6 @@ moviendo el @code{Timing_translator} y el @snippets - -@lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle] -{changing-the-time-signature-without-affecting-the-beaming.ly} - @lilypondfile[verbatim,quote,texidoc,doctitle] {time-signature-printing-only-the-numerator-as-a-number-instead-of-the-fraction.ly} diff --git a/Documentation/es/notation/simultaneous.itely b/Documentation/es/notation/simultaneous.itely index d05db9bfce..e877146bab 100644 --- a/Documentation/es/notation/simultaneous.itely +++ b/Documentation/es/notation/simultaneous.itely @@ -1,6 +1,6 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: es -*- @ignore - Translation of GIT committish: 4ca01b6da8d60b0d8575be05ae974429c91becd5 + Translation of GIT committish: 7ae1e99ff67432c96faf743bc28ac7b90a47a852 When revising a translation, copy the HEAD committish of the version that you are working on. For details, see the Contributors' @@ -316,7 +316,7 @@ siguiente: @noindent Aquí se crean explícitamente instancias de voces, cada una de las cuales recibe un nombre. Las instrucciones @code{\voiceOne} -... @code{\voiceFour} (voz uno hasta voz cuatro) preparan las voces de +@dots{} @code{\voiceFour} (voz uno hasta voz cuatro) preparan las voces de manera que la primera y segunda voces llevan las plicas hacia arriba, las voces segunda y cuarta llevan las plicas hacia abajo, las cabezas de las notas en las voces tercera y cuarta se desplazan @@ -395,7 +395,7 @@ El primer ejemplo podría haberse tipografiado de la manera siguiente: Esta sintaxis se puede usar siempre que no nos importe que se creen nuevas voces temporales que después serán descartadas. Estas voces creadas implícitamente reciben ajustes equivalentes al efecto de las -instrucciones @code{\voiceOne} ... @code{\voiceFour}, en el orden en +instrucciones @code{\voiceOne} @dots{} @code{\voiceFour}, en el orden en que aparecen en el código. En el siguiente ejemplo, la voz intermedia lleva las plicas hacia diff --git a/Documentation/es/notation/spacing.itely b/Documentation/es/notation/spacing.itely index 529194363c..1856a0ff86 100644 --- a/Documentation/es/notation/spacing.itely +++ b/Documentation/es/notation/spacing.itely @@ -1,7 +1,7 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: es -*- @ignore - Translation of GIT committish: 2763b2de261e4f6263e2d4751b45d7c40f1ef7ea + Translation of GIT committish: 7ae1e99ff67432c96faf743bc28ac7b90a47a852 When revising a translation, copy the HEAD committish of the version that you are working on. For details, see the Contributors' @@ -3476,9 +3476,9 @@ Fragmentos de código: @translationof Fitting music onto fewer pages En ocasiones, podemos terminar con uno o dos pentagramas en una -segunda página (o tercera, o cuarta...). Es fastidioso, especialmente -cuando vemos que las páginas anteriores parecen tener espacio de -sobra. +segunda página (o tercera, o cuarta@dots{}). Es fastidioso, +especialmente cuando vemos que las páginas anteriores parecen tener +espacio de sobra. Al investigar los problemas de disposición, una herramienta de valor incalculable es @code{annotate-spacing}. Esta instrucción imprime los diff --git a/Documentation/es/notation/world.itely b/Documentation/es/notation/world.itely index dcdf78796d..1410a110ef 100644 --- a/Documentation/es/notation/world.itely +++ b/Documentation/es/notation/world.itely @@ -1,7 +1,7 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: es -*- @ignore - Translation of GIT committish: c358ec6f8ed8f31b5fa1d97da6a2284b3759bdfd + Translation of GIT committish: 7ae1e99ff67432c96faf743bc28ac7b90a47a852 When revising a translation, copy the HEAD committish of the version that you are working on. For details, see the Contributors' @@ -555,10 +555,10 @@ completamente diferente de las escalas y modos occidentales: @notation{artık ikili} (12/9 ó 13/9 de tono). Desde el punto de vista de la notación moderna, es conveniente -utilizar las notas occidentales (do, re, mi, ... ó c, d, e, ...) con -alteraciones especiales que elevan o bajan las notas en intervalos de -1/9, 4/9, 5/9 y 8/9 de tono. Esetas alteraciones están definidas en -el archivo @file{makam.ly}. +utilizar las notas occidentales (do, re, mi, @dots{} ó c, d, e, +@dots{}) con alteraciones especiales que elevan o bajan las notas en +intervalos de 1/9, 4/9, 5/9 y 8/9 de tono. Estas alteraciones están +definidas en el archivo @file{makam.ly}. La tabla siguiente relaciona: diff --git a/Documentation/es/usage/external.itely b/Documentation/es/usage/external.itely index 996363786d..7623fefeda 100644 --- a/Documentation/es/usage/external.itely +++ b/Documentation/es/usage/external.itely @@ -1,7 +1,7 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: es -*- @ignore - Translation of GIT committish: d6315a746c47259f56dc2835347985658d71d0c9 + Translation of GIT committish: 2aeac5e3815effa47427dad86d6be811c7b0d8a2 When revising a translation, copy the HEAD committish of the version that you are working on. For details, see the Contributors' @@ -377,6 +377,12 @@ mostrar un resumen de la utilización y las opciones. utilizar IDIOMA para los nombres de las notas, p.ej. 'espanol' para los nombres de las notas en español. +@item --loglevel=@var{loglevel} +fijar el grado en que la salida es prolija al valor dado en +@var{loglevel}. Los valores posibles son @code{NONE} (ninguno), +@code{ERROR} (errores), @code{WARNING} (advertencias), @code{PROGRESS} +(avance; predeterminado) y @code{DEBUG} (depuración). + @item --lxml usar el paquete de Python lxml.etree para el análisis de XML; usa menos memoria y tiempo de CPU. diff --git a/Documentation/es/usage/running.itely b/Documentation/es/usage/running.itely index 36d16c5174..50dc21ba2d 100644 --- a/Documentation/es/usage/running.itely +++ b/Documentation/es/usage/running.itely @@ -1,7 +1,7 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: es -*- @ignore - Translation of GIT committish: f40abd6c55ade9dba9be72ddb415f23a58bb003e + Translation of GIT committish: 7ae1e99ff67432c96faf743bc28ac7b90a47a852 When revising a translation, copy the HEAD committish of the version that you are working on. For details, see the Contributors' @@ -867,7 +867,7 @@ general una o dos líneas por encima. Este mensaje de error aparece al final de los mensajes de la consola o del archivo de registro junto a un mensaje @qq{GUILE señaló un error -...} cada vez que se llame a una rutina de Scheme que +@dots{}} cada vez que se llame a una rutina de Scheme que (incorrectamente) contenga un comentario @emph{de LilyPond} en lugar de un comentario @emph{de Scheme}. diff --git a/Documentation/es/usage/updating.itely b/Documentation/es/usage/updating.itely index b83a3ae947..cb8534d24f 100644 --- a/Documentation/es/usage/updating.itely +++ b/Documentation/es/usage/updating.itely @@ -1,7 +1,7 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: es -*- @ignore - Translation of GIT committish: d6315a746c47259f56dc2835347985658d71d0c9 + Translation of GIT committish: 2aeac5e3815effa47427dad86d6be811c7b0d8a2 When revising a translation, copy the HEAD committish of the version that you are working on. For details, see the Contributors' @@ -161,6 +161,13 @@ se convierte a la última versión disponible. Ejemplo: @option{--to=2.12.2} @item -h, --help Imprimir la ayuda de la utilización. + +@item -l @var{loglevel}, --loglevel=@var{loglevel} +Fijar el grado en que la salida es prolija a @var{loglevel}. Los +valores posibles son @code{NONE} (ninguno), @code{ERROR} (errores), +@code{WARNING} (advertencias), @code{PROGRESS} (avance; +predeterminado) y @code{DEBUG} (depuración). + @end table Para actualizar fragmentos de LilyPond en archivos de texinfo, use -- 2.39.2