SELECT 
  lang.name, 
  lang.value 
FROM 
  cscart_language_values lang 
WHERE 
  lang.lang_code = 'en' 
  AND lang.name IN (
    'continue', 'select', 'select_country', 
    'select_state', 'submit', 'continue', 
    'select', 'select_country', 'select_state', 
    'submit'
  )

Query time 0.00099

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "7.01"
    },
    "table": {
      "table_name": "lang",
      "access_type": "range",
      "possible_keys": [
        "PRIMARY"
      ],
      "key": "PRIMARY",
      "used_key_parts": [
        "lang_code",
        "name"
      ],
      "key_length": "392",
      "rows_examined_per_scan": 5,
      "rows_produced_per_join": 5,
      "filtered": "100.00",
      "cost_info": {
        "read_cost": "6.01",
        "eval_cost": "1.00",
        "prefix_cost": "7.01",
        "data_read_per_join": "1K"
      },
      "used_columns": [
        "lang_code",
        "name",
        "value"
      ],
      "attached_condition": "((`webmarco`.`lang`.`lang_code` = 'en') and (`webmarco`.`lang`.`name` in ('continue','select','select_country','select_state','submit','continue','select','select_country','select_state','submit')))"
    }
  }
}

Result

name value
continue Continue
select Select
select_country Country
select_state State / Region
submit Submit