feat(docs): add translation status (#1689)

Co-authored-by: Michel EDIGHOFFER <edimitchel@gmail.com>
This commit is contained in:
Joaquín Sánchez 2023-02-11 17:15:08 +01:00 committed by GitHub
parent 0eefcfa281
commit 972a13499f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 705 additions and 3 deletions

11
docs/types.ts Normal file
View file

@ -0,0 +1,11 @@
export interface LocaleEntry {
title: string
file: string
translated: string[]
missing: string[]
outdated: string[]
total: number
isSource?: boolean
}
export type TranslationStatus = Record<string, LocaleEntry>