mirror of https://github.com/Sonarr/Sonarr
Fixed: Replacing 'appName' translation token
This commit is contained in:
parent
8c3a0ebaba
commit
2e51b8792d
|
@ -25,15 +25,13 @@ export async function fetchTranslations(): Promise<boolean> {
|
||||||
|
|
||||||
export default function translate(
|
export default function translate(
|
||||||
key: string,
|
key: string,
|
||||||
tokens: Record<string, string | number | boolean> = { appName: 'Sonarr' }
|
tokens: Record<string, string | number | boolean> = {}
|
||||||
) {
|
) {
|
||||||
const translation = translations[key] || key;
|
const translation = translations[key] || key;
|
||||||
|
|
||||||
if (tokens) {
|
tokens.appName = 'Sonarr';
|
||||||
|
|
||||||
return translation.replace(/\{([a-z0-9]+?)\}/gi, (match, tokenMatch) =>
|
return translation.replace(/\{([a-z0-9]+?)\}/gi, (match, tokenMatch) =>
|
||||||
String(tokens[tokenMatch] ?? match)
|
String(tokens[tokenMatch] ?? match)
|
||||||
);
|
);
|
||||||
}
|
|
||||||
|
|
||||||
return translation;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue