a070504d2e
Co-authored-by: Matthew Russell <mattrussell36@gmail.com>
15 lines
424 B
TypeScript
15 lines
424 B
TypeScript
export const useTranslation = () => ({
|
|
t: (label: string, replacements?: Record<string, string>) => {
|
|
let translatedLabel = label;
|
|
if (typeof replacements === 'object' && replacements !== null) {
|
|
Object.keys(replacements).forEach((key) => {
|
|
translatedLabel = translatedLabel.replace(
|
|
`{{${key}}}`,
|
|
replacements[key]
|
|
);
|
|
});
|
|
}
|
|
return translatedLabel;
|
|
},
|
|
});
|