diff --git a/ghost/admin/app/components/modal-post-history.hbs b/ghost/admin/app/components/modal-post-history.hbs
index 562ac674ad..4795ea8103 100644
--- a/ghost/admin/app/components/modal-post-history.hbs
+++ b/ghost/admin/app/components/modal-post-history.hbs
@@ -34,7 +34,7 @@
{{svg-jar "arrow-left"}}
Back
-
Post history
+
{{capitalize this.post.displayName}} history
diff --git a/ghost/admin/app/components/modals/restore-revision.js b/ghost/admin/app/components/modals/restore-revision.js
index 4a65802270..fcb576b2ea 100644
--- a/ghost/admin/app/components/modals/restore-revision.js
+++ b/ghost/admin/app/components/modals/restore-revision.js
@@ -8,17 +8,17 @@ export default class RestoreRevisionModal extends Component {
get title() {
return this.args.data.post.isPublished === true
- ? 'Restore version for published post?'
- : 'Restore this version?';
+ ? `Restore version for published ${this.args.data.post.displayName}?`
+ : `Restore this version?`;
}
get body() {
return this.args.data.post.isPublished === true
? htmlSafe(`
- Heads up! This post has already been published, restoring a previous
- version will automatically update the post on your site.
+ Heads up! This ${this.args.data.post.displayName} has already been published, restoring a previous
+ version will automatically update the ${this.args.data.post.displayName} on your site.
`)
- : 'Replace your existing draft with this version of the post.';
+ : `Replace your existing draft with this version of the ${this.args.data.post.displayName}.`;
}
@task