marinofaggiana 3 年 前
コミット
81c94f456c

+ 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  {