Package Exports
- vue-i18n
- vue-i18n/dist/vue-i18n.esm
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-i18n) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vue-i18n-next
Internationalization plugin for Vue.js
Silver Sponsors
Status: Alpha 
The current codebase has most of the existing features on Vue I18n v8.x and is usable.
Since the library is still unstable and because we want feedback on bugs and missing features, it will probably go through a few breaking changes.
If you use stable Vue I18n version, see this repository
β New Features
Composable API
New style API for Vue 3. See the following docs:
π Examples
See the examples
directory.
The examples are offered that use the following two API styles:
- composable
- new vue-i18n API optimized for Vue 3. details about API
- legacy
- vue-i18n API almost compatible with vue-i18n v8.x
β Known issues
π₯ Breaking changes compared to vue-i18n v8.x
- API
- The return value of
$t
andt
methods is string only. object and array values ββare no longer returned. - The return value of
$tc
andtc
methods is string only. object and array values ββare no longer returned. VueI18n
class cannot used withnew
. It can only be used via the$i18n
property of Vue instance.- In vue-i18n-next, by replacing
new VueI18n
withcreateI18n
, you can use existingVueI18n
options as they are. - See the
examples/legacy
directory.
- In vue-i18n-next, by replacing
VueI18n.prototype.getChoiceIndex
- -> Legacy API style:
pluralizationRules
option ofcreateI18n
factory function (likenew VueI18n(...)
) - -> Compsable API style:
pluralRules
option ofcreateI18nComposer
facatory function
- -> Legacy API style:
VueI18n.version
->import { VERSION } from 'vue-i18n'
VueI18n.availabilities
->import { availabilities } from 'vue-i18n'
- See the details here
- The return value of
β‘ Improvements
- See the vue-i18n issues that labeld with
Status: Ready
π¨ Missing features
- imporve
fallbackLocale
orfallbackLocales
(related vue-i18n issue) <i18n>
custom block supporting for SFCv-t
directivepreserveDirectiveContent
option (depend onv-t
)- Compoonent interpolation with
<i18n>
component - Number custom formatting with
<i18n-n>
component - HTML format suppression with
warnHtmlInMessage
option - SSR
- Custom formatting
- Tooling
vue-cli-plugin-i18n
@intlify/vue-i18n-loader
@intlify/rollup-plugin-vue-i18n
@intlify/vue-i18n-extensions
@intlify/eslint-plugin-vue-i18n
β TODOs
- Intlify message format compiler
- vue-i18n message format
- sourcemap
- error handling
- more unit tests!
- Intlify core runtime
- translate function
- datetime function
- number function
- warnHtmlInMessage
- improve translate
args
typing - improve locale messages typing:
LocaleMessages
/LocaleMessage
/LocaleMessageDictiory
- postTranslation context option
- Composable API: I18n Composer
- properties
- locale
- fallbackLocales
- availableLocales
- messages
- modifiers
- pluralRules
- missingWarn
- fallbackWarn
- fallbackRoot
- fallbackFormat
- dateTimeFormats
- numberFormats
- methods
- t
- getLocaleMessages
- setLocaleMessages
- mergeLocaleMessages
- d
- getDateTimeFormat
- setDateTimeFormat
- mergeDateTimeFormat
- n
- getNumberFormat
- setNumberFormat
- mergeNumberFormat
- getPostTranslationHandler
- setPostTranslationHandler
- getMissingHandler
- setMissingHandler
- properties
- Legacy API: compatible supporting
- VueI18n
- locale
- fallbackLocale
- availableLocales
- messages
- pluralizationRules
- dateTimeFormats
- numberFormats
- formatter
- missing
- silentTranslationWarn
- silentFallbackWarn
- formatFallbackMessages
- preserveDirectiveContent
- warnHtmlInMessage
- postTranslation
- t
- tc
- te
- getLocaleMessage
- setLocaleMessage
- mergeLocaleMessage
- d
- getDateTimeFormat
- setDateTimeFormat
- mergeDateTimeFormat
- n
- getNumberFormat
- setNumberFormat
- mergeNumberFormat
- getChoiceIndex
- Inejctted in Vue Prototype API
- $i18n
- $t
- $tc
- $te
- $d
- $n
- Component options
- messages
- pluralRule
- dateTimeFormats
- numberFormats
- sharedMessages
- plugin install & mixin
- version
- IntlAvailability availabilities
- VueI18n
- Components
- Interpolocation
<i18n>
- NumberFormat
<i18n-n>
- Interpolocation
- Directive
-
v-t
-
- Tool Chains
- vue-i18n-extensions
- vue-i18n-loader
- rollup-plugin-vue-i18n
- vue-cli-plugin-i18n
- eslint-plugin-vue-i18n
- Others
- documentation
- fallback localization (bubble up)
- SSR