This interface defines a method that a custom translation converter has to implement:
interface TranslationConverter {
convert(
language: string,
resource: Resource,
translations: any
): object;
}
Converts the translations of custom format to a JavaScript object.
Returns an object that contains the translation items.