Internationalization plugin for Vue.js
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 style API for Vue 3. See the following docs:
You can use pluralalization on the component. See the blow examples:
You can use datetime format on the component, like <i18n-n>
component.
See the below examples:
See the examples
directory.
The examples are offered that use the following two API styles:
- composable
- Examples with using new vue-i18n API optimized for Vue 3
- legacy
- Examples with using vue-i18n API that almost compatible with vue-i18n v8.x
- 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
<i18n>
component- Renamte to
<i18n-t>
component - Remove the below props:
place
propplaces
proppath
prop (Rename tokeypath
prop)
- Renamte to
- See the vue-i18n issues that labeld with
Status: Ready
v-t
directivepreserveDirectiveContent
option (depend onv-t
)- HTML format suppression with
warnHtmlInMessage
option - SSR
- Custom formatting
- Tooling
vue-cli-plugin-i18n
@intlify/rollup-plugin-vue-i18n
@intlify/vue-i18n-extensions
@intlify/eslint-plugin-vue-i18n
npm install --save vue-i18n@next
yarn add vue-i18n@next
- 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
- fallbackLocale
- 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
- Translation
<i18n-t>
- NumberFormat
<i18n-n>
- DatetimeFormat
<i18n-d>
- Translation
- 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