discourse/app/assets/javascripts/discourse-common/addon/helpers/bound-i18n.js
David Taylor 32665cf9dd
DEV: Consolidate i18n import paths (#29804)
Enables our new eslint rules which enforce consistent i18n imports. For more info, see 0d58b40cd7
2024-11-19 20:45:18 +00:00

7 lines
175 B
JavaScript

import { htmlSafe } from "@ember/template";
import { i18n } from "discourse-i18n";
export default function boundI18n(key, options) {
return htmlSafe(i18n(key, options));
}