# Conflicts: # extensions/ohif-vtk-extension/package.json # extensions/ohif-vtk-extension/rollup.config.js # extensions/ohif-vtk-extension/yarn.lock # package.json # src/App.js # src/components/Header/Header.js # yarn.lock
9 lines
186 B
JavaScript
9 lines
186 B
JavaScript
import { addLocales } from '@ohif/i18n';
|
|
|
|
function loadLocales() {
|
|
const context = require.context(`./locales`, true, /\.json$/);
|
|
addLocales(context);
|
|
}
|
|
|
|
export default loadLocales;
|