🚧 wip extract to translations file

This commit is contained in:
Manuel Ruwe
2022-08-18 21:46:46 +02:00
parent 57cfb58c0b
commit ac4dc23e08
29 changed files with 1216 additions and 156 deletions

View File

@@ -1,6 +1,7 @@
import React, { useState } from 'react';
import { createStyles, Switch, Group } from '@mantine/core';
import { useConfig } from '../../tools/state';
import { t } from 'i18next';
const useStyles = createStyles((theme) => ({
root: {
@@ -54,7 +55,7 @@ export function WidgetsPositionSwitch() {
size="md"
/>
</div>
Position widgets on left
{t('settings.tabs.common.settings.widgetsPositionSwitch.label')}
</Group>
);
}