SELECT 
  COUNT(*) 
FROM 
  cscart_ab__sfb_authors authors 
  LEFT JOIN cscart_ab__sfb_author_descriptions author_descriptions ON authors.author_id = author_descriptions.author_id 
  AND author_descriptions.lang_code = 'en' 
WHERE 
  1 
  AND authors.author_id = 1 
  AND authors.status = 'A'

Query time 0.00021

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "1.00"
    },
    "nested_loop": [
      {
        "table": {
          "table_name": "authors",
          "access_type": "const",
          "possible_keys": [
            "PRIMARY"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "author_id"
          ],
          "key_length": "8",
          "ref": [
            "const"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 1,
          "filtered": "100.00",
          "cost_info": {
            "read_cost": "0.00",
            "eval_cost": "0.10",
            "prefix_cost": "0.00",
            "data_read_per_join": "24"
          },
          "used_columns": [
            "author_id",
            "status"
          ]
        }
      },
      {
        "table": {
          "table_name": "author_descriptions",
          "access_type": "const",
          "possible_keys": [
            "PRIMARY"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "author_id",
            "lang_code"
          ],
          "key_length": "14",
          "ref": [
            "const",
            "const"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 1,
          "filtered": "100.00",
          "using_index": true,
          "cost_info": {
            "read_cost": "0.00",
            "eval_cost": "0.10",
            "prefix_cost": "0.00",
            "data_read_per_join": "4K"
          },
          "used_columns": [
            "author_id",
            "lang_code"
          ]
        }
      }
    ]
  }
}

Result

COUNT(*)
1