Browse Source
Merge pull request #8519 from abpframework/enisn/rel-4.3/cms-kit/toolbar-items
Cms Kit - Update Toolbar item resources
pull/8522/head
İlkay İlknur
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
12 additions and
7 deletions
-
modules/cms-kit/src/Volo.CmsKit.Admin.Web/CmsKitAdminWebModule.cs
-
modules/cms-kit/src/Volo.CmsKit.Domain.Shared/Volo/CmsKit/Localization/Resources/en.json
-
modules/cms-kit/src/Volo.CmsKit.Domain.Shared/Volo/CmsKit/Localization/Resources/tr.json
|
|
|
@ -92,7 +92,7 @@ namespace Volo.CmsKit.Admin.Web |
|
|
|
toolbar => |
|
|
|
{ |
|
|
|
toolbar.AddButton( |
|
|
|
LocalizableString.Create<CmsKitResource>("New"), |
|
|
|
LocalizableString.Create<CmsKitResource>("NewTag"), |
|
|
|
icon: "plus", |
|
|
|
name: "NewButton", |
|
|
|
requiredPolicyName: CmsKitAdminPermissions.Tags.Create |
|
|
|
@ -104,7 +104,7 @@ namespace Volo.CmsKit.Admin.Web |
|
|
|
toolbar => |
|
|
|
{ |
|
|
|
toolbar.AddButton( |
|
|
|
LocalizableString.Create<CmsKitResource>("New"), |
|
|
|
LocalizableString.Create<CmsKitResource>("NewPage"), |
|
|
|
icon: "plus", |
|
|
|
name: "CreatePage", |
|
|
|
requiredPolicyName: CmsKitAdminPermissions.Pages.Create |
|
|
|
@ -115,7 +115,7 @@ namespace Volo.CmsKit.Admin.Web |
|
|
|
toolbar => |
|
|
|
{ |
|
|
|
toolbar.AddButton( |
|
|
|
LocalizableString.Create<CmsKitResource>("New"), |
|
|
|
LocalizableString.Create<CmsKitResource>("NewBlog"), |
|
|
|
icon: "plus", |
|
|
|
name: "CreateBlog", |
|
|
|
id: "CreateBlog", |
|
|
|
@ -127,7 +127,7 @@ namespace Volo.CmsKit.Admin.Web |
|
|
|
toolbar => |
|
|
|
{ |
|
|
|
toolbar.AddButton( |
|
|
|
LocalizableString.Create<CmsKitResource>("New"), |
|
|
|
LocalizableString.Create<CmsKitResource>("NewBlogPost"), |
|
|
|
icon: "plus", |
|
|
|
name: "CreateBlogPost", |
|
|
|
id: "CreateBlogPost", |
|
|
|
|
|
|
|
@ -52,8 +52,10 @@ |
|
|
|
"Menu:CMS": "CMS", |
|
|
|
"Message": "Message", |
|
|
|
"MessageDeletionConfirmationMessage": "This comment will be deleted completely.", |
|
|
|
"Name": "Name", |
|
|
|
"New": "New", |
|
|
|
"NewPage": "New Page", |
|
|
|
"NewBlog": "New Blog", |
|
|
|
"NewBlogPost": "New Blog Post", |
|
|
|
"NewTag": "New Tag", |
|
|
|
"OK": "OK", |
|
|
|
"PageDeletionConfirmationMessage": "Are you sure to delete this page?", |
|
|
|
"PageSlugInformation": "Slug is used on url. Your url will be '/pages/{{slug}}'.", |
|
|
|
|
|
|
|
@ -54,7 +54,10 @@ |
|
|
|
"Message": "Mesaj", |
|
|
|
"MessageDeletionConfirmationMessage": "Bu yorum tamamen silinecektir", |
|
|
|
"Name": "Ad", |
|
|
|
"New": "Yeni", |
|
|
|
"NewPage": "Yeni Sayfa", |
|
|
|
"NewBlog": "Yeni Blog", |
|
|
|
"NewBlogPost": "Yeni Blog Yazısı", |
|
|
|
"NewTag": "Yeni Etiket", |
|
|
|
"OK": "Tamam", |
|
|
|
"PageDeletionConfirmationMessage": "Bu sayfayı silmek istediğinize emin misiniz?", |
|
|
|
"PageSlugInformation": "Etiket URL'de kullanılır. Url şöyle görünür: '/pages/{{slug}}'.", |
|
|
|
|