discourse/app/assets/javascripts/discourse-common/helpers/i18n.js.es6
2018-06-15 17:03:24 +02:00

7 lines
232 B
JavaScript

import { registerUnbound } from "discourse-common/lib/helpers";
registerUnbound("i18n", (key, params) => I18n.t(key, params));
registerUnbound("i18n-yes-no", (value, params) =>
I18n.t(value ? "yes_value" : "no_value", params)
);