]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-the-current-date-to-a-score.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / adding-the-current-date-to-a-score.ly
index 493b9396b5a94805386630b8037a581bdc19eda8..bebd6097f7a22587f2e8b9bf8207440466fe1cea 100644 (file)
@@ -4,12 +4,12 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.12.2"
+\version "2.14.2"
 
 \header {
-  lsrtags = "text, titles"
+  lsrtags = "text, really-cool, titles, scheme-language"
 
-%% Translation of GIT committish: 91eeed36c877fe625d957437d22081721c8c6345
+%% 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.
@@ -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)))