mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 14:03:48 +03:00
35e3e0708c
- The proxy is not a helper, we want the helpers folder to only include helpers - The proxy is also meant to be the interface to Ghost for the helpers, and we want to enforce that - This is a small step on the way
26 lines
1021 B
JavaScript
26 lines
1021 B
JavaScript
// # t helper
|
|
// i18n: Translatable handlebars expressions for templates of the front-end and themes.
|
|
// Front-end: .hbs templates in core/server, overridden by copies in themes. Themes: in content/themes.
|
|
//
|
|
// Usage examples, for example in .hbs theme templates:
|
|
// {{t "Get the latest posts delivered right to your inbox"}}
|
|
// {{{t "Proudly published with {ghostlink}" ghostlink="<a href=\"https://ghost.org\">Ghost</a>"}}}
|
|
//
|
|
// To preserve HTML, use {{{t}}}. This helper doesn't use a SafeString object which would prevent escaping,
|
|
// because often other helpers need that (t) returns a string to be able to work as subexpression; e.g.:
|
|
// {{tags prefix=(t " on ")}}
|
|
|
|
const {themeI18n} = require('../services/proxy');
|
|
|
|
module.exports = function t(text, options) {
|
|
var bindings = {},
|
|
prop;
|
|
for (prop in options.hash) {
|
|
if (Object.prototype.hasOwnProperty.call(options.hash, prop)) {
|
|
bindings[prop] = options.hash[prop];
|
|
}
|
|
}
|
|
|
|
return themeI18n.t(text, bindings);
|
|
};
|