]> git.sesse.net Git - vlc/commitdiff
macosx: fix warning
authorFelix Paul Kühne <fkuehne@videolan.org>
Fri, 16 May 2014 20:30:06 +0000 (22:30 +0200)
committerFelix Paul Kühne <fkuehne@videolan.org>
Fri, 16 May 2014 20:34:51 +0000 (22:34 +0200)
modules/gui/macosx/MainWindow.m

index 6ed2f84fa091b7e52b5752e7bce9a277b03d343d..5dfa8b300a5c01867aa534ad75ddd21b9771a8ec 100644 (file)
@@ -339,7 +339,7 @@ static VLCMainWindow *_o_sharedInstance = nil;
 
         [o_fspanel center];
 
-        NSAlert *albumArtAlert = [NSAlert alertWithMessageText:_NS("Check for album art and metadata?") defaultButton:_NS("Enable Metadata Retrieval") alternateButton:_NS("No, Thanks") otherButton:nil informativeTextWithFormat:_NS("VLC can check online for album art and metadata to enrich your playback experience, e.g. by providing track information when playing Audio CDs. To provide this functionality, VLC will send information about your contents to trusted services in an anonymized form.")];
+        NSAlert *albumArtAlert = [NSAlert alertWithMessageText:_NS("Check for album art and metadata?") defaultButton:_NS("Enable Metadata Retrieval") alternateButton:_NS("No, Thanks") otherButton:nil informativeTextWithFormat:@"%@",_NS("VLC can check online for album art and metadata to enrich your playback experience, e.g. by providing track information when playing Audio CDs. To provide this functionality, VLC will send information about your contents to trusted services in an anonymized form.")];
         NSInteger returnValue = [albumArtAlert runModal];
         config_PutInt(VLCIntf, "album-art", returnValue == 1 ? ALBUM_ART_ALL : ALBUM_ART_WHEN_ASKED);
     }