Skip to content
This repository has been archived by the owner on Aug 23, 2024. It is now read-only.

Commit

Permalink
Rename "Auto playlist" to "Play Random"
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffvli committed Apr 7, 2022
1 parent 2d2b938 commit edb0ade
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/components/shared/ToolbarButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,10 @@ export const FilterButton = ({ ...rest }) => {

export const AutoPlaylistButton = ({ noText, ...rest }: any) => {
return (
<CustomTooltip text={i18n.t('Auto playlist')}>
<StyledButton aria-label={i18n.t('Auto playlist')} tabIndex={0} {...rest}>
<CustomTooltip text={i18n.t('Play Random')}>
<StyledButton aria-label={i18n.t('Play Random')} tabIndex={0} {...rest}>
<Icon icon="plus-square" style={{ marginRight: noText ? '0px' : '10px' }} />
{!noText && i18n.t('Auto playlist')}
{!noText && i18n.t('Play Random')}
</StyledButton>
</CustomTooltip>
);
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"Artists": "Künstler",
"ASC": "AUFSTEIGEND",
"Audio Device": "Audio Gerät",
"Auto playlist": "Auto Playlist",
"Play Random": "Play Random",
"Auto scroll": "Auto scroll",
"Automatic Updates": "Automatische Updates",
"Bitrate": "Bitrate",
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"Artists": "Artists",
"ASC": "ASC",
"Audio Device": "Audio Device",
"Auto playlist": "Auto playlist",
"Play Random": "Play Random",
"Auto scroll": "Auto scroll",
"Automatic Updates": "Automatic Updates",
"Bitrate": "Bitrate",
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/locales/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"Artists": "Artistas",
"ASC": "ASC",
"Audio Device": "Dispositivo de Audio",
"Auto playlist": "Lista de Reproducción Automática",
"Shufle All": "Lista de Reproducción Automática",
"Auto scroll": "Desplazamiento Automático",
"Automatic Updates": "Actualizaciones Automáticas",
"Bitrate": "Tasa de Bits",
Expand Down
4 changes: 2 additions & 2 deletions src/i18n/locales/si.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"Artists": "ගායකයන්",
"ASC": "ASC",
"Audio Device": "ශ්රව්ය උපකරණය",
"Auto playlist": "ස්වයංක්‍රීය ගීත ලැයිස්තුව",
"Play Random": "ස්වයංක්‍රීය ගීත ලැයිස්තුව",
"Auto scroll": "ස්වයංක්‍රීය අනුචලනය",
"Automatic Updates": "ස්වයංක්‍රීය යාවත්කාලීන කිරීම්",
"Bitrate": "බිට්රේට්",
Expand Down Expand Up @@ -349,4 +349,4 @@
"Year": "අවුරුද්ද",
"Years": "අවුරුද්දු ",
"Yes": "ඔව්"
}
}
2 changes: 1 addition & 1 deletion src/i18n/locales/zhcn.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"Artists": "歌手",
"ASC": "升高",
"Audio Device": "音频设备",
"Auto playlist": "智能播放列表",
"Play Random": "智能播放列表",
"Auto scroll": "自动滚动",
"Automatic Updates": "自动更新",
"Bitrate": "比特率",
Expand Down

0 comments on commit edb0ade

Please sign in to comment.