Browse Source

fix typo preventing l10n of a cell subtitle

Felix Paul Kühne 11 years ago
parent
commit
f3dd4f6693
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Sources/VLCPlaylistTableViewCell.m

+ 1 - 1
Sources/VLCPlaylistTableViewCell.m

@@ -207,7 +207,7 @@
 {
 {
     self.titleLabel.text = label.name;
     self.titleLabel.text = label.name;
     NSUInteger count = label.files.count;
     NSUInteger count = label.files.count;
-    self.subtitleLabel.text = [NSString stringWithFormat:(count == 1) ? NSLocalizedString(@"LIBRARY_TRACK", @"") : NSLocalizedString(@"LIBRARY_SINGLE_TRACKS", @""), count];
+    self.subtitleLabel.text = [NSString stringWithFormat:(count == 1) ? NSLocalizedString(@"LIBRARY_SINGLE_TRACK", @"") : NSLocalizedString(@"LIBRARY_TRACKS", @""), count];
     self.mediaIsUnreadView.hidden = YES;
     self.mediaIsUnreadView.hidden = YES;
     self.progressIndicator.hidden = YES;
     self.progressIndicator.hidden = YES;
 }
 }