mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 04:53:43 +08:00
4d2d31e68a
This reverts commit bd19f0c9f1
.
8 lines
257 B
JavaScript
8 lines
257 B
JavaScript
import I18n from "I18n";
|
|
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)
|
|
);
|