Misc small changes (#1433)
* Fix React key warning in HelpDialog * Change "lyric" to "lyrics" in en.json
This commit is contained in:
@@ -39,9 +39,10 @@ const HelpTable = (props) => {
|
|||||||
<TableCell align="left">
|
<TableCell align="left">
|
||||||
{sequences.map(({ sequence }) => (
|
{sequences.map(({ sequence }) => (
|
||||||
<Chip
|
<Chip
|
||||||
label={<kbd key={sequence}>{sequence}</kbd>}
|
label={<kbd>{sequence}</kbd>}
|
||||||
size="small"
|
size="small"
|
||||||
variant={'outlined'}
|
variant={'outlined'}
|
||||||
|
key={sequence}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</TableCell>
|
</TableCell>
|
||||||
|
|||||||
+2
-2
@@ -344,13 +344,13 @@
|
|||||||
"previousTrackText": "Previous track",
|
"previousTrackText": "Previous track",
|
||||||
"reloadText": "Reload",
|
"reloadText": "Reload",
|
||||||
"volumeText": "Volume",
|
"volumeText": "Volume",
|
||||||
"toggleLyricText": "Toggle lyric",
|
"toggleLyricText": "Toggle lyrics",
|
||||||
"toggleMiniModeText": "Minimize",
|
"toggleMiniModeText": "Minimize",
|
||||||
"destroyText": "Destroy",
|
"destroyText": "Destroy",
|
||||||
"downloadText": "Download",
|
"downloadText": "Download",
|
||||||
"removeAudioListsText": "Delete audio lists",
|
"removeAudioListsText": "Delete audio lists",
|
||||||
"clickToDeleteText": "Click to delete %{name}",
|
"clickToDeleteText": "Click to delete %{name}",
|
||||||
"emptyLyricText": "No lyric",
|
"emptyLyricText": "No lyrics",
|
||||||
"playModeText": {
|
"playModeText": {
|
||||||
"order": "In order",
|
"order": "In order",
|
||||||
"orderLoop": "Repeat",
|
"orderLoop": "Repeat",
|
||||||
|
|||||||
Reference in New Issue
Block a user