A short review of your code revealed the following errors:

feeds.info has a line (line 7) referring to a non-existent file that should be removed:
files[] = FeedsYoutubeParser.inc

FeedsEntityTranslation.inc. line 29, has a call to die that should be removed:

    die(print_r($config));

FeedsEntityTranslation.inc. line 45, has a use of $langauge_code, that I guess should be replaced by $options:

      '#options' => $language_code,

Should be:

      '#options' => $options,

feeds_et.mappers.inc, line 30, has a call to a non-existing function:

  _field_feeds_set_target($source, $entity, $target, $value, FALSE, $language_code);

I guess it should be changed to:

  _feeds_et_field_feeds_set_target($source, $entity, $target, $value, FALSE, $language_code);

I hope you can confirm these problems and commit the patch soon.

Comments

fietserwin created an issue. See original summary.

PascalAnimateur’s picture

StatusFileSize
new2.09 KB

Somehow the patch didn't apply cleanly on 1.x-dev.

Re-rolled it hoping it will work..

mohammed j. razem’s picture

This is no longer applicable as the file FeedsEntityTranslation.inc is no longer needed.
And other errors were patched in #1720826: Translations are not saved and #1648532: Undefined index: FeedsImporter in FeedsPlugin::child() when none of the fields are translatable

mohammed j. razem’s picture

Status: Needs review » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.