discourse/app/assets/javascripts/discourse-common/helpers/i18n.js
2020-03-23 15:05:58 -04: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)
);