X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fadding-the-current-date-to-a-score.ly;h=8f0ee5833bf01d9b725213cc63186eab502db05a;hb=f71ede90de06fdc16dad9ed75f38558efe819080;hp=168e16920e34f1926188ad58b306b9bfb525e19c;hpb=217cd2b9de6e783f2a5c8a42be9c70a82195ad20;p=lilypond.git diff --git a/Documentation/snippets/adding-the-current-date-to-a-score.ly b/Documentation/snippets/adding-the-current-date-to-a-score.ly index 168e16920e..8f0ee5833b 100644 --- a/Documentation/snippets/adding-the-current-date-to-a-score.ly +++ b/Documentation/snippets/adding-the-current-date-to-a-score.ly @@ -1,24 +1,27 @@ -%% Do not edit this file; it is automatically +%% DO NOT EDIT this file manually; it is automatically %% generated from LSR http://lsr.dsi.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% %% This file is in the public domain. -\version "2.13.4" +\version "2.14.2" \header { - lsrtags = "text, titles" + lsrtags = "text, really-cool, titles, scheme-language" -%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca +%% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98 texidoces = " Con algo de código de Scheme, se puede añadir fácilmente la fecha actual a una partitura. " doctitlees = "Añadir la fecha actual a una partitura" -%% Translation of GIT committish: 7eb450e8e6c935410b8f3212cb53e5a731f4f33f + +%% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4 texidocfr = " Avec un peu de code Scheme, voici comment ajouter facilement la date du jour à votre partition. " - doctitlefr = "Ajout de la date du jour à une partition" texidoc = " @@ -29,6 +32,7 @@ score. doctitle = "Adding the current date to a score" } % begin verbatim + % first, define a variable to hold the formatted date: date = #(strftime "%d-%m-%Y" (localtime (current-time)))