|  | @@ -1293,8 +1293,10 @@ class MaterioSchemaExtension extends SdlSchemaExtensionPluginBase {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      $registry->addFieldResolver('Country', 'country_name',
 | 
	
		
			
				|  |  |       $builder->callback(function ($parent, $args) {
 | 
	
		
			
				|  |  | +        // As company terms are not translated we have to get the current site language instead of parent language
 | 
	
		
			
				|  |  | +        $langcode = \Drupal::languageManager()->getCurrentLanguage()->getId();
 | 
	
		
			
				|  |  |          $cc =  $parent[0]['country_code'];
 | 
	
		
			
				|  |  | -        $countries = $this->countryRepository->getList();
 | 
	
		
			
				|  |  | +        $countries = $this->countryRepository->getList($langcode);
 | 
	
		
			
				|  |  |          $cn = isset($countries[$cc]) ? $countries[$cc] : $cc;
 | 
	
		
			
				|  |  |          return $cn;
 | 
	
		
			
				|  |  |       })
 |