How to change Datepicker to chinese

How to change Datepicker to chinese

How can I change the datepicker to chinese in my following coding? 


<input type="text" name="my_value" id="datepicker1" />
<link rel="stylesheet" href="jquery/jquery-ui.css">
<script src="jquery/jquery.js"></script>
<script src="jquery/jquery-ui.js"></script>
<script src="i18n/datepicker-zh-TW.js"></script>
<script>
$( function() {
      $( "#datepicker1" ).datepicker({
         dateFormat: "yy/mm/dd",
      }
      );
 } );
</script>