mirror of
https://github.com/transmission/transmission
synced 2025-02-20 13:16:53 +00:00
fix 2 typos
This commit is contained in:
parent
b9baa6ba84
commit
1828cca645
3 changed files with 3 additions and 3 deletions
|
@ -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]];
|
||||
|
|
Binary file not shown.
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue