diff --git a/modules/blogging/src/Volo.Blogging.Domain.Shared/Volo/Blogging/Localization/Resources/en.json b/modules/blogging/src/Volo.Blogging.Domain.Shared/Volo/Blogging/Localization/Resources/en.json index c4ce6f6956..eb7dde7b6b 100644 --- a/modules/blogging/src/Volo.Blogging.Domain.Shared/Volo/Blogging/Localization/Resources/en.json +++ b/modules/blogging/src/Volo.Blogging.Domain.Shared/Volo/Blogging/Localization/Resources/en.json @@ -87,11 +87,6 @@ "Views": "views", "Biography": "biography", "Social": "Social", - "NewBlogPost": "New Blog Post", - "NewBlogPostDescription": "Create a new blog post and share your knowledge and experience with ABP.", - "BlogPage_Title": "ABP Blog", - "BlogPageDescription": "Stay updated with the latest news, updates and insights about ABP Platform.", - "Member_Page_Title": "{0} - Blog Posts", - "Member_Page_Description": "{0} is a member of the ABP Blog community. Read his blog posts and benefit from this experience." + "NewBlogPost" : "New Blog Post" } } diff --git a/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Members/Index.cshtml b/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Members/Index.cshtml index 64ff29d60d..e0465ba57a 100644 --- a/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Members/Index.cshtml +++ b/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Members/Index.cshtml @@ -9,9 +9,7 @@ @inject IStringLocalizer L @inject ICurrentUser CurrentUser @{ - //ViewBag.Title = @Model.User.UserName.ToUpper() + " - " + L["Blogs"].Value; - ViewBag.Title = L["Member_Page_Title",Model.User.UserName].Value; - ViewBag.Description = L["Member_Page_Description", Model.User.UserName].Value; + ViewBag.Title = @Model.User.UserName.ToUpper() + " - " + L["Blogs"].Value; } @section scripts { diff --git a/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Index.cshtml b/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Index.cshtml index 5460b495a8..a0ca2d81e3 100644 --- a/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Index.cshtml +++ b/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Index.cshtml @@ -13,8 +13,7 @@ @inject IStringLocalizer L @inject BloggingPageHelper BloggingPageHelper @{ - ViewBag.Title = L["BlogPage_Title"].Value; - ViewBag.Description = L["BlogPageDescription"].Value; + ViewBag.Title = "Read All Blog Posts"; var blogShortNameRouteParam = Model.BlogOptions.SingleBlogMode.Enabled ? null : Model.BlogShortName; } @section scripts { diff --git a/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/New.cshtml b/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/New.cshtml index 02d545aa7c..bd1140ef04 100644 --- a/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/New.cshtml +++ b/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/New.cshtml @@ -8,7 +8,6 @@ @model Volo.Blogging.Pages.Blogs.Posts.NewModel @{ ViewBag.PageTitle = @L["NewBlogPost"]; - ViewBag.Description = @L["NewBlogPostDescription"]; } @section styles {