@@ -244,6 +244,10 @@ implementation
244244 TORRENT_FILES_CONTENTS_FORM_CAPTION =
245245 ' Show all the files inside the torrents. (Use right mouse for popup menu.)' ;
246246
247+ GROUPBOX_PRESENT_TRACKERS_CAPTION =
248+ ' Present trackers in all torrent files. Select the one that you want to keep. And added to all torrent files.' ;
249+
250+
247251 // 'add trackers' text file must be place in the same directory as the program.
248252 ADD_TRACKERS_FILE_NAME = ' add_trackers.txt' ;
249253
@@ -263,7 +267,6 @@ implementation
263267
264268procedure TFormTrackerModify.FormCreate (Sender: TObject);
265269begin
266- Caption := FORM_CAPTION;
267270
268271 // Create controler for StringGridTorrentData
269272 FControlerGridTorrentData := TControlerGridTorrentData.Create(StringGridTorrentData);
@@ -324,7 +327,11 @@ procedure TFormTrackerModify.FormCreate(Sender: TObject);
324327 // Check is program is started as console
325328 ConsoleMode;
326329
330+ // Update some captions
331+ Caption := FORM_CAPTION;
327332 GroupBoxTorrentContents.Caption := TORRENT_FILES_CONTENTS_FORM_CAPTION;
333+ GroupBoxPresentTracker.Caption := GROUPBOX_PRESENT_TRACKERS_CAPTION
334+
328335end ;
329336
330337procedure TFormTrackerModify.FormDestroy (Sender: TObject);
@@ -1815,9 +1822,8 @@ procedure TFormTrackerModify.ViewUpdateEnd;
18151822 ByteSizeToBiggerSizeFormatStr(FTotalFileSizeInsideTorrent) + ' ' ;
18161823
18171824
1818- GroupBoxPresentTracker.Caption :=
1819- ' Present trackers in all torrent files.' +
1820- ' Select the one that you want to keep. (List count: ' +
1825+ GroupBoxPresentTracker.Caption := GROUPBOX_PRESENT_TRACKERS_CAPTION +
1826+ ' (List count: ' +
18211827 IntToStr(FTrackerFromInsideTorrentFilesList.Count) + ' )' ;
18221828
18231829
0 commit comments