fix 2 typos

This commit is contained in:
Mitchell Livingston 2008-05-29 00:56:58 +00:00
parent b9baa6ba84
commit 1828cca645
3 changed files with 3 additions and 3 deletions

View File

@ -3277,7 +3277,7 @@ static void sleepCallback(void * controller, io_service_t y, natural_t messageTy
{
ButtonToolbarItem * item = [self standardToolbarButtonWithIdentifier: ident];
[item setLabel: NSLocalizedString(@"QuickLook", "QuickLook toolbar item -> label")];
[item setLabel: NSLocalizedString(@"Quick Look", "QuickLook toolbar item -> label")];
[item setPaletteLabel: NSLocalizedString(@"Quick Look", "QuickLook toolbar item -> palette label")];
[item setToolTip: NSLocalizedString(@"Quick Look", "QuickLook toolbar item -> tooltip")];
[item setImage: [NSImage imageNamed: NSImageNameQuickLookTemplate]];

View File

@ -230,7 +230,7 @@ typedef enum
[NSString stringWithFormat: NSLocalizedString(@"%d files", "Inspector -> selected torrents"), fileCount],
[NSString stringWithFormat: NSLocalizedString(@"%@ total", "Inspector -> selected torrents"),
[NSString stringForFileSize: size]]]];
[fBasicInfoField setToolTip: [NSString stringWithFormat: NSLocalizedString(@"%u bytes", "Inspector -> selected torrents"),
[fBasicInfoField setToolTip: [NSString stringWithFormat: NSLocalizedString(@"llu bytes", "Inspector -> selected torrents"),
size]];
}
else
@ -374,7 +374,7 @@ typedef enum
basicString = [NSString stringWithFormat: @"%@, %@", fileString, basicString];
}
[fBasicInfoField setStringValue: basicString];
[fBasicInfoField setToolTip: [NSString stringWithFormat: NSLocalizedString(@"%u bytes", "Inspector -> selected torrents"),
[fBasicInfoField setToolTip: [NSString stringWithFormat: NSLocalizedString(@"%llu bytes", "Inspector -> selected torrents"),
[torrent size]]];
NSString * hashString = [torrent hashString];