]> git.sesse.net Git - vlc/blobdiff - modules/misc/msn.c
[patch] unifying meta-information access, the 2nd by Daniel Stränger
[vlc] / modules / misc / msn.c
index 64e813d2c7c3b5825348318d721edb202fb84e12..d30076238e8bbce7e879c4419021aed9c8fd284b 100644 (file)
@@ -190,11 +190,11 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
 
     /* Playing something ... */
     psz_artist = vlc_input_item_GetInfo( p_input->input.p_item,
-                                         _("Meta-information"),
+                                         _(VLC_META_INFO_CAT),
                                          _(VLC_META_ARTIST) );
     psz_album = vlc_input_item_GetInfo( p_input->input.p_item,
-                                         _("Meta-information"),
-                                         _("Album/movie/show title"  ) );
+                                         _(VLC_META_INFO_CAT),
+                                         _(VLC_META_COLLECTION) );
     psz_title = strdup( p_input->input.p_item->psz_name );
     if( psz_title == NULL ) psz_title = strdup( N_("(no title)") );
     if( psz_artist == NULL ) psz_artist = strdup( N_("(no artist)") );