mirror of
https://github.com/discourse/discourse.git
synced 2025-02-11 09:37:31 +08:00
![Robin Ward](/assets/img/avatar_default.png)
This is to help with the migration to Ember CLI. In the current running version of Discourse everything should be the same as before, just with a few extra files that are not used. However, using Ember CLI this can be installed as an Ember addon. Co-Authored-By: Jarek Radosz <jradosz@gmail.com>
7 lines
232 B
JavaScript
7 lines
232 B
JavaScript
import { registerUnbound } from "discourse-common/lib/helpers";
|
|
|
|
registerUnbound("i18n", (key, params) => I18n.t(key, params));
|
|
registerUnbound("i18n-yes-no", (value, params) =>
|
|
I18n.t(value ? "yes_value" : "no_value", params)
|
|
);
|