1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/discourse/components/wizard-message.js.es6
2020-04-20 21:40:32 +10:00

16 Zeilen
Kein EOL
473 B
JavaScript

import { default as discourseComputed } from 'discourse-common/utils/decorators';
import Component from "@ember/component";
export default Component.extend({
classNames: 'wizard-message',
@discourseComputed('key', 'component')
message(key, component) {
return I18n.t(`admin.wizard.message.${component}.${key}`);
},
@discourseComputed('component')
documentation(component) {
return I18n.t(`admin.wizard.message.${component}.documentation`);
}
})