[vlc-commits] [Git][videolan/vlc][master] macosx: Reword placeholder strings to avoid confusion with favorites library

Felix Paul Kühne (@fkuehne) gitlab at videolan.org
Sun Sep 7 12:41:19 UTC 2025



Felix Paul Kühne pushed to branch master at VideoLAN / VLC


Commits:
3c5b219b by Claudio Cambra at 2025-09-07T12:08:34+00:00
macosx: Reword placeholder strings to avoid confusion with favorites library

- - - - -


6 changed files:

- modules/gui/macosx/library/audio-library/VLCLibraryAudioViewController.m
- modules/gui/macosx/library/favorites-library/VLCLibraryFavoritesViewController.m
- modules/gui/macosx/library/groups-library/VLCLibraryGroupsViewController.m
- modules/gui/macosx/library/home-library/VLCLibraryHomeViewController.m
- modules/gui/macosx/library/playlist-library/VLCLibraryPlaylistViewController.m
- modules/gui/macosx/library/video-library/VLCLibraryVideoViewController.m


Changes:

=====================================
modules/gui/macosx/library/audio-library/VLCLibraryAudioViewController.m
=====================================
@@ -246,10 +246,10 @@ NSString *VLCLibraryPlaceholderAudioViewIdentifier = @"VLCLibraryPlaceholderAudi
 
     _placeholderImageNames = @[@"placeholder-group2", @"placeholder-music", @"placeholder-music", @"placeholder-music"];
     _placeholderLabelStrings = @[
-        _NS("Your favorite artists will appear here.\nGo to the Browse section to add artists you love."),
-        _NS("Your favorite albums will appear here.\nGo to the Browse section to add albums you love."),
-        _NS("Your favorite tracks will appear here.\nGo to the Browse section to add tracks you love."),
-        _NS("Your favorite genres will appear here.\nGo to the Browse section to add genres you love."),
+        _NS("Your music artists will appear here.\nGo to the Browse section to add artists you love."),
+        _NS("Your music albums will appear here.\nGo to the Browse section to add albums you love."),
+        _NS("Your music tracks will appear here.\nGo to the Browse section to add tracks you love."),
+        _NS("Your music genres will appear here.\nGo to the Browse section to add genres you love."),
     ];
 }
 


=====================================
modules/gui/macosx/library/favorites-library/VLCLibraryFavoritesViewController.m
=====================================
@@ -339,7 +339,7 @@
 {
     [self.libraryWindow displayLibraryPlaceholderViewWithImage:[NSImage imageNamed:@"placeholder-video"]
                                               usingConstraints:self.placeholderImageViewSizeConstraints
-                                             displayingMessage:_NS("Your favorite items will appear here.\nMark items as favorites to see them in this view.")];
+                                             displayingMessage:_NS("Your favorite media will appear here.\nMark media items as favorites to see them in this view.")];
 }
 
 - (void)presentFavoritesLibraryView:(VLCLibraryViewModeSegment)viewModeSegment


=====================================
modules/gui/macosx/library/groups-library/VLCLibraryGroupsViewController.m
=====================================
@@ -233,7 +233,7 @@
 {
     [self.libraryWindow displayLibraryPlaceholderViewWithImage:[NSImage imageNamed:@"placeholder-video"]
                                               usingConstraints:self.placeholderImageViewSizeConstraints
-                                             displayingMessage:_NS("Your favorite groups will appear here.")];
+                                             displayingMessage:_NS("Your media groups will appear here.")];
 }
 
 - (void)presentGroupsView


=====================================
modules/gui/macosx/library/home-library/VLCLibraryHomeViewController.m
=====================================
@@ -168,7 +168,7 @@
 {
     [self.libraryWindow displayLibraryPlaceholderViewWithImage:[NSImage imageNamed:@"placeholder-video"]
                                               usingConstraints:self.placeholderImageViewSizeConstraints
-                                             displayingMessage:_NS("Your favorite videos will appear here.\nGo to the Browse section to add videos you love.")];
+                                             displayingMessage:_NS("Your media will appear here.\nGo to the Browse section to add media you love.")];
 }
 
 - (void)presentHomeLibraryView


=====================================
modules/gui/macosx/library/playlist-library/VLCLibraryPlaylistViewController.m
=====================================
@@ -231,19 +231,19 @@
     switch (playlistType) {
         case VLC_ML_PLAYLIST_TYPE_ALL:
             placeholderPlaylistsString =
-                _NS("Your favorite playlists will appear here.\n"
+                _NS("Your playlists will appear here.\n"
                     "Go to the Browse section to add playlists you love.");
             break;
         case VLC_ML_PLAYLIST_TYPE_AUDIO:
         case VLC_ML_PLAYLIST_TYPE_AUDIO_ONLY:
             placeholderPlaylistsString =
-                _NS("Your favorite music playlists will appear here.\n"
+                _NS("Your music playlists will appear here.\n"
                     "Go to the Browse section to add playlists you love.");
             break;
         case VLC_ML_PLAYLIST_TYPE_VIDEO:
         case VLC_ML_PLAYLIST_TYPE_VIDEO_ONLY:
             placeholderPlaylistsString =
-                _NS("Your favorite video playlists will appear here.\n"
+                _NS("Your video playlists will appear here.\n"
                     "Go to the Browse section to add playlists you love.");
             break;
     }


=====================================
modules/gui/macosx/library/video-library/VLCLibraryVideoViewController.m
=====================================
@@ -379,7 +379,7 @@
 {
     [self.libraryWindow displayLibraryPlaceholderViewWithImage:[NSImage imageNamed:@"placeholder-video"]
                                               usingConstraints:self.placeholderImageViewSizeConstraints
-                                             displayingMessage:_NS("Your favorite videos will appear here.\nGo to the Browse section to add videos you love.")];
+                                             displayingMessage:_NS("Your videos will appear here.\nGo to the Browse section to add videos you love.")];
 }
 
 - (void)presentVideoLibraryView:(VLCLibraryViewModeSegment)viewModeSegment



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/3c5b219b9e2b085d4e1f30e3a8f2499f0a7c6f7a

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/3c5b219b9e2b085d4e1f30e3a8f2499f0a7c6f7a
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list