Browse Source
Merge pull request #8354 from abpframework/enisn/cms-kit/pages-errorhandling-js
pull/8366/head
Ahmet Çotur
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
7 additions and
2 deletions
-
modules/cms-kit/src/Volo.CmsKit.Admin.Web/Pages/CmsKit/Pages/create.js
-
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
|
|
|
@ -20,6 +20,10 @@ |
|
|
|
abp.notify.success(l('SuccessfullySaved')); |
|
|
|
abp.ui.clearBusy(); |
|
|
|
location.href = "../Pages"; |
|
|
|
}, |
|
|
|
error: function(result){ |
|
|
|
abp.ui.clearBusy(); |
|
|
|
abp.notify.error(result.responseJSON.error.message); |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
@ -20,7 +20,7 @@ |
|
|
|
"CmsKit:Comments:0001": "The entity {EntityType} is not commentable.", |
|
|
|
"CmsKit:Media:0001": "'{Name}' is not a valid media name.", |
|
|
|
"CmsKit:Media:0002": "The entity can't have media.", |
|
|
|
"CmsKit:Page:0001": "The given url ({0}) already exists.", |
|
|
|
"CmsKit:Page:0001": "The given url ({Slug}) already exists. Please try with different url.", |
|
|
|
"CmsKit:Rating:0001": "The entity {EntityType} can't be rated.", |
|
|
|
"CmsKit:Reaction:0001": "The entity {EntityType} can't have reactions.", |
|
|
|
"CmsKit:Tag:0002": "The entity is not taggable!", |
|
|
|
@ -56,6 +56,7 @@ |
|
|
|
"New": "New", |
|
|
|
"OK": "OK", |
|
|
|
"PageDeletionConfirmationMessage": "Are you sure to delete this page?", |
|
|
|
"Pages": "Pages", |
|
|
|
"PageSlugInformation": "Slug is used on url. Your url will be '/pages/{{slug}}'.", |
|
|
|
"Permission:BlogManagement": "Blog Management", |
|
|
|
"Permission:BlogManagement.Create": "Create", |
|
|
|
|
|
|
|
@ -21,7 +21,7 @@ |
|
|
|
"CmsKit:BlogPost:0001": "Aynı url etiketi zaten mevcut.", |
|
|
|
"CmsKit:Comments:0001": "{0} ögesi yorumlanabilir değil.", |
|
|
|
"CmsKit:Media:0002": "Bu öge için medya eklenemez.", |
|
|
|
"CmsKit:Page:0001": "Girilen url ({0}) kullanımdadır.", |
|
|
|
"CmsKit:Page:0001": "Girilen url ({Slug}) kullanımdadır. Başka bir url giriniz.", |
|
|
|
"CmsKit:Rating:0001": "{EntityType}, puanlanabilir değil.", |
|
|
|
"CmsKit:Reaction:0001": "Bu ögeye tepki verilemez.", |
|
|
|
"CmsKit:Tag:0002": "Bu öge etiketlenebilir değil.", |
|
|
|
|