소스 검색

NEW STRING

marinofaggiana 3 년 전
부모
커밋
81c94f456c
2개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 0
      iOSClient/Supporting Files/en.lproj/Localizable.strings
  2. 1 1
      iOSClient/Viewer/NCViewerMedia/NCViewerMediaDetailView.swift

+ 1 - 0
iOSClient/Supporting Files/en.lproj/Localizable.strings

@@ -813,3 +813,4 @@
 "_invalid_page_"                            = "Invalid Page";
 "_the_entered_page_number_doesn't_exist_"   = "The entered page number doesn't exist";
 "_error_something_wrong_"   = "Something went wrong";
+"_resolution_"              = "Resolution";

+ 1 - 1
iOSClient/Viewer/NCViewerMedia/NCViewerMediaDetailView.swift

@@ -151,7 +151,7 @@ class NCViewerMediaDetailView: UIView {
         // Dimension / Duration
         if metadata?.classFile == NCCommunicationCommon.typeClassFile.image.rawValue {
             if let image = self.image {
-                dimLabel.text = NSLocalizedString("_dimension_", comment: "")
+                dimLabel.text = NSLocalizedString("_resolution_", comment: "")
                 dimValue.text = "\(Int(image.size.width)) x \(Int(image.size.height))"
             }
         } else if metadata?.classFile == NCCommunicationCommon.typeClassFile.video.rawValue || metadata?.classFile == NCCommunicationCommon.typeClassFile.audio.rawValue  {