More Frontend Translation

This commit is contained in:
Qstick
2020-07-20 20:18:10 -04:00
parent 71492d4c6f
commit 82b546999a
83 changed files with 326 additions and 215 deletions
+3 -2
View File
@@ -7,6 +7,7 @@ import TableRowCell from 'Components/Table/Cells/TableRowCell';
import TableRow from 'Components/Table/TableRow';
import { icons, kinds } from 'Helpers/Props';
import formatBytes from 'Utilities/Number/formatBytes';
import translate from 'Utilities/String/translate';
import styles from './RootFolderRow.css';
function RootFolderRow(props) {
@@ -33,7 +34,7 @@ function RootFolderRow(props) {
className={styles.unavailableLabel}
kind={kinds.DANGER}
>
Unavailable
{translate('Unavailable')}
</Label>
</div> :
@@ -56,7 +57,7 @@ function RootFolderRow(props) {
<TableRowCell className={styles.actions}>
<IconButton
title="Remove root folder"
title={translate('RemoveRootFolder')}
name={icons.REMOVE}
onPress={onDeletePress}
/>