0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Replaced i18n.t w/ tpl in uncapitalise.js

refs: TryGhost#13380

- The i18n package is deprecated. It is being replaced with the tpl package.
This commit is contained in:
ozanuslan 2021-10-05 15:49:22 +03:00 committed by Hannah Wolfe
parent d724c8f95d
commit ab86ffc349

View file

@ -14,9 +14,13 @@
const errors = require('@tryghost/errors');
const urlUtils = require('../../../../shared/url-utils');
const i18n = require('../../../../shared/i18n');
const tpl = require('@tryghost/tpl');
const localUtils = require('../utils');
const messages = {
pageNotFound: 'Page not found"'
};
const uncapitalise = (req, res, next) => {
let pathToTest = (req.baseUrl ? req.baseUrl : '') + req.path;
let redirectPath;
@ -38,7 +42,7 @@ const uncapitalise = (req, res, next) => {
decodedURI = decodeURIComponent(pathToTest);
} catch (err) {
return next(new errors.NotFoundError({
message: i18n.t('errors.errors.pageNotFound'),
message: tpl(messages.pageNotFound),
err: err
}));
}