Skip to content

Commit b205b2d

Browse files
committed
docs: fix
1 parent 4a9bf0f commit b205b2d

File tree

2 files changed

+9
-19
lines changed

2 files changed

+9
-19
lines changed

docs/api/v11/composition.md

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -428,8 +428,6 @@ get number format from Composer instance .
428428
429429
Get post translation handler
430430
431-
See about: -
432-
433431
**Signature:**
434432
```typescript
435433
getPostTranslationHandler(): PostTranslationHandler<VueMessageType> | null;
@@ -582,8 +580,6 @@ Set locale message to Composer instance .
582580
583581
Set missing handler
584582
585-
See about: -
586-
587583
**Signature:**
588584
```typescript
589585
setMissingHandler(handler: MissingHandler | null): void;
@@ -627,8 +623,6 @@ Set number format to Composer instance .
627623
628624
Set post translation handler
629625
630-
See about: -
631-
632626
**Signature:**
633627
```typescript
634628
setPostTranslationHandler(handler: PostTranslationHandler<VueMessageType> | null): void;
@@ -758,8 +752,6 @@ export interface ComposerAdditionalOptions
758752
759753
`ComposerAdditionalOptions` is extend for [ComposerOptions](composition#composeroptions), so you can specify these options.
760754
761-
See about: -
762-
763755
### useScope
764756
765757
## ComposerCustom
@@ -1041,7 +1033,7 @@ escapeParameter?: boolean;
10411033
10421034
If `escapeParameter` is configured as true then interpolation parameters are escaped before the message is translated.
10431035
1044-
This is useful when translation output is used in `v-html` and the translation resource contains html markup (e.g. around a user provided value).
1036+
This is useful when translation output is used in `v-html` and the translation resource contains html markup (e.g. around a user-provided value).
10451037
10461038
This usage pattern mostly occurs when passing precomputed text strings into UI components.
10471039
@@ -1449,7 +1441,7 @@ If not, then it’s translated with global scope locale messages.
14491441

14501442
[!TIP] The use-case for `rt` is for programmatic locale messages translation with using `tm`, `v-for`, javascript `for` statement.
14511443

1452-
[!WARNING] `rt` differs from `t` in that it processes the locale message directly, not the key of the locale message. There is no internal fallback with `rt`. You need to understand and use the structure of the locale messge returned by `tm`.
1444+
[!WARNING] `rt` differs from `t` in that it processes the locale message directly, not the key of the locale message. There is no internal fallback with `rt`. You need to understand and use the structure of the locale message returned by `tm`.
14531445

14541446
See about:
14551447
- [Scope and Locale Changing](../../guide/essentials/scope)
@@ -1481,7 +1473,7 @@ In this overloaded `rt`, return a pluralized translation message.
14811473

14821474
[!TIP] The use-case for `rt` is for programmatic locale messages translation with using `tm`, `v-for`, javascript `for` statement.
14831475

1484-
[!WARNING] `rt` differs from `t` in that it processes the locale message directly, not the key of the locale message. There is no internal fallback with `rt`. You need to understand and use the structure of the locale messge returned by `tm`.
1476+
[!WARNING] `rt` differs from `t` in that it processes the locale message directly, not the key of the locale message. There is no internal fallback with `rt`. You need to understand and use the structure of the locale message returned by `tm`.
14851477

14861478
See about:
14871479
- [Pluralization](../../guide/essentials/pluralization)
@@ -1515,7 +1507,7 @@ In this overloaded `rt`, return a pluralized translation message.
15151507

15161508
[!TIP] The use-case for `rt` is for programmatic locale messages translation with using `tm`, `v-for`, javascript `for` statement.
15171509

1518-
[!WARNING] `rt` differs from `t` in that it processes the locale message directly, not the key of the locale message. There is no internal fallback with `rt`. You need to understand and use the structure of the locale messge returned by `tm`.
1510+
[!WARNING] `rt` differs from `t` in that it processes the locale message directly, not the key of the locale message. There is no internal fallback with `rt`. You need to understand and use the structure of the locale message returned by `tm`.
15191511

15201512
See about:
15211513
- [List interpolation](../../guide/essentials/syntax#list-interpolation)
@@ -1549,7 +1541,7 @@ In this overloaded `rt`, for each placeholder x, the locale messages should cont
15491541

15501542
[!TIP] The use-case for `rt` is for programmatic locale messages translation with using `tm`, `v-for`, javascript `for` statement.
15511543

1552-
[!WARNING] `rt` differs from `t` in that it processes the locale message directly, not the key of the locale message. There is no internal fallback with `rt`. You need to understand and use the structure of the locale messge returned by `tm`.
1544+
[!WARNING] `rt` differs from `t` in that it processes the locale message directly, not the key of the locale message. There is no internal fallback with `rt`. You need to understand and use the structure of the locale message returned by `tm`.
15531545

15541546
See about:
15551547
- [Named interpolation](../../guide/essentials/syntax#named-interpolation)
@@ -2091,8 +2083,6 @@ export type UseI18nOptions<Schema extends {
20912083

20922084
`UseI18nOptions` is inherited [ComposerAdditionalOptions](composition#composeradditionaloptions) and [ComposerOptions](composition#composeroptions), so you can specify these options.
20932085

2094-
See about: -
2095-
20962086
## VueMessageType
20972087

20982088
**Signature:**

docs/api/v11/general.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ readonly availableLocales: Locale[];
194194

195195
**Details**
196196

197-
This property is proxy-like property for `Composer#availableLocales`. About details, see the
197+
This property is a proxy-like property for `Composer#availableLocales`. About details, see the
198198

199199
### fallbackLocale
200200

@@ -207,7 +207,7 @@ fallbackLocale: FallbackLocale;
207207

208208
**Details**
209209

210-
This property is proxy-like property for `Composer#fallbackLocale`. About details, see the
210+
This property is a proxy-like property for `Composer#fallbackLocale`. About details, see the
211211

212212
### locale
213213

@@ -220,7 +220,7 @@ locale: Locale;
220220

221221
**Details**
222222

223-
This property is proxy-like property for `Composer#locale`. About details, see the
223+
This property is a proxy-like property for `Composer#locale`. About details, see the
224224

225225
## I18n
226226

@@ -287,7 +287,7 @@ export interface I18nAdditionalOptions
287287

288288
**Details**
289289

290-
Specific options for
290+
`I18nAdditionalOptions` are specific Vue I18n configuration options for plugin installation and behavior control.
291291

292292
### globalInjection
293293

0 commit comments

Comments
 (0)