NetanelBasal
1/10/2017 - 4:45 PM

control-errors2.component.ts

export const CONTROL_ERRORS : OpaqueToken = new OpaqueToken('CONTROL_ERRORS');

const DEFAULT_CONTROL_ERRORS = {
  required: ":placeholder is required",
  minlength: ":placeholder should be at least :requiredLength characters"
}

@NgModule({
  ...
  providers: [{provide: CONTROL_ERRORS , useValue: DEFAULT_CONTROL_ERRORS} ]
})
export class AppModule {}