X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fadding-the-current-date-to-a-score.ly;h=bebd6097f7a22587f2e8b9bf8207440466fe1cea;hb=da77ae29b4974f89fa168729ffcda756a39688c0;hp=b348f08858dd862be248749e9f3976469d4386e8;hpb=37a1acdcb64020041d724e42e3e41b921e655709;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 b348f08858..bebd6097f7 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.10" +\version "2.14.2" \header { - lsrtags = "text, titles" + lsrtags = "text, really-cool, titles, scheme-language" -%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca +%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa 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)))