Rename play to 'add to queue'
This commit is contained in:
parent
3ff46ce724
commit
a423a45352
4 changed files with 8 additions and 8 deletions
|
@ -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,
|
||||
},
|
||||
];
|
||||
|
|
|
@ -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,
|
||||
},
|
||||
];
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Reference in a new issue