feat: add indication if language is not fully translated

chore: update language definitions
This commit is contained in:
Paul Makles
2022-09-16 14:55:55 +01:00
parent eab5ed033f
commit 7bc806ec63
2 changed files with 4 additions and 3 deletions

2
external/lang vendored

View File

@@ -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 { observer } from "mobx-react-lite";
import styles from "./Panes.module.scss"; import styles from "./Panes.module.scss";
@@ -112,7 +112,8 @@ function Entry({ entry: [x, lang], selected, onSelect }: Props) {
)} )}
</div> </div>
<span className={styles.description}> <span className={styles.description}>
{lang.display} {lang.verified && <Check size={16} />} {lang.display} {lang.verified && <Check size={16} />}{" "}
{lang.incomplete && <Error size={16} />}
</span> </span>
</> </>
} }