@forgeflowai/chat
Version:
This is an embeddable Chat widget for n8n. It allows the execution of AI-Powered Workflows through a Chat window.
13 lines (12 loc) • 358 B
JavaScript
import { useOptions } from "@forgeflowai/chat/composables/useOptions";
export function useI18n() {
const { options } = useOptions();
const language = options?.defaultLanguage ?? "en";
function t(key) {
return options?.i18n?.[language]?.[key] ?? key;
}
function te(key) {
return !!options?.i18n?.[language]?.[key];
}
return { t, te };
}