Add translation for MovieIndexSelectAllButton

pull/10263/head
Wolfy The Broccoly 4 months ago committed by Qstick
parent a5b315ba83
commit 364a42424a

@ -2,6 +2,7 @@ import React, { useCallback } from 'react';
import { useSelect } from 'App/SelectContext';
import PageToolbarButton from 'Components/Page/Toolbar/PageToolbarButton';
import { icons } from 'Helpers/Props';
import translate from 'Utilities/String/translate';
interface MovieIndexSelectAllButtonProps {
label: string;
@ -30,7 +31,7 @@ function MovieIndexSelectAllButton(props: MovieIndexSelectAllButtonProps) {
return isSelectMode ? (
<PageToolbarButton
label={allSelected ? 'Unselect All' : 'Select All'}
label={allSelected ? translate('UnselectAll') : translate('SelectAll')}
iconName={icon}
onPress={onPress}
/>

Loading…
Cancel
Save