]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-the-current-date-to-a-score.ly
New version of LSR upgrade
[lilypond.git] / Documentation / snippets / adding-the-current-date-to-a-score.ly
index ad2442e689f1f54916d3d3c5853514f940dc8945..8f0ee5833bf01d9b725213cc63186eab502db05a 100644 (file)
@@ -4,12 +4,12 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.0"
+\version "2.14.2"
 
 \header {
-  lsrtags = "text, titles"
+  lsrtags = "text, really-cool, titles, scheme-language"
 
-%% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
+%% 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.
@@ -17,12 +17,11 @@ actual a una partitura.
   doctitlees = "Añadir la fecha actual a una partitura"
 
 
-%% Translation of GIT committish: 05624d5147843d2fcbd6e4e126f1fd43142ac6e5
+%% 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 = "
@@ -33,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)))