mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-24 23:48:13 -05:00
Replace i18n with tpl in core/server/api/v3/memberSigninUrls.js (#13584)
refs: #13380 - The i18n package is deprecated. It is being replaced with the tpl package.
This commit is contained in:
parent
dbdf7160bf
commit
6e14047a2a
1 changed files with 3 additions and 0 deletions
|
@ -1,6 +1,9 @@
|
||||||
const tpl = require('@tryghost/tpl');
|
const tpl = require('@tryghost/tpl');
|
||||||
const errors = require('@tryghost/errors');
|
const errors = require('@tryghost/errors');
|
||||||
const membersService = require('../../services/members');
|
const membersService = require('../../services/members');
|
||||||
|
const messages = {
|
||||||
|
memberNotFound: 'Member not found.'
|
||||||
|
};
|
||||||
|
|
||||||
const messages = {
|
const messages = {
|
||||||
memberNotFound: 'Member not found.'
|
memberNotFound: 'Member not found.'
|
||||||
|
|
Loading…
Add table
Reference in a new issue