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 = 'US' 
ORDER BY 
  b.state

Query time 0.00083

JSON explain

{
  "query_block": {
    "select_id": 1,
    "filesort": {
      "sort_key": "b.state",
      "temporary_table": {
        "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": 53,
          "filtered": 100,
          "index_condition": "a.country_code = 'US'"
        },
        "table": {
          "table_name": "b",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["state_id", "lang_code"],
          "ref": ["herbaria_cscart_4_18.a.state_id", "const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(b.lang_code = 'en')"
        }
      }
    }
  }
}

Result

code state
AK AK
AL AL
AA APO AA
AE APO AE
AP APO AP
AR AR
AZ AZ
CA CA
CO CO
CT CT
DC DC
DE DE
FL FL
GA GA
GU GU
HI HI
IA IA
ID ID
IL IL
IN IN
KS KS
KY KY
LA LA
MA MA
MD MD
ME ME
MI MI
MN MN
MO MO
MS MS
MT MT
NC NC
ND ND
NE NE
NH NH
NJ NJ
NM NM
NV NV
NY NY
OH OH
OK OK
OR OR
PA PA
PR PR
RI RI
SC SC
SD SD
TN TN
TX TX
UT UT
VA VA
VI VI
VT VT
WA WA
WI WI
WV WV
WY WY