Skip to content

Commit

Permalink
fix(unplugin-vue-i18n): typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Mar 8, 2024
1 parent 917d8ef commit dcb0207
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/unplugin-vue-i18n/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,15 +89,15 @@ export const unplugin = createUnplugin<PluginOptions>((options = {}, meta) => {
debug('bridge', bridge)
if (bridge) {
warn(
`'bridge' option is deprecated, sinece Vue 2 was EOL on 2023. that option will be removed in 4.0.`
`'bridge' option is deprecated, since Vue 2 was EOL on 2023. that option will be removed in 4.0.`
)
}

const legacy = !!options.legacy
debug('legacy', legacy)
if (legacy) {
warn(
`'legacy' option is deprecated, sinece Vue 2 was EOL on 2023. that option will be removed in 4.0.`
`'legacy' option is deprecated, since Vue 2 was EOL on 2023. that option will be removed in 4.0.`
)
}

Expand All @@ -106,7 +106,7 @@ export const unplugin = createUnplugin<PluginOptions>((options = {}, meta) => {
: undefined
if (vueVersion) {
warn(
`'vueVersion' option is deprecated, sinece Vue 2 was EOL on 2023. that option will be removed in 4.0.`
`'vueVersion' option is deprecated, since Vue 2 was EOL on 2023. that option will be removed in 4.0.`
)
}

Expand Down

0 comments on commit dcb0207

Please sign in to comment.