[i18n BUG] Code snippet from triggered email

Hi,

I found a small bug in the translation of the code snippet for triggered email . Once the code is translated, it also translate the import statement:

importer wixCRM de 'wix-crm';

//...

wixCRM.emailContact('xxxx', , {
  variables: {
      ...
}});

it should be

import wixCRM from 'wix-crm';  
...