8a62662e6e
* mark string as html safe before passing to translation instead of bypassing HTML escape using {{{unsafe}}} syntax * replace ember-i18n with ember-intl
8 lines
292 B
JavaScript
8 lines
292 B
JavaScript
import classic from 'ember-classic-decorator';
|
|
import BaseMessages from 'ember-intl-cp-validations/validators/messages';
|
|
|
|
@classic
|
|
export default class ValidationMessages extends BaseMessages {
|
|
validCollection = 'This collection is not valid.';
|
|
time = '{{value}} is not a vaild time.';
|
|
}
|