From d0df87b5aa3d8516ee74ddd914e1389fafd07a61 Mon Sep 17 00:00:00 2001 From: Arman Ozak Date: Tue, 14 Jul 2020 11:35:46 +0300 Subject: [PATCH] docs: remove AbpAccount as localization resource --- docs/en/Tutorials/Part-3.md | 10 +++++----- docs/en/Tutorials/Part-5.md | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/en/Tutorials/Part-3.md b/docs/en/Tutorials/Part-3.md index ef1f903c51..3b31ec1c88 100644 --- a/docs/en/Tutorials/Part-3.md +++ b/docs/en/Tutorials/Part-3.md @@ -716,7 +716,7 @@ Open `/src/app/book/book.component.html` and make the following changes: @@ -856,13 +856,13 @@ Also replace ` ` with the following code p ````html ```` @@ -1142,7 +1142,7 @@ constructor( // Add a delete method delete(id: string) { - this.confirmation.warn('::AreYouSureToDelete', 'AbpAccount::AreYouSure').subscribe((status) => { + this.confirmation.warn('::AreYouSureToDelete', '::AreYouSure').subscribe((status) => { if (status === Confirmation.Status.confirm) { this.bookService.deleteById(id).subscribe(() => this.list.get()); } @@ -1165,7 +1165,7 @@ Open `/src/app/book/book.component.html` and modify the `ngbDropdownMenu` to add
``` diff --git a/docs/en/Tutorials/Part-5.md b/docs/en/Tutorials/Part-5.md index 5dd6a55e30..537f79ca79 100644 --- a/docs/en/Tutorials/Part-5.md +++ b/docs/en/Tutorials/Part-5.md @@ -390,7 +390,7 @@ Open the `/src/app/book/book.component.html` file and replace the edit and delet ````