mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
5 lines
229 B
JavaScript
5 lines
229 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));
|