Rename play to 'add to queue'

This commit is contained in:
jeffvli 2022-12-29 17:03:02 -08:00
parent 3ff46ce724
commit a423a45352
4 changed files with 8 additions and 8 deletions

View file

@ -104,11 +104,11 @@ const PLAY_TYPES = [
play: Play.NOW,
},
{
label: 'Play last',
label: 'Add to queue (last)',
play: Play.LAST,
},
{
label: 'Play next',
label: 'Add to queue (next)',
play: Play.NEXT,
},
];

View file

@ -104,11 +104,11 @@ const PLAY_TYPES = [
play: Play.NOW,
},
{
label: 'Play last',
label: 'Add to queue (last)',
play: Play.LAST,
},
{
label: 'Play next',
label: 'Add to queue (next)',
play: Play.NEXT,
},
];

View file

@ -490,8 +490,8 @@ export const AlbumListHeader = ({ gridRef, tableRef }: AlbumListHeaderProps) =>
</DropdownMenu.Target>
<DropdownMenu.Dropdown>
<DropdownMenu.Item disabled>Play</DropdownMenu.Item>
<DropdownMenu.Item disabled>Play last</DropdownMenu.Item>
<DropdownMenu.Item disabled>Play next</DropdownMenu.Item>
<DropdownMenu.Item disabled>Add to queue (next)</DropdownMenu.Item>
<DropdownMenu.Item disabled>Add to queue (last)</DropdownMenu.Item>
<DropdownMenu.Item disabled>Add to playlist</DropdownMenu.Item>
</DropdownMenu.Dropdown>
</DropdownMenu>

View file

@ -418,8 +418,8 @@ export const SongListHeader = ({ tableRef }: SongListHeaderProps) => {
</DropdownMenu.Target>
<DropdownMenu.Dropdown>
<DropdownMenu.Item disabled>Play</DropdownMenu.Item>
<DropdownMenu.Item disabled>Play last</DropdownMenu.Item>
<DropdownMenu.Item disabled>Play next</DropdownMenu.Item>
<DropdownMenu.Item disabled>Add to queue (last)</DropdownMenu.Item>
<DropdownMenu.Item disabled>Add to queue (next)</DropdownMenu.Item>
<DropdownMenu.Item disabled>Add to playlist</DropdownMenu.Item>
</DropdownMenu.Dropdown>
</DropdownMenu>