SELECT 
  a.code, 
  b.country 
FROM 
  cscart_countries as a 
  LEFT JOIN cscart_country_descriptions as b ON b.code = a.code 
  AND b.lang_code = 'ru' 
WHERE 
  a.status = 'A' 
ORDER BY 
  b.country

Query time 0.00102

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "30.60"
    },
    "ordering_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "9.00"
      },
      "nested_loop": [
        {
          "table": {
            "table_name": "a",
            "access_type": "ref",
            "possible_keys": [
              "status"
            ],
            "key": "status",
            "used_key_parts": [
              "status"
            ],
            "key_length": "3",
            "ref": [
              "const"
            ],
            "rows_examined_per_scan": 9,
            "rows_produced_per_join": 9,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "9.00",
              "eval_cost": "1.80",
              "prefix_cost": "10.80",
              "data_read_per_join": "432"
            },
            "used_columns": [
              "code",
              "status"
            ]
          }
        },
        {
          "table": {
            "table_name": "b",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "code",
              "lang_code"
            ],
            "key_length": "12",
            "ref": [
              "db_emaika1.a.code",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 9,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "9.00",
              "eval_cost": "1.80",
              "prefix_cost": "21.60",
              "data_read_per_join": "3K"
            },
            "used_columns": [
              "code",
              "lang_code",
              "country"
            ]
          }
        }
      ]
    }
  }
}

Result

code country
AZ Азербайджан
AM Армения
BY Беларусь
GE Грузия
KZ Казахстан
KG Киргизия
MD Молдова
AB Республика Абхазия
OS Республика Южная Осетия
RU Россия
TJ Таджикистан
TM Туркменистан
UA Украина