mirror of
https://github.com/discourse/discourse.git
synced 2025-01-21 11:52:24 +08:00
12 lines
302 B
JavaScript
12 lines
302 B
JavaScript
import I18n from "I18n";
|
|
import { registerUnbound } from "discourse-common/lib/helpers";
|
|
|
|
export default function i18n(key, params) {
|
|
return I18n.t(key, params);
|
|
}
|
|
registerUnbound("i18n", i18n);
|
|
|
|
registerUnbound("i18n-yes-no", (value, params) =>
|
|
I18n.t(value ? "yes_value" : "no_value", params)
|
|
);
|