Skip to content

Commit 126ef80

Browse files
committed
fix
1 parent ea63f94 commit 126ef80

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

benchmark/complex-jit-aot.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
createCoreContext,
77
registerMessageCompiler,
88
translate
9-
} from '@intlify/core-base' // eslint-disable-line import/namespace -- FIXME:
9+
} from '@intlify/core-base'
1010
import { baseCompile } from '@intlify/message-compiler'
1111
import { bench, run } from 'mitata' // eslint-disable-line import/namespace -- FIXME:
1212
import { dirname, resolve } from 'node:path'

benchmark/complex-jit.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
createCoreContext,
77
registerMessageCompiler,
88
translate
9-
} from '@intlify/core-base' // eslint-disable-line import/namespace -- FIXME:
9+
} from '@intlify/core-base'
1010
import { bench, run } from 'mitata' // eslint-disable-line import/namespace -- FIXME:
1111
import { dirname, resolve } from 'node:path'
1212
import { createI18n } from 'vue-i18n'

benchmark/complex.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { clearCompileCache, createCoreContext, translate } from '@intlify/core-base' // eslint-disable-line import/namespace -- FIXME:
1+
import { clearCompileCache, createCoreContext, translate } from '@intlify/core-base'
22
import { bench, run } from 'mitata' // eslint-disable-line import/namespace -- FIXME:
33
import { dirname, resolve } from 'node:path'
44
import { createI18n } from 'vue-i18n'

benchmark/simple-jit-aot.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
createCoreContext,
77
registerMessageCompiler,
88
translate
9-
} from '@intlify/core-base' // eslint-disable-line import/namespace -- FIXME:
9+
} from '@intlify/core-base'
1010
import { baseCompile } from '@intlify/message-compiler'
1111
import { bench, run } from 'mitata' // eslint-disable-line import/namespace -- FIXME:
1212
import { dirname, resolve } from 'node:path'

benchmark/simple-jit.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
createCoreContext,
77
registerMessageCompiler,
88
translate
9-
} from '@intlify/core-base' // eslint-disable-line import/namespace -- FIXME:
9+
} from '@intlify/core-base'
1010
import { bench, run } from 'mitata' // eslint-disable-line import/namespace -- FIXME:
1111
import { dirname, resolve } from 'node:path'
1212
import { createI18n } from 'vue-i18n'

benchmark/simple.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { clearCompileCache, createCoreContext, translate } from '@intlify/core-base' // eslint-disable-line import/namespace -- FIXME:
1+
import { clearCompileCache, createCoreContext, translate } from '@intlify/core-base'
22
import { bench, run } from 'mitata' // eslint-disable-line import/namespace -- FIXME:
33
import { dirname, resolve } from 'node:path'
44
import { createI18n } from 'vue-i18n'

docs/api/v11/composition.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ If you are specified `true`, a warning will be output at console.
311311
312312
See about:
313313
- [HTML Message](../../guide/essentials/syntax#html-message)
314-
- - [Change `warnHtmlInMessage` option default value](../../guide/migration/breaking#change-warnhtmlinmessage-option-default-value)
314+
- [Change `warnHtmlInMessage` option default value](../../guide/migration/breaking#change-warnhtmlinmessage-option-default-value)
315315
316316
### getDateTimeFormat(locale)
317317
@@ -379,8 +379,6 @@ get locale message from Composer instance .
379379
380380
Get missing handler
381381
382-
See about: -
383-
384382
**Signature:**
385383
```typescript
386384
getMissingHandler(): MissingHandler | null;

docs/api/v11/general.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export interface ExportedGlobalComposer
181181

182182
**Details**
183183

184-
This interface is the that is provided interface that is injected into each component with `app.config.globalProperties`.
184+
This interface is the [global composer](general#global) that is provided interface that is injected into each component with `app.config.globalProperties`.
185185

186186
### availableLocales
187187

@@ -363,8 +363,6 @@ If you want to install manually in the `import` syntax, you can set it to `false
363363

364364
I18n Scope
365365

366-
See about: - -
367-
368366
**Signature:**
369367
```typescript
370368
export type I18nScope = 'local' | 'parent' | 'global';
@@ -512,7 +510,7 @@ A fallback locale function implemented with a fallback chain algorithm. It's use
512510

513511
## fallbackWithSimple
514512

515-
Fallback with simple implemenation
513+
Fallback with simple implementation
516514

517515
**Signature:**
518516
```typescript

docs/api/v11/legacy.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -897,6 +897,8 @@ This is useful when translation output is used in `v-html` and the translation r
897897

898898
This usage pattern mostly occurs when passing precomputed text strings into UI components.
899899

900+
The escape process involves replacing the following symbols with their respective HTML character entities: `<`, `>`, `"`, `'`.
901+
900902
Setting `escapeParameterHtml` as true should not break existing functionality but provides a safeguard against a subtle type of XSS attack vectors.
901903

902904
**Default Value**

docs/guide/advanced/lazy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ The following three functions are exported:
7777
<!-- eslint-disable markdown/no-missing-label-refs -->
7878

7979
> [!TIP]
80-
> This code example also shows how to handle it outside of the component using the [`global` property of i18n instance](../../api/general/interfaces/I18n.md#global).
80+
> This code example also shows how to handle it outside the component using the [`global` property of i18n instance](../../api/general/interfaces/I18n.md#global).
8181
> About i18n instance, see the [API Reference](../../api/general/interfaces/I18n.md)
8282
8383
<!-- eslint-enable markdown/no-missing-label-refs -->

0 commit comments

Comments
 (0)