mirror of
https://github.com/transmission/transmission.git
synced 2025-12-24 12:28:52 +00:00
Adopt localizedStringWithFormat for displayed quantities (#4109)
* Adopt localizedStringWithFormat for displayed quantities * xib internationalization support is done
This commit is contained in:
@@ -320,7 +320,7 @@ typedef NS_ENUM(NSUInteger, PopupPriority) {
|
||||
NSUInteger count = self.torrent.fileCount;
|
||||
if (count != 1)
|
||||
{
|
||||
fileString = [NSString stringWithFormat:NSLocalizedString(@"%lu files", "Add torrent -> info"), count];
|
||||
fileString = [NSString localizedStringWithFormat:NSLocalizedString(@"%lu files", "Add torrent -> info"), count];
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user