()
| 45 | * @returns {string} |
| 46 | */ |
| 47 | const getLanguage = (): string | undefined => { |
| 48 | if (curLanguage === undefined) { |
| 49 | curLanguage = getSharedValue<string>("language") ?? getConfiguredLanguage(); |
| 50 | } |
| 51 | return curLanguage; |
| 52 | }; |
| 53 | |
| 54 | /** |
| 55 | * Changes the current language, re-fetches all message bundles, updates all language-aware components |
nothing calls this directly
no test coverage detected
searching dependent graphs…