update all Mac localizations

This commit is contained in:
Mitchell Livingston
2010-11-20 16:09:48 +00:00
parent 9aa63d01d3
commit efc34d4b69
20 changed files with 133 additions and 790 deletions

View File

@@ -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];