mirror of
https://github.com/discourse/discourse.git
synced 2024-12-19 23:53:54 +08:00
32665cf9dd
Enables our new eslint rules which enforce consistent i18n imports. For more info, see 0d58b40cd7
9 lines
262 B
JavaScript
9 lines
262 B
JavaScript
import { registerRawHelper } from "discourse-common/lib/helpers";
|
|
import { i18n } from "discourse-i18n";
|
|
|
|
registerRawHelper("i18n-yes-no", i18nYesNo);
|
|
|
|
export default function i18nYesNo(value, params) {
|
|
return i18n(value ? "yes_value" : "no_value", params);
|
|
}
|