Browse Source

VLCPlaybackController: don't localize the formats

Carola Nitz 7 years ago
parent
commit
3a67439c72
1 changed files with 3 additions and 3 deletions
  1. 3 3
      Sources/VLCPlaybackController.m

+ 3 - 3
Sources/VLCPlaybackController.m

@@ -779,11 +779,11 @@ VLCMediaDelegate>
             case VLCAspectRatioDefault:
             return NSLocalizedString(@"DEFAULT", nil);
             case VLCAspectRatioFourToThree:
-            return NSLocalizedString(@"4:3", nil);
+            return @"4:3";
             case VLCAspectRatioSixteenToTen:
-            return NSLocalizedString(@"16:10", nil);
+            return @"16:10";
             case VLCAspectRatioSixteenToNine:
-            return NSLocalizedString(@"16:9", nil);
+            return @"16:9";
         default:
             NSAssert(NO, @"this shouldn't happen");
     }