How do you report missing translations in Angular?

By default, When translation is missing, it generates a warning message such as “Missing translation for message ‘somekey’”. But we can configure with a different level of message in Angular compiler as below,

  1. Error: It throws an error. If you are using AOT compilation, the build will fail. But if you are using JIT compilation, the app will fail to load.
  2. Warning (default): It shows a ‘Missing translation’ warning in the console or shell.
  3. Ignore: It doesn’t do anything.