2023-02-11 17:15:08 +01:00
|
|
|
export interface LocaleEntry {
|
|
|
|
title: string
|
|
|
|
file: string
|
2023-05-15 14:35:43 +02:00
|
|
|
useFile: string
|
2023-02-11 17:15:08 +01:00
|
|
|
translated: string[]
|
|
|
|
missing: string[]
|
|
|
|
outdated: string[]
|
|
|
|
total: number
|
|
|
|
isSource?: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
export type TranslationStatus = Record<string, LocaleEntry>
|