From 162502b19e58857a379422e4558ac93d95b63799 Mon Sep 17 00:00:00 2001 From: Alex Nuttall <40371702+thick-hollins@users.noreply.github.com> Date: Wed, 6 Oct 2021 08:59:21 +0100 Subject: [PATCH] Replaced i18n.t w/ tpl helper in posts.js (#13455) refs: #13380 The i18n package is deprecated. It is being replaced with the tpl package. Co-authored-by: thick-hollins --- core/server/api/canary/posts.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/core/server/api/canary/posts.js b/core/server/api/canary/posts.js index 23e94915a5..1534ecb0eb 100644 --- a/core/server/api/canary/posts.js +++ b/core/server/api/canary/posts.js @@ -1,10 +1,14 @@ const models = require('../../models'); -const i18n = require('../../../shared/i18n'); +const tpl = require('@tryghost/tpl'); const errors = require('@tryghost/errors'); const getPostServiceInstance = require('../../services/posts/posts-service'); const allowedIncludes = ['tags', 'authors', 'authors.roles', 'email']; const unsafeAttrs = ['status', 'authors', 'visibility']; +const messages = { + postNotFound: 'Post not found.' +}; + const postsService = getPostServiceInstance('canary'); module.exports = { @@ -73,7 +77,7 @@ module.exports = { .then((model) => { if (!model) { throw new errors.NotFoundError({ - message: i18n.t('errors.api.posts.postNotFound') + message: tpl(messages.postNotFound) }); } @@ -188,7 +192,7 @@ module.exports = { .then(() => null) .catch(models.Post.NotFoundError, () => { return Promise.reject(new errors.NotFoundError({ - message: i18n.t('errors.api.posts.postNotFound') + message: tpl(messages.postNotFound) })); }); }