SELECT 
  cscart_ab__is_attributes.*, 
  is_descriptions.*, 
  TRIM(
    CONCAT(
      is_descriptions.prefix, is_descriptions.text, 
      is_descriptions.suffix
    )
  ) AS value 
FROM 
  cscart_ab__is_attributes 
  LEFT JOIN cscart_ab__is_attribute_descriptions as is_descriptions ON cscart_ab__is_attributes.is_id = is_descriptions.is_id 
  AND lang_code = 'ru' 
WHERE 
  `object_type` IN ('C', 'P', 'F') 
  AND `storefront_id` = 1

Query time 0.00067

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "table": {
          "table_name": "cscart_ab__is_attributes",
          "access_type": "ref",
          "possible_keys": ["storefront_id"],
          "key": "storefront_id",
          "key_length": "4",
          "used_key_parts": ["storefront_id"],
          "ref": ["const"],
          "rows": 9,
          "filtered": 100,
          "attached_condition": "cscart_ab__is_attributes.object_type in ('C','P','F')",
          "using_index": true
        }
      },
      {
        "table": {
          "table_name": "is_descriptions",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["is_id", "lang_code"],
          "ref": ["lillyshop_lillyshop.cscart_ab__is_attributes.is_id", "const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(is_descriptions.lang_code = 'ru')"
        }
      }
    ]
  }
}

Result

is_id storefront_id attribute_type object_type lang_code prefix text suffix value
4 1 A C ru [text] [text]
6 1 A F ru [text] [text]
2 1 A P ru [text][image_num] [text][image_num]
8 1 N C ru [text] [text]
9 1 N F ru [text] [text]
1 1 N P ru , изображение [n] , изображение [n]
5 1 T C ru [text] [text]
7 1 T F ru [text] [text]
3 1 T P ru [text][image_num] [text][image_num]