UNPKG

421 BJavaScriptView Raw
1export { default as Service } from './services/intl';
2export * from './macros';
3
4import { deprecate } from '@ember/application/deprecations';
5import { t } from './macros';
6
7export function translationMacro(...args) {
8 deprecate(`ember-intl: 'translationMacro' was renamed to just 't'. Please update the import statement.`, false, {
9 id: 'ember-intl.translationMacro',
10 until: '5.0.0'
11 });
12
13 return t(...args);
14}