cal.pub0.org/packages/features/ee/workflows/lib/variableTranslations.ts

63 lines
2.1 KiB
TypeScript

import { TFunction } from "next-i18next";
const originalVariables = [
"event_name_workflow",
"organizer_name_workflow",
"attendee_name_workflow",
"event_date_workflow",
"event_time_workflow",
"location_workflow",
"additional_notes_workflow",
];
export function getTranslatedText(text: string, language: { locale: string; t: TFunction }) {
let translatedText = text;
if (language.locale !== "en") {
const variables = text.match(/\{(.+?)}/g)?.map((variable) => {
return variable.replace("{", "").replace("}", "");
});
variables?.forEach((variable) => {
const regex = new RegExp(variable, "g"); // .replaceAll is not available here for some reason
const translatedVariable = originalVariables.includes(variable.toLowerCase().concat("_workflow"))
? language.t(variable.toLowerCase().concat("_workflow")).replace(/ /g, "_").toLocaleUpperCase()
: originalVariables.includes(variable.toLowerCase().concat("_name_workflow")) //for the old variables names (ORGANIZER_NAME, ATTENDEE_NAME)
? language.t(variable.toLowerCase().concat("_name_workflow")).replace(/ /g, "_").toLocaleUpperCase()
: variable;
translatedText = translatedText.replace(regex, translatedVariable);
});
}
return translatedText;
}
export function translateVariablesToEnglish(text: string, language: { locale: string; t: TFunction }) {
let newText = text;
if (language.locale !== "en") {
const variables = text.match(/\{(.+?)}/g)?.map((variable) => {
return variable.replace("{", "").replace("}", "");
});
variables?.forEach((variable) => {
originalVariables.forEach((originalVariable) => {
const newVariableName = variable.replace("_NAME", "");
if (
language.t(originalVariable).replace(/ /, "_").toUpperCase() === variable ||
language.t(originalVariable).replace(/ /, "_").toUpperCase() === newVariableName
) {
newText = newText.replace(
variable,
language.t(originalVariable, { lng: "en" }).replace(" ", "_").toUpperCase()
);
return;
}
});
});
}
return newText;
}