浏览代码

VLCPlaybackController: don't localize the formats

Carola Nitz 7 年之前
父节点
当前提交
3a67439c72
共有 1 个文件被更改,包括 3 次插入3 次删除
  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");
     }