mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
10 lines
340 B
TypeScript
10 lines
340 B
TypeScript
// @ts-ignore Cannot find module (when used within an app)
|
|
import { trans, getLocale, setLocale, setLocaleFallbacks } from "@symfony/ux-translator";
|
|
|
|
setLocaleFallbacks({"en": "fr", "nl": "fr", "fr": "en"});
|
|
setLocale('fr');
|
|
|
|
export { trans };
|
|
// @ts-ignore Cannot find module (when used within an app)
|
|
export * from '../var/translations';
|