SELECT 
  a.code, 
  b.state 
FROM 
  cscart_states as a 
  LEFT JOIN cscart_state_descriptions as b ON b.state_id = a.state_id 
  AND b.lang_code = 'en' 
WHERE 
  a.country_code = 'AU' 
ORDER BY 
  b.state

Query time 0.00069

JSON explain

{
  "query_block": {
    "select_id": 1,
    "filesort": {
      "temporary_table": {
        "function": "buffer",
        "table": {
          "table_name": "a",
          "access_type": "ref",
          "possible_keys": ["cs", "country_code"],
          "key": "cs",
          "key_length": "8",
          "used_key_parts": ["country_code"],
          "ref": ["const"],
          "rows": 7,
          "filtered": 100,
          "index_condition": "(a.country_code = 'AU')"
        },
        "table": {
          "table_name": "b",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["state_id", "lang_code"],
          "ref": ["egkcysbp_cscartn.a.state_id", "const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond((b.lang_code = 'en'))"
        }
      }
    }
  }
}

Result

code state
ACT Australian Capital Territory
NSW New South Wales
NT Northern Territory
QLD Queensland
SA South Australia
TAS Tasmania
VIC Victoria
WA Western Australia