Holds the value of currently active locale. Update this writable store to change the selected locale.
<script> import { locale } from './i18n'; $locale = 'en'; console.log($locale); </script>
Get text according to the selected locale
<div> {$t('a.b')} <!--= foo --> </div> <script> const { t } = createI18n({ locale: 'en', messages: { en: { a: { b: 'foo' } } }, }) </script>
The object path of the text under current locale in messages object.
The text if found in locale or fallback locale, otherwise an empty string
If a text is not found in selected locale, uses this as the fallback language for that text.
Selected locale. This will be a key of messages object.
The lang object
Generated using TypeDoc
Holds the value of currently active locale. Update this writable store to change the selected locale.
Example
<script> import { locale } from './i18n'; $locale = 'en'; console.log($locale); </script>