mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 14:19:49 +08:00
7 lines
232 B
JavaScript
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)
|
|
);
|