From 509c36d776fc4b1f0c66494e4f76e697478709c4 Mon Sep 17 00:00:00 2001 From: ronso0 Date: Wed, 15 Jul 2020 22:32:00 +0200 Subject: add tooltips for some skin settings --- src/skin/tooltips.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/skin/tooltips.cpp b/src/skin/tooltips.cpp index af9cf37f2c..f38fcac29e 100644 --- a/src/skin/tooltips.cpp +++ b/src/skin/tooltips.cpp @@ -70,6 +70,10 @@ void Tooltips::addStandardTooltips() { << dropTracksHere << tr("If Vinyl control is enabled, displays time-coded vinyl signal quality (see Preferences -> Vinyl Control)."); + add("big_spinny_coverart") + << tr("Big Spinny/Cover Art") + << tr("Show a big version of the Spinny or track cover art if enabled."); + add("pregain") << tr("Gain") << tr("Adjusts the pre-fader gain of the track (to avoid clipping).") @@ -242,10 +246,20 @@ void Tooltips::addStandardTooltips() { << tr("Cover Art") << tr("Show/hide Cover Art."); + add("show_library_coverart") + << tr("Cover Art") + << tr("Show/hide Cover Art of the selected track in the library."); + add("toggle_4decks") << tr("Toggle 4 Decks") << tr("Switches between showing 2 decks and 4 decks."); + add("show_waveforms") + << tr("Show/hide the scrolling waveforms"); + + add("show_beatgrid_controls") + << tr("Show/hide the beatgrid controls section"); + add("show_library") << tr("Show Library") << tr("Show or hide the track library."); @@ -262,6 +276,10 @@ void Tooltips::addStandardTooltips() { << tr("Toggle Mixer") << tr("Show or hide the mixer."); + add("show_vumeters") + << tr("Volume Meters") + << tr("Show/hide volume meters for channels and master output."); + add("microphone_volume") << tr("Microphone Volume") << tr("Adjusts the microphone volume.") -- cgit v1.2.3 From 1f2f41372d8818623e6c3bc1697d0374179ee90e Mon Sep 17 00:00:00 2001 From: ronso0 Date: Wed, 15 Jul 2020 22:34:34 +0200 Subject: rephrase mic ducking & maximize_library tooltips --- src/skin/tooltips.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/skin/tooltips.cpp b/src/skin/tooltips.cpp index f38fcac29e..c44e5feb8f 100644 --- a/src/skin/tooltips.cpp +++ b/src/skin/tooltips.cpp @@ -270,7 +270,7 @@ void Tooltips::addStandardTooltips() { add("maximize_library") << tr("Maximize Library") - << tr("Maximize the track library to take up all the available screen space."); + << tr("Hide all skin sections except the decks to have more screen space for the track library."); add("show_mixer") << tr("Toggle Mixer") @@ -303,15 +303,17 @@ void Tooltips::addStandardTooltips() { add("talkover_duck_mode") << tr("Microphone Talkover Mode") << tr("Off: Do not reduce music volume") - << tr("Auto: Automatically reduce music volume when microphones are in use. Adjust the amount the music volume is reduced with the Strength knob.") - << tr("Manual: Reduce music volume by a fixed amount set by the Strength knob."); + << tr("Auto: Automatically reduce music volume when microphone volume rises above threshold.") + << tr("Manual: Reduce music volume by a fixed amount set by the Strength knob.") + << tr("Adjust the amount the music volume is reduced with the Strength knob."); add("talkover_duck_strength") << tr("Microphone Talkover Ducking Strength") + << tr("Adjust the amount the music volume is reduced with the Strength knob.") << tr("Behavior depends on Microphone Talkover Mode:") << tr("Off: Does nothing") - << tr("Auto: Sets how much to reduce the music volume when microphones are in use.") - << tr("Manual: Sets how much to reduce the music volume, regardless of volume of microphone inputs."); + << tr("Auto: Sets how much to reduce the music volume when the volume of active microphones rises above threshold.") + << tr("Manual: Sets how much to reduce the music volume, when talkover is activated regardless of volume of microphone inputs."); QString changeAmount = tr("Change the step-size in the Preferences -> Interface menu."); add("rate_perm_up_rate_perm_up_small") -- cgit v1.2.3 From dc132f1736493c76844f06515c17f80bf464ca04 Mon Sep 17 00:00:00 2001 From: ronso0 Date: Mon, 20 Jul 2020 16:11:23 +0200 Subject: add Track context menu hint to track tag tooltips --- src/skin/tooltips.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/skin/tooltips.cpp b/src/skin/tooltips.cpp index c44e5feb8f..275b95c39b 100644 --- a/src/skin/tooltips.cpp +++ b/src/skin/tooltips.cpp @@ -27,6 +27,7 @@ QList& Tooltips::add(QString id) { void Tooltips::addStandardTooltips() { QString dropTracksHere = tr("Drop tracks from library, external file manager, or other decks/samplers here."); QString dragItem = tr("Drag this item to other decks/samplers, to crates and playlist or to external file manager."); + QString trackMenu = tr("Right-click to open the track context menu."); QString resetToDefault = tr("Reset to default value."); QString leftClick = tr("Left-click"); QString rightClick = tr("Right-click"); @@ -747,19 +748,24 @@ void Tooltips::addStandardTooltips() { << tr("Displays the artist of the loaded track.") << trackTags << dropTracksHere - << dragItem; + << dragItem + << trackMenu; add("track_title") << tr("Track Title") << tr("Displays the title of the loaded track.") << trackTags << dropTracksHere - << dragItem; + << dragItem + << trackMenu; add("track_album") << tr("Track Album") << tr("Displays the album name of the loaded track.") - << trackTags; + << trackTags + << dropTracksHere + << dragItem + << trackMenu; add("track_key") //: The musical key of a track -- cgit v1.2.3 From 81fa7cc79b3d73469321427fc8299bb13ff05a9b Mon Sep 17 00:00:00 2001 From: ronso0 Date: Mon, 20 Jul 2020 16:11:57 +0200 Subject: add time format hint to track time tooltip --- src/skin/tooltips.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/skin/tooltips.cpp b/src/skin/tooltips.cpp index 275b95c39b..d1cadfb1af 100644 --- a/src/skin/tooltips.cpp +++ b/src/skin/tooltips.cpp @@ -736,7 +736,8 @@ void Tooltips::addStandardTooltips() { add("track_time") << tr("Track Time") << tr("Displays the elapsed and/or remaining time of the track loaded.") - << tr("Click to toggle between time elapsed/remaining time/both."); + << tr("Click to toggle between time elapsed/remaining time/both.") + << tr("Hint: Change the time format in Preferences -> Decks."); add("track_duration") << tr("Track Duration") -- cgit v1.2.3