]> git.donarmstrong.com Git - lilypond.git/commitdiff
Docs: make translations status for web site too
authorJohn Mandereau <john.mandereau@gmail.com>
Fri, 27 Nov 2009 18:25:36 +0000 (19:25 +0100)
committerJohn Mandereau <john.mandereau@gmail.com>
Fri, 27 Nov 2009 19:07:22 +0000 (20:07 +0100)
Also fix translation status in Dutch docs.

Documentation/nl/web.texi
scripts/auxiliar/translations-status.py

index 216f22e1aa8f662988a93432520dc2cd06a54bd3..5e9378551bceada3982bf96d6fb63400899657f2 100644 (file)
@@ -7,7 +7,6 @@
     version that you are working on.  See TRANSLATION for details.
 @end ignore
 
-
 @setfilename web.info
 @settitle LilyPond -- Muzieknotatie voor iedereen
 @documentencoding UTF-8
@@ -20,6 +19,7 @@
 @top
 @translationof Top
 
+@c Translators: Test
 
 @chapheading
 @end ifnottex
index 574bb679ef31d682c073f7ada53ab50eae6cd6a5..9ecba85625187f35a5cad744bffeed1709b82aa8 100755 (executable)
@@ -505,11 +505,11 @@ def update_category_word_counts_sub (m):
 
 progress ("Reading documents...")
 
-tely_files = \
-    buildlib.read_pipe ("find -maxdepth 2 -name '*.tely'")[0].splitlines ()
-tely_files.sort ()
+master_files = \
+    buildlib.read_pipe ("find -maxdepth 2 -and -name '*.tely' -or -name '*.texi'")[0].splitlines ()
+master_files.sort ()
 master_docs = [MasterTelyDocument (os.path.normpath (filename))
-               for filename in tely_files]
+               for filename in master_files]
 master_docs = [doc for doc in master_docs if doc.translations]
 
 main_status_page = open ('translations.template.html.in').read ()