Add note about translation coverage
This commit is contained in:
parent
3eaa3e935c
commit
46cdc5d567
1 changed files with 7 additions and 1 deletions
|
@ -1,9 +1,11 @@
|
|||
import Card from "@material-ui/core/Card";
|
||||
import CardContent from "@material-ui/core/CardContent";
|
||||
import Typography from "@material-ui/core/Typography";
|
||||
import React from "react";
|
||||
import { useIntl } from "react-intl";
|
||||
import { FormattedMessage, useIntl } from "react-intl";
|
||||
|
||||
import CardTitle from "@saleor/components/CardTitle";
|
||||
import FormSpacer from "@saleor/components/FormSpacer";
|
||||
import { Locale, localeNames } from "@saleor/components/Locale";
|
||||
import SingleAutocompleteSelectField from "@saleor/components/SingleAutocompleteSelectField";
|
||||
import { capitalize } from "@saleor/misc";
|
||||
|
@ -45,6 +47,10 @@ const StaffPreferences: React.StatelessComponent<StaffPreferencesProps> = ({
|
|||
value={locale}
|
||||
onChange={event => onLocaleChange(event.target.value)}
|
||||
/>
|
||||
<FormSpacer />
|
||||
<Typography>
|
||||
<FormattedMessage defaultMessage="Please note, while all currency and date adjustments are complete, language translations are at varying degrees of completion." />
|
||||
</Typography>
|
||||
</CardContent>
|
||||
</Card>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue