rejetto forum

Software => HFS ~ HTTP File Server => Programmers corner => Topic started by: SilentPliz on February 17, 2011, 09:20:34 PM

Title: About some usefull Captions
Post by: SilentPliz on February 17, 2011, 09:20:34 PM
Hi rejetto!  ;)

I noticed some captions that could display a visual information ... and which are not currently operating.
If you want to add them...  :)


Quote
Showbandwidthgraph1.visible:=not graphBox.visible;
Shellcontextmenu1.Caption:=if_(isIntegratedInShell(), 'Remove from shell context menu', 'Integrate in shell context menu');
//add
mainFrm.Connectionsinactivitytimeout1.Caption:=
if_(connectionsInactivityTimeout <= 0, 'The inactive connection is never kicked ...', 'The inactive connection is kicked after '+intToStr(connectionsInactivityTimeout)+' seconds ...');
mainFrm.Minimumdiskspace1.Caption:=
if_(minDiskSpace <= 0, 'Minimum disk space: disabled ...', 'Minimum disk space: '+intToStr(minDiskSpace)+' MB ...');
mainFrm.Flagfilesaddedrecently1.Caption:=
if_(filesStayFlaggedForMinutes <= 0, 'Recent files stay flagged during: disabled ...', 'Recent files stay flagged during '+intToStr(filesStayFlaggedForMinutes)+' minutes ...');

//end add
Restore1.visible:=trayed;
Restoredefault1.Enabled:=tplIsCustomized;

Title: Re: About some usefull Captions
Post by: rejetto on March 01, 2011, 12:11:57 PM
thank you SP.
i slightly changed the form to make translation easier and code simpler .