Forums | Mahara Translation

Translations /
How to extract HTML help files from Mahara


David Mudrák's profile picture
Posts: 45

09 May 2009, 16:00

The adminlang clone of Mahara does not support translation of HTML help files, yet. Today, I needed to extract all the English help files from Mahara source code tree into a separate directory and rename all directories "en.utf8" to "cs.utf8". This is how I did under Linux:

# mkdir  ~/tmp/mahara-cs-help
# cd  ~/public_html/mahara-11/htdocs
# find . -name help -type d -print0 | xargs -0 tar cf - | tar xf - -C ~/tmp/mahara-cs-help
# cd ~/tmp/mahara-cs-help
# rename en.utf8 cs.utf8 `find . -name en.utf8 -type d`
 
anonymous profile picture
Account deleted
Posts: 1643

10 May 2009, 19:00

Hi David - useful Cool. I have added a link to this thread from the Translating Basics wikipage (admittedly still in the TODO section Wink)
2 results