mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
14 lines
237 B
JavaScript
14 lines
237 B
JavaScript
import { TAPi18n } from './tap';
|
|
import './accounts';
|
|
|
|
if (Meteor.isClient) {
|
|
import './blaze';
|
|
}
|
|
|
|
export { TAPi18n };
|
|
|
|
// Initialize translations immediately and synchronously
|
|
Meteor.startup(async () => {
|
|
await TAPi18n.init();
|
|
});
|
|
|