mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 14:24:00 +08:00
48193767bf
Automatically generated by `eslint --fix` to satisfy the updated configuration
12 lines
302 B
JavaScript
12 lines
302 B
JavaScript
import { registerUnbound } from "discourse-common/lib/helpers";
|
|
import I18n from "I18n";
|
|
|
|
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)
|
|
);
|