From: Jamie C. <jca...@we...> - 2003-09-21 03:14:47
|
Martin Mewes wrote: > 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? Yes, sendmail > As well as for ... > >>ssh/lang >>htaccess/lang >>commands/lang >>usermount/lang >>spam/lang > > >>As again they are just links to webmin. ssh links to sshd in webmin htaccess links to apache commands links to custom usermount links to mount spam links to a not-yet-released SpamAssassin module for webmin, and so should just be translated in 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 That's a good idea - it brings you into sync with my development environment. It's a pity I can't include those symlinks in the actual webmin package :( - Jamie |