[vlc-commits] macosx: fix warning

Felix Paul Kühne git at videolan.org
Fri May 16 22:34:56 CEST 2014


vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Fri May 16 22:30:06 2014 +0200| [09211029096e03e126329e49f6a2154ba04316be] | committer: Felix Paul Kühne

macosx: fix warning

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=09211029096e03e126329e49f6a2154ba04316be
---

 modules/gui/macosx/MainWindow.m |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/gui/macosx/MainWindow.m b/modules/gui/macosx/MainWindow.m
index 6ed2f84..5dfa8b3 100644
--- a/modules/gui/macosx/MainWindow.m
+++ b/modules/gui/macosx/MainWindow.m
@@ -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);
     }



More information about the vlc-commits mailing list