From 466325fa92ca98979e400b0e49b027a84388c9df Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Sun, 19 Aug 2007 02:52:58 +0000 Subject: [PATCH] add a title to the Creator's open panel --- macosx/CreatorWindowController.m | 1 + 1 file changed, 1 insertion(+) diff --git a/macosx/CreatorWindowController.m b/macosx/CreatorWindowController.m index a46177e8f..a1da152a0 100644 --- a/macosx/CreatorWindowController.m +++ b/macosx/CreatorWindowController.m @@ -281,6 +281,7 @@ { NSOpenPanel * panel = [NSOpenPanel openPanel]; + [panel setTitle: NSLocalizedString(@"Create Torrent File", "Create torrent -> select file")]; [panel setPrompt: NSLocalizedString(@"Select", "Create torrent -> select file")]; [panel setAllowsMultipleSelection: NO]; [panel setCanChooseFiles: YES];