mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-07 01:15:28 +00:00
feat: add indication if language is not fully translated
chore: update language definitions
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { Check } from "@styled-icons/boxicons-regular";
|
||||
import { Error, Check } from "@styled-icons/boxicons-regular";
|
||||
import { observer } from "mobx-react-lite";
|
||||
|
||||
import styles from "./Panes.module.scss";
|
||||
@@ -112,7 +112,8 @@ function Entry({ entry: [x, lang], selected, onSelect }: Props) {
|
||||
)}
|
||||
</div>
|
||||
<span className={styles.description}>
|
||||
{lang.display} {lang.verified && <Check size={16} />}
|
||||
{lang.display} {lang.verified && <Check size={16} />}{" "}
|
||||
{lang.incomplete && <Error size={16} />}
|
||||
</span>
|
||||
</>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user