From: John Mandereau Date: Fri, 27 Nov 2009 18:25:36 +0000 (+0100) Subject: Docs: make translations status for web site too X-Git-Tag: release/2.13.9-1~71 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a068288d363f99dd8de2d73e0a80cda8c5d7b3c0;p=lilypond.git Docs: make translations status for web site too Also fix translation status in Dutch docs. --- diff --git a/Documentation/nl/web.texi b/Documentation/nl/web.texi index 216f22e1aa..5e9378551b 100644 --- a/Documentation/nl/web.texi +++ b/Documentation/nl/web.texi @@ -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 diff --git a/scripts/auxiliar/translations-status.py b/scripts/auxiliar/translations-status.py index 574bb679ef..9ecba85625 100755 --- a/scripts/auxiliar/translations-status.py +++ b/scripts/auxiliar/translations-status.py @@ -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 ()