mirror of
https://github.com/transmission/transmission.git
synced 2025-12-24 20:35:36 +00:00
update all Mac localizations
This commit is contained in:
@@ -477,11 +477,12 @@ typedef enum
|
||||
if ([torrent isFolder])
|
||||
{
|
||||
NSString * fileString;
|
||||
const NSInteger fileCount = [torrent fileCount];
|
||||
const NSUInteger fileCount = [torrent fileCount];
|
||||
if (fileCount == 1)
|
||||
fileString = NSLocalizedString(@"1 file", "Inspector -> selected torrents");
|
||||
else
|
||||
fileString= [NSString stringWithFormat: NSLocalizedString(@"%d files", "Inspector -> selected torrents"), fileCount];
|
||||
fileString= [NSString stringWithFormat: NSLocalizedString(@"%@ files", "Inspector -> selected torrents"),
|
||||
[NSString formattedUInteger: fileCount]];
|
||||
basicString = [NSString stringWithFormat: @"%@, %@", fileString, basicString];
|
||||
}
|
||||
[fBasicInfoField setStringValue: basicString];
|
||||
|
||||
Reference in New Issue
Block a user