From: Martin M. <mm...@ag...> - 2003-09-19 20:12:43
|
Hi Jamie, you once noticed me that in some parts of Usermin I only have to take care about ulang/<lang> and uconfig.info.<lang> instead of lang/<lang> and config.info.<lang> because some of the lang/<lang> in Usermin are acutally symlinks on your system from webmin/lang/<lang> to usermin/lang/<lang>. Could your please provide me with a complete list of those, so that I can do the same in my WTCO-Repository? 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 |
From: Jamie C. <jca...@we...> - 2003-09-20 02:18:30
|
The config.info files that you can skip are : proc/config.info at/config.info man/config.info 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 : lang mailbox/lang file/lang telnet/lang ssh/lang proc/lang cron/lang shell/lang at/lang quota/lang fetchmail/lang mysql/lang procmail/lang htaccess/lang man/lang commands/lang usermount/lang updown/lang spam/lang postgresql/lang As again they are just links to webmin. - Jamie Martin Mewes wrote: > Hi Jamie, > > you once noticed me that in some parts of Usermin I only have to take > care about > > ulang/<lang> > > and > > uconfig.info.<lang> > > instead of > > lang/<lang> > > and > > config.info.<lang> > > because some of the lang/<lang> in Usermin are acutally symlinks on > your system from webmin/lang/<lang> to usermin/lang/<lang>. > > Could your please provide me with a complete list of those, so that I > can do the same in my WTCO-Repository? |
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 |
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 |
From: Martin M. <mm...@ag...> - 2003-09-21 10:51:15
|
Hi Jamie, Am Sonntag, 21. September 2003 05:12 schrieb Jamie Cameron: > >>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 Do the right guess (tm) ;-) > 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 Oh, please can I download it somewhere to be in synch? > 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 :( a) I will upload my script to my webspace at www.webmin.com next days. So it can be downloaded by translators. b) I will send it to you, so you can review (maybe modify) and put it into the next "devel" or "stable" whichever comes first ;-) kind regards 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 |