[vlc-commits] [Git][videolan/vlc][3.0.x] qt: rename dark option to Enable Dark Mode

Steve Lhomme (@robUx4) gitlab at videolan.org
Wed Sep 17 11:49:57 UTC 2025



Steve Lhomme pushed to branch 3.0.x at VideoLAN / VLC


Commits:
f63d56fa by Steve Lhomme at 2025-09-17T11:33:47+00:00
qt: rename dark option to Enable Dark Mode

This should be easier to understand (and translate) for most people.

- - - - -


1 changed file:

- modules/gui/qt/qt.cpp


Changes:

=====================================
modules/gui/qt/qt.cpp
=====================================
@@ -121,8 +121,8 @@ static void ShowDialog   ( intf_thread_t *, int, int, intf_dialog_args_t * );
 
 #define ERROR_TEXT N_( "Show unimportant error and warnings dialogs" )
 
-#define QT_DARK_TEXT N_( "Applies a dark palette to the style." )
-#define QT_DARK_LONGTEXT N_( "Applies a dark palette to the style. Works best with Fusion style." )
+#define QT_DARK_TEXT N_( "Enable Dark Mode" )
+#define QT_DARK_LONGTEXT N_( "Applies a dark theme to the style." )
 
 #define UPDATER_TEXT N_( "Activate the updates availability notification" )
 #define UPDATER_LONGTEXT N_( "Activate the automatic notification of new " \
@@ -260,7 +260,7 @@ vlc_module_begin ()
     add_integer( "qt-continue", 1, CONTINUE_PLAYBACK_TEXT, CONTINUE_PLAYBACK_TEXT, false )
             change_integer_list(i_continue_list, psz_continue_list_text )
     add_bool( "qt-dark-palette", false, QT_DARK_TEXT,
-                  QT_DARK_LONGTEXT, false )	
+                  QT_DARK_LONGTEXT, false )
 
 #ifdef UPDATE_CHECK
     add_bool( "qt-updates-notif", true, UPDATER_TEXT,
@@ -699,7 +699,7 @@ static void *ThreadPlatform( void *obj, char *platform_name )
     // Apply dark palette only if dark palette is enabled
     if (isDarkPaletteEnabled(p_intf))
         applyDarkPalette();
-    
+
     /* Launch */
     app.exec();
 



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

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/f63d56faddf912b822856b30ba8b76d42567c48e
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