(key: string, options?: Record<string, unknown>)
| 102 | |
| 103 | // Helper to translate |
| 104 | export function t(key: string, options?: Record<string, unknown>): string { |
| 105 | return i18next.t(key, options); |
| 106 | } |
| 107 | |
| 108 | // Helper to change language |
| 109 | export async function changeLanguage(lng: string): Promise<void> { |
no outgoing calls
no test coverage detected