@@ -340,31 +340,31 @@ private int ProcessLocalizations(IImportExecuteContext context, ImportRow<Produc
340340 {
341341 var code = lang . UniqueSeoCode ;
342342
343- var value = row . GetDataValue < string > ( "Name" , lang . UniqueSeoCode ) ;
343+ var value = row . GetDataValue < string > ( "Name" , code ) ;
344344 if ( value . HasValue ( ) )
345345 _localizedEntityService . SaveLocalizedValue ( row . Entity , x => x . Name , value , lang . Id ) ;
346346
347- value = row . GetDataValue < string > ( "ShortDescription" , lang . UniqueSeoCode ) ;
347+ value = row . GetDataValue < string > ( "ShortDescription" , code ) ;
348348 if ( value . HasValue ( ) )
349349 _localizedEntityService . SaveLocalizedValue ( row . Entity , x => x . ShortDescription , value , lang . Id ) ;
350350
351- value = row . GetDataValue < string > ( "FullDescription" , lang . UniqueSeoCode ) ;
351+ value = row . GetDataValue < string > ( "FullDescription" , code ) ;
352352 if ( value . HasValue ( ) )
353353 _localizedEntityService . SaveLocalizedValue ( row . Entity , x => x . FullDescription , value , lang . Id ) ;
354354
355- value = row . GetDataValue < string > ( "MetaKeywords" , lang . UniqueSeoCode ) ;
355+ value = row . GetDataValue < string > ( "MetaKeywords" , code ) ;
356356 if ( value . HasValue ( ) )
357357 _localizedEntityService . SaveLocalizedValue ( row . Entity , x => x . MetaKeywords , value , lang . Id ) ;
358358
359- value = row . GetDataValue < string > ( "MetaDescription" , lang . UniqueSeoCode ) ;
359+ value = row . GetDataValue < string > ( "MetaDescription" , code ) ;
360360 if ( value . HasValue ( ) )
361361 _localizedEntityService . SaveLocalizedValue ( row . Entity , x => x . MetaDescription , value , lang . Id ) ;
362362
363- value = row . GetDataValue < string > ( "MetaTitle" , lang . UniqueSeoCode ) ;
363+ value = row . GetDataValue < string > ( "MetaTitle" , code ) ;
364364 if ( value . HasValue ( ) )
365365 _localizedEntityService . SaveLocalizedValue ( row . Entity , x => x . MetaTitle , value , lang . Id ) ;
366366
367- value = row . GetDataValue < string > ( "BundleTitleText" , lang . UniqueSeoCode ) ;
367+ value = row . GetDataValue < string > ( "BundleTitleText" , code ) ;
368368 if ( value . HasValue ( ) )
369369 _localizedEntityService . SaveLocalizedValue ( row . Entity , x => x . BundleTitleText , value , lang . Id ) ;
370370 }
0 commit comments