From: Martin M. <mm...@ag...> - 2003-09-20 09:12:01
|
Hi Jamie, Am Samstag, 20. September 2003 04:16 schrieb Jamie Cameron: > proc/config.info > at/config.info > man/config.info works perfect ... > As they are really just links to corresponding files in webmin on > my system. As for the lang and ulang directories, you can ignore > the following : As for these ... > mailbox/lang does not work because there is no "mailbox" in webmin. Which Module would be the right one - sendmail? As well as for ... > ssh/lang > htaccess/lang > commands/lang > usermount/lang > spam/lang > As again they are just links to webmin. But they do not have counterparts of the same name in webmin. Maybe htaccess goes to apache I think. I wrote a simple Bach-Script to do the work for me ... #!/bin/sh echo "Creating Symlinks for config.info-Files" echo "---------------------------------------" export hu=/home/macmewes/translations/usermin export hw=/home/macmewes/translations/webmin export tm=proc rm -fv $hu/$tm/config.info rm -fv $hu/$tm/config.info.de ln -sv $hw/$tm/config.info $hu/$tm/config.info ln -sv $hw/$tm/config.info.de $hu/$tm/config.info.de export tm=at rm -fv $hu/$tm/config.info rm -fv $hu/$tm/config.info.de ln -sv $hw/$tm/config.info $hu/$tm/config.info ln -sv $hw/$tm/config.info.de $hu/$tm/config.info.de export tm=man rm -fv $hu/$tm/config.info rm -fv $hu/$tm/config.info.de ln -sv $hw/$tm/config.info $hu/$tm/config.info ln -sv $hw/$tm/config.info.de $hu/$tm/config.info.de This works ok ... echo "Creating Symlinks for languages" echo "-------------------------------" export tm=lang rm -fv $hu/$tm ln -sv $hw/$tm $hu/$tm export tm=mailbox rm -rfv $hu/$tm/lang ln -sv $hw/sendmail/lang $hu/$tm/lang and so on ... So what to take for the others which do not fit? tia Martin - WTCO -- http://webmin.mamemu.de/ WebMin-Mirror http://webmin.mamemu.de/download.html WebMin Translations Official Webmin/Usermin Translation Co-Ordinator 2003/2004 http://www.webmin.com/mailing-trans.html |