From: Mitchell Livingston Date: Mon, 7 Apr 2008 13:25:55 +0000 (+0000) Subject: capitalization changes X-Git-Tag: 1.20~227 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9ccad6ce623f6c0d9db390b02b9657ea7d09ba46;p=transmission capitalization changes --- diff --git a/macosx/DragOverlayWindow.m b/macosx/DragOverlayWindow.m index b52ba8758..bdb3c68c4 100644 --- a/macosx/DragOverlayWindow.m +++ b/macosx/DragOverlayWindow.m @@ -118,9 +118,9 @@ { NSString * fileString; if (fileCount == 1) - fileString = NSLocalizedString(@"1 File", "Drag overlay -> torrents"); + fileString = NSLocalizedString(@"1 file", "Drag overlay -> torrents"); else - fileString= [NSString stringWithFormat: NSLocalizedString(@"%d Files", "Drag overlay -> torrents"), fileCount]; + fileString= [NSString stringWithFormat: NSLocalizedString(@"%d files", "Drag overlay -> torrents"), fileCount]; secondString = [NSString stringWithFormat: @"%@, %@", fileString, secondString]; } @@ -130,7 +130,7 @@ else { name = [NSString stringWithFormat: NSLocalizedString(@"%d Torrent Files", "Drag overlay -> torrents"), count]; - secondString = [secondString stringByAppendingString: @" Total"]; + secondString = [secondString stringByAppendingString: @" total"]; icon = [NSImage imageNamed: @"TransmissionDocument.icns"]; } diff --git a/macosx/English.lproj/Localizable.strings b/macosx/English.lproj/Localizable.strings index 2469ed5b9..7f967c0d1 100644 Binary files a/macosx/English.lproj/Localizable.strings and b/macosx/English.lproj/Localizable.strings differ diff --git a/macosx/InfoWindowController.m b/macosx/InfoWindowController.m index a7c4096c8..33db24a6a 100644 --- a/macosx/InfoWindowController.m +++ b/macosx/InfoWindowController.m @@ -223,8 +223,8 @@ typedef enum } [fBasicInfoField setStringValue: [NSString stringWithFormat: @"%@, %@", - [NSString stringWithFormat: NSLocalizedString(@"%d Files", "Inspector -> selected torrents"), fileCount], - [NSString stringWithFormat: NSLocalizedString(@"%@ Total", "Inspector -> selected torrents"), + [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"), size]]; @@ -364,9 +364,9 @@ typedef enum NSString * fileString; int fileCount = [torrent fileCount]; if (fileCount == 1) - fileString = NSLocalizedString(@"1 File", "Inspector -> selected torrents"); + fileString = NSLocalizedString(@"1 file", "Inspector -> selected torrents"); else - fileString= [NSString stringWithFormat: NSLocalizedString(@"%d Files", "Inspector -> selected torrents"), fileCount]; + fileString= [NSString stringWithFormat: NSLocalizedString(@"%d files", "Inspector -> selected torrents"), fileCount]; basicString = [NSString stringWithFormat: @"%@, %@", fileString, basicString]; } [fBasicInfoField setStringValue: basicString];