1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-22 06:00:41 +00:00

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]; 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 setPaletteLabel: NSLocalizedString(@"Quick Look", "QuickLook toolbar item -> palette label")];
[item setToolTip: NSLocalizedString(@"Quick Look", "QuickLook toolbar item -> tooltip")]; [item setToolTip: NSLocalizedString(@"Quick Look", "QuickLook toolbar item -> tooltip")];
[item setImage: [NSImage imageNamed: NSImageNameQuickLookTemplate]]; [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(@"%d files", "Inspector -> selected torrents"), fileCount],
[NSString stringWithFormat: NSLocalizedString(@"%@ total", "Inspector -> selected torrents"), [NSString stringWithFormat: NSLocalizedString(@"%@ total", "Inspector -> selected torrents"),
[NSString stringForFileSize: size]]]]; [NSString stringForFileSize: size]]]];
[fBasicInfoField setToolTip: [NSString stringWithFormat: NSLocalizedString(@"%u bytes", "Inspector -> selected torrents"), [fBasicInfoField setToolTip: [NSString stringWithFormat: NSLocalizedString(@"llu bytes", "Inspector -> selected torrents"),
size]]; size]];
} }
else else
@ -374,7 +374,7 @@ typedef enum
basicString = [NSString stringWithFormat: @"%@, %@", fileString, basicString]; basicString = [NSString stringWithFormat: @"%@, %@", fileString, basicString];
} }
[fBasicInfoField setStringValue: 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]]]; [torrent size]]];
NSString * hashString = [torrent hashString]; NSString * hashString = [torrent hashString];