and-end/obibok

View on GitHub
packages/app/src/stores/i18n/setLocale.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { _, locale as i18nLocale } from 'svelte-i18n';

// TODO: check whether locale (language) is available
export default (locale) => {
  i18nLocale.set(locale);
};