discourse/app/assets/javascripts/discourse-common/addon/helpers/bound-i18n.js
David Taylor 48193767bf DEV: Sort imports
Automatically generated by `eslint --fix` to satisfy the updated configuration
2023-10-10 21:46:54 +01:00

7 lines
163 B
JavaScript

import { htmlSafe } from "@ember/template";
import I18n from "I18n";
export default function boundI18n(key, options) {
return htmlSafe(I18n.t(key, options));
}