From acf2906f614f44f882e13fed22541f4e60e2c831 Mon Sep 17 00:00:00 2001 From: phil Date: Fri, 13 May 2005 09:19:10 +0000 Subject: [PATCH] anpassung an deutsche spracheinstellung in den lyx-dokumenten --- documents/mod_html_files.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/documents/mod_html_files.py b/documents/mod_html_files.py index 594f2cd..70da72d 100644 --- a/documents/mod_html_files.py +++ b/documents/mod_html_files.py @@ -40,10 +40,7 @@ try: content=string.replace(content,footer,"") #rename footnotes into Fussnoten - #content = string.replace(content,"Footnotes","Fussnoten") - - #rename content into Inhalt - #content = string.replace(content,"Contents","Inhalt") + content = string.replace(content,"Fooßnotes","Fussnoten") #put whole content into div tags content = string.replace(content,"",'\n\n
') @@ -51,7 +48,7 @@ try: content = string.replace(content,"",'') #remove empty image subtitles - content = string.replace(content,"Figure:","") + content = string.replace(content,"Abbildung:","") #all done, writing tuned files writeFile(content,sys.argv[1])