Skip to content

Commit cdcc412

Browse files
committed
Improve profile selection clarity with updated labels and help text
- Rename "Video" to "Video + Audio" to clarify that video profiles include audio - Rename "Audio" to "Audio Only" to clarify these are audio-only extracts - Add help text explaining format details (AAC for video, MP3/FLAC/AAC for audio) - Add .profile-help-text CSS styling following existing help text patterns - Makes it clearer why video and audio profiles are separate options
1 parent 4645ccc commit cdcc412

1 file changed

Lines changed: 12 additions & 2 deletions

File tree

src/lib/components/download/DownloadForm.svelte

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,8 @@
10021002
{#if !advancedMode}
10031003
<div class="profile-quick-select">
10041004
<div class="profile-group">
1005-
<span class="profile-group-label">Video</span>
1005+
<span class="profile-group-label">Video + Audio</span>
1006+
<p class="profile-help-text">Complete video with AAC audio</p>
10061007
<div class="profile-buttons">
10071008
{#each videoProfiles as profile}
10081009
<button
@@ -1020,7 +1021,8 @@
10201021
</div>
10211022

10221023
<div class="profile-group">
1023-
<span class="profile-group-label">Audio</span>
1024+
<span class="profile-group-label">Audio Only</span>
1025+
<p class="profile-help-text">Extract audio in MP3, FLAC, or AAC</p>
10241026
<div class="profile-buttons">
10251027
{#each audioProfiles as profile}
10261028
<button
@@ -1436,6 +1438,14 @@
14361438
letter-spacing: 0.05em;
14371439
}
14381440
1441+
.profile-help-text {
1442+
font-size: 0.75rem;
1443+
color: var(--text-tertiary);
1444+
margin-top: 2px;
1445+
margin-bottom: var(--spacing-xs);
1446+
line-height: 1.3;
1447+
}
1448+
14391449
.profile-buttons {
14401450
display: flex;
14411451
gap: var(--spacing-sm);

0 commit comments

Comments
 (0)