From f8b34d380ade7f89788f2ea34b4b5814630f61ff Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Fri, 20 Feb 2009 07:24:45 +0000 Subject: [PATCH] Fix wording in auto refresh dialog --- source/main.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/main.pas b/source/main.pas index 71cb50cd..5a4cefdf 100644 --- a/source/main.pas +++ b/source/main.pas @@ -5120,7 +5120,7 @@ var begin // set interval for autorefresh-timer seconds := IntToStr(TimerRefresh.interval div 1000); - if inputquery('Auto-refresh processlist','Update list every ... seconds:', seconds) then begin + if inputquery('Auto refresh','Refresh list every ... second(s):', seconds) then begin secondsInt := StrToIntDef(seconds, 0); if secondsInt > 0 then begin TimerRefresh.Interval := secondsInt * 1000;