From 3410b1c74f42d2154b2c5c325a50b1e5ba7bc7ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Wed, 22 Nov 2023 20:14:26 +0800 Subject: [PATCH] docs(dialog): fix translation Error and keep the sample code the same (#12465) --- packages/vant/src/dialog/README.md | 27 ++++++++++++++++++------ packages/vant/src/dialog/README.zh-CN.md | 8 ++----- packages/vant/src/dialog/demo/index.vue | 9 +++++--- 3 files changed, 28 insertions(+), 16 deletions(-) diff --git a/packages/vant/src/dialog/README.md b/packages/vant/src/dialog/README.md index 92dbc10aa..2c6fa0f6f 100644 --- a/packages/vant/src/dialog/README.md +++ b/packages/vant/src/dialog/README.md @@ -25,7 +25,7 @@ For example, calling the `showDialog` function will render a Dialog directly in ```js import { showDialog } from 'vant'; -showDialog({ message: 'Content' }); +showDialog({ message: 'Alert' }); ``` ## Usage @@ -35,15 +35,18 @@ showDialog({ message: 'Content' }); Used to prompt for some messages, only including one confirm button by default. ```js +import { showDialog } from 'vant'; + showDialog({ title: 'Title', - message: 'Content', + message: 'The code is written for people to see and can be run on a machine.', }).then(() => { // on close }); showDialog({ - message: 'Content', + message: + 'Life is far more than just spinning and being busy to the limit, and human experiences are much broader and richer than this.', }).then(() => { // on close }); @@ -54,9 +57,12 @@ showDialog({ Used to confirm some messages, including a confirm button and a cancel button by default. ```js +import { showConfirmDialog } from 'vant'; + showConfirmDialog({ title: 'Title', - message: 'Content', + message: + 'If the solution is ugly, then there must be a better solution, but it has not been discovered yet.', }) .then(() => { // on confirm @@ -71,16 +77,19 @@ showConfirmDialog({ Setting the `theme` option to `round-button` will display the Dialog with a rounded button style. ```js +import { showDialog } from 'vant'; + showDialog({ title: 'Title', - message: 'Content', + message: 'The code is written for people to see and can be run on a machine.', theme: 'round-button', }).then(() => { // on close }); showDialog({ - message: 'Content', + message: + 'Life is far more than just spinning and being busy to the limit, and human experiences are much broader and richer than this.', theme: 'round-button', }).then(() => { // on close @@ -92,16 +101,20 @@ showDialog({ You can pass a callback function through the `beforeClose` option to perform specific operations before closing the Dialog. ```js +import { showConfirmDialog } from 'vant'; + const beforeClose = (action) => new Promise((resolve) => { setTimeout(() => { + // action !== 'confirm' Interception cancellation operation resolve(action === 'confirm'); }, 1000); }); showConfirmDialog({ title: 'Title', - message: 'Content', + message: + 'If the solution is ugly, then there must be a better solution, but it has not been discovered yet.', beforeClose, }); ``` diff --git a/packages/vant/src/dialog/README.zh-CN.md b/packages/vant/src/dialog/README.zh-CN.md index 8acdfc4b5..67c94e614 100644 --- a/packages/vant/src/dialog/README.zh-CN.md +++ b/packages/vant/src/dialog/README.zh-CN.md @@ -104,12 +104,8 @@ import { showConfirmDialog } from 'vant'; const beforeClose = (action) => new Promise((resolve) => { setTimeout(() => { - if (action === 'confirm') { - resolve(true); - } else { - // 拦截取消操作 - resolve(false); - } + // action !== 'confirm' 拦截取消操作 + resolve(action === 'confirm'); }, 1000); }); diff --git a/packages/vant/src/dialog/demo/index.vue b/packages/vant/src/dialog/demo/index.vue index 0a7447bf5..d66dcc70f 100644 --- a/packages/vant/src/dialog/demo/index.vue +++ b/packages/vant/src/dialog/demo/index.vue @@ -24,9 +24,12 @@ const t = useTranslate({ alert1: 'Alert', alert2: 'Alert without title', confirm: 'Confirm dialog', - content1: 'Content', - content2: 'Content', - content3: 'Content', + content1: + 'The frequency of people swearing during code reading is the only measure of code quality.', + content2: + 'Life is far more than just spinning and busy to the limit, and human experiences are much broader and richer than this.', + content3: + 'If the solution is ugly, then there must be a better solution, but it has not been discovered yet.', beforeClose: 'Before Close', roundButton: 'Round Button Style', useComponent: 'Use Dialog Component',