[vlc-commits] [Git][videolan/vlc][master] qt: Make play queue grammar consistent
Steve Lhomme (@robUx4)
gitlab at videolan.org
Sun Jun 21 08:24:42 UTC 2026
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
3c718ec7 by Dave Nicolson at 2026-06-21T08:00:05+00:00
qt: Make play queue grammar consistent
- - - - -
3 changed files:
- modules/gui/qt/menus/qml_menu_wrapper.cpp
- modules/gui/qt/playlist/qml/PlaylistPane.qml
- modules/gui/qt/playlist/qml/PlaylistToolbar.qml
Changes:
=====================================
modules/gui/qt/menus/qml_menu_wrapper.cpp
=====================================
@@ -1153,7 +1153,7 @@ void PlaylistContextMenu::popup(int selectedIndex, QPoint pos )
if (m_model->rowCount() > 0)
{
- action = m_menu->addAction( qtr("Clear the playlist") );
+ action = m_menu->addAction( qtr("Clear play queue") );
action->setIcon(QIcon(":/menu/clear.svg"));
connect(action, &QAction::triggered, [this]( ) {
m_controler->clear();
=====================================
modules/gui/qt/playlist/qml/PlaylistPane.qml
=====================================
@@ -59,7 +59,7 @@ T.Pane {
verticalPadding: VLCStyle.margin_normal
- Accessible.name: qsTr("Playqueue")
+ Accessible.name: qsTr("Play Queue")
readonly property ColorContext colorContext: ColorContext {
id: theme
@@ -121,7 +121,7 @@ T.Pane {
spacing: VLCStyle.margin_xxxsmall
Widgets.SubtitleLabel {
- text: qsTr("Playqueue")
+ text: qsTr("Play Queue")
color: theme.fg.primary
font.weight: Font.Bold
font.pixelSize: VLCStyle.dp(24, VLCStyle.scale)
=====================================
modules/gui/qt/playlist/qml/PlaylistToolbar.qml
=====================================
@@ -140,7 +140,7 @@ RowLayout {
font.pixelSize: VLCStyle.icon_playlist
enabled: !MainPlaylistController.empty
- description: qsTr("Clear playqueue")
+ description: qsTr("Clear play queue")
text: VLCIcons.playlist_clear
onClicked: MainPlaylistController.clear()
}
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/3c718ec7aabbe4f7c8b440b5da7446130d413ed0
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/3c718ec7aabbe4f7c8b440b5da7446130d413ed0
You're receiving this email because of your account on code.videolan.org. Manage all notifications: https://code.videolan.org/-/profile/notifications | Help: https://code.videolan.org/help
More information about the vlc-commits
mailing list