diff --git a/macosx/GroupsWindowController.m b/macosx/GroupsWindowController.m index a2f74fa4b..e66036100 100644 --- a/macosx/GroupsWindowController.m +++ b/macosx/GroupsWindowController.m @@ -52,7 +52,8 @@ GroupsWindowController * fGroupsWindowInstance = nil; - (void) awakeFromNib { - [[[fTableView tableColumnWithIdentifier: @"Button"] dataCell] setTitle: NSLocalizedString(@"Color", "Groups -> Color Button")]; + [[self window] setTitle: NSLocalizedString(@"Groups", "Groups -> window title")]; + [[[fTableView tableColumnWithIdentifier: @"Button"] dataCell] setTitle: NSLocalizedString(@"Color", "Groups -> color button")]; [fTableView registerForDraggedTypes: [NSArray arrayWithObject: GROUP_TABLE_VIEW_DATA_TYPE]]; diff --git a/macosx/StatsWindowController.m b/macosx/StatsWindowController.m index 34b832882..e7f61fcb6 100644 --- a/macosx/StatsWindowController.m +++ b/macosx/StatsWindowController.m @@ -58,6 +58,8 @@ tr_handle * fLib; [[NSRunLoop currentRunLoop] addTimer: fTimer forMode: NSModalPanelRunLoopMode]; [[NSRunLoop currentRunLoop] addTimer: fTimer forMode: NSEventTrackingRunLoopMode]; + [[self window] setTitle: NSLocalizedString(@"Statistics", "Stats window -> title")]; + //set label text [fUploadedLabelField setStringValue: [NSLocalizedString(@"Uploaded", "Stats window -> label") stringByAppendingString: @":"]]; [fDownloadedLabelField setStringValue: [NSLocalizedString(@"Downloaded", "Stats window -> label") stringByAppendingString: @":"]];