| 344 | // --- Translation Helpers --- |
| 345 | |
| 346 | interface TranslationContext { |
| 347 | lang: string; |
| 348 | indexName: string; |
| 349 | enMap: Map<string, Record<string, unknown>>; |
| 350 | } |
| 351 | |
| 352 | async function resolveTranslationContext(filepath: string): Promise<TranslationContext | null> { |
| 353 | const lang = getLocaleFromFilepath(filepath); |
nothing calls this directly
no outgoing calls
no test coverage detected