Fix typo in _t function declaration

This commit is contained in:
Germain Souquet 2021-04-26 17:14:55 +01:00
parent 8ae641bc59
commit 46b1015478

View file

@ -18,7 +18,7 @@ const counterpart = require('counterpart');
const DEFAULT_LOCALE = "en"; const DEFAULT_LOCALE = "en";
function _t(text) { function _td(text) {
return text; return text;
} }
@ -125,5 +125,5 @@ class AppLocalization {
module.exports = { module.exports = {
AppLocalization, AppLocalization,
_t, _t,
_t, _td,
}; };