diff --git a/en/application-dev/reference/apis/figures/en-us_image_0001.gif b/en/application-dev/reference/apis/figures/en-us_image_0001.gif
new file mode 100644
index 0000000000000000000000000000000000000000..099acf91f8a1a6936c56e0ae09aaf7530b080828
Binary files /dev/null and b/en/application-dev/reference/apis/figures/en-us_image_0001.gif differ
diff --git a/en/application-dev/reference/apis/figures/en-us_image_0002.gif b/en/application-dev/reference/apis/figures/en-us_image_0002.gif
new file mode 100644
index 0000000000000000000000000000000000000000..6e4c041811c24ffba57eee64c64d12532150fe4b
Binary files /dev/null and b/en/application-dev/reference/apis/figures/en-us_image_0002.gif differ
diff --git a/en/application-dev/reference/apis/figures/en-us_image_0004.gif b/en/application-dev/reference/apis/figures/en-us_image_0004.gif
new file mode 100644
index 0000000000000000000000000000000000000000..f622ab0eca3995baece321539984c289ab1b8b1a
Binary files /dev/null and b/en/application-dev/reference/apis/figures/en-us_image_0004.gif differ
diff --git a/en/application-dev/reference/apis/figures/en-us_image_0005.gif b/en/application-dev/reference/apis/figures/en-us_image_0005.gif
new file mode 100644
index 0000000000000000000000000000000000000000..5d904fbfabdc50751afd51e9a29b0aa18c6e445f
Binary files /dev/null and b/en/application-dev/reference/apis/figures/en-us_image_0005.gif differ
diff --git a/en/application-dev/reference/apis/figures/en-us_image_0006.gif b/en/application-dev/reference/apis/figures/en-us_image_0006.gif
new file mode 100644
index 0000000000000000000000000000000000000000..7477b94b0437fadfc2d875841f182648d1bcccc9
Binary files /dev/null and b/en/application-dev/reference/apis/figures/en-us_image_0006.gif differ
diff --git a/en/application-dev/reference/apis/js-apis-bundle-ShortcutInfo.md b/en/application-dev/reference/apis/js-apis-bundle-ShortcutInfo.md
index d45f34389b0cf049376e282fb2fdf2a2f3130075..f73ed38dc4d0d844d16f7393799e2a66c2fea51c 100644
--- a/en/application-dev/reference/apis/js-apis-bundle-ShortcutInfo.md
+++ b/en/application-dev/reference/apis/js-apis-bundle-ShortcutInfo.md
@@ -1,6 +1,6 @@
# ShortcutInfo
-The **ShortcutInfo** module provides shortcut information defined in the configuration file.
+The **ShortcutInfo** module provides shortcut information defined in the configuration file. For details about the configuration in the FA model, see [config.json](../../quick-start/package-structure.md). For details about the configuration in the stage model, see [Internal Structure of the shortcuts Attribute](../../quick-start/stage-structure.md#internal-structure-of-the-shortcuts-attribute).
> **NOTE**
>
diff --git a/en/application-dev/reference/apis/js-apis-prompt.md b/en/application-dev/reference/apis/js-apis-prompt.md
index e88c899e36745869e6009616b1c8581c3fa37b49..9cfb25d1cdfc85197d85a8053c13c04bd5a7e8af 100644
--- a/en/application-dev/reference/apis/js-apis-prompt.md
+++ b/en/application-dev/reference/apis/js-apis-prompt.md
@@ -43,9 +43,9 @@ Describes the options for showing the toast.
| Name | Type | Mandatory | Description |
| -------- | ---------------------------------------- | ---- | ---------------------------------------- |
-| message | string\| [Resource](../../ui/ts-types.md#resource-type)9+| Yes | Text to display. |
+| message | string\| [Resource](../arkui-ts/ts-types.md#resource)9+ | Yes | Text to display. |
| duration | number | No | Duration that the toast will remain on the screen. The default value is 1500 ms. The value range is 1500 ms to 10000 ms. If a value less than 1500 ms is set, the default value is used. If the value greater than 10000 ms is set, the upper limit 10000 ms is used.|
-| bottom | string\| number | No | Distance between the toast border and the bottom of the screen. |
+| bottom | string\| number | No | Distance between the toast border and the bottom of the screen. |
## prompt.showDialog
@@ -92,6 +92,8 @@ prompt.showDialog({
})
```
+
+
## prompt.showDialog
showDialog(options: ShowDialogOptions, callback: AsyncCallback<ShowDialogSuccessResponse>):void
@@ -132,6 +134,8 @@ prompt.showDialog({
});
```
+
+
## ShowDialogOptions
Describes the options for showing the dialog box.
@@ -140,8 +144,8 @@ Describes the options for showing the dialog box.
| Name | Type | Mandatory | Description |
| ------- | ---------------------------------------- | ---- | ---------------------------------------- |
-| title | string\| [Resource](../../ui/ts-types.md#resource-type)9+| No | Title of the dialog box. |
-| message | string\| [Resource](../../ui/ts-types.md#resource-type)9+| No | Text body. |
+| title | string\| [Resource](../arkui-ts/ts-types.md#resource)9+ | No | Title of the dialog box. |
+| message | string\| [Resource](../arkui-ts/ts-types.md#resource)9+ | No | Text body. |
| buttons | Array | No | Array of buttons in the dialog box. The array structure is **{text:'button', color: '\#666666'}**. Up to three buttons are supported. The first button is of the **positiveButton** type, the second is of the **negativeButton** type, and the third is of the **neutralButton** type.|
## ShowDialogSuccessResponse
@@ -170,7 +174,6 @@ Shows an action menu. This API uses a callback to return the result asynchronous
| options | [ActionMenuOptions](#actionmenuoptions) | Yes | Action menu options. |
| callback | AsyncCallback<[ActionMenuSuccessResponse](#actionmenusuccessresponse)> | Yes | Callback used to return the action menu response result.|
-
**Example**
```js
@@ -195,6 +198,8 @@ prompt.showActionMenu({
})
```
+
+
## prompt.showActionMenu
showActionMenu(options: ActionMenuOptions): Promise<ActionMenuSuccessResponse>
@@ -246,7 +251,7 @@ Describes the options for showing the action menu.
| Name | Type | Mandatory | Description |
| ------- | ---------------------------------------- | ---- | ---------------------------------------- |
-| title | string\| [Resource](../../ui/ts-types.md#resource-type)9+| No | Title of the text to display. |
+| title | string\| [Resource](../arkui-ts/ts-types.md#resource)9+ | No | Title of the text to display. |
| buttons | Array<[Button](#button)> | Yes | Array of menu item buttons. The array structure is **{text:'button', color: '\#666666'}**. Up to six buttons are supported. If there are more than six buttons, extra buttons will not be displayed.|
## ActionMenuSuccessResponse
@@ -267,5 +272,5 @@ Describes the menu item button in the action menu.
| Name | Type | Mandatory | Description |
| ----- | ---------------------------------------- | ---- | ------- |
-| text | string\| [Resource](../../ui/ts-types.md#resource-type)9+| Yes | Button text.|
-| color | string\| [Resource](../../ui/ts-types.md#resource-type)9+| Yes | Text color of the button.|
+| text | string\| [Resource](../arkui-ts/ts-types.md#resource)9+ | Yes | Button text.|
+| color | string\| [Resource](../arkui-ts/ts-types.md#resource)9+ | Yes | Text color of the button.|