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:
parent
d724c8f95d
commit
ab86ffc349
1 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
}));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue