-
-
Save WeiChiaChang/c684e6b0dbdbd4653a0be108e63ccd88 to your computer and use it in GitHub Desktop.
Vietnamese localization for the jQuery UI date picker plugin. Tested with jQuery UI 1.10.2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Vietnamese localization for the jQuery UI date picker plugin. */ | |
/* Written by Tien Do ([email protected]) */ | |
jQuery(function ($) | |
{ | |
$.datepicker.regional["vi-VN"] = | |
{ | |
closeText: "Đóng", | |
prevText: "Trước", | |
nextText: "Sau", | |
currentText: "Hôm nay", | |
monthNames: ["Tháng một", "Tháng hai", "Tháng ba", "Tháng tư", "Tháng năm", "Tháng sáu", "Tháng bảy", "Tháng tám", "Tháng chín", "Tháng mười", "Tháng mười một", "Tháng mười hai"], | |
monthNamesShort: ["Một", "Hai", "Ba", "Bốn", "Năm", "Sáu", "Bảy", "Tám", "Chín", "Mười", "Mười một", "Mười hai"], | |
dayNames: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy"], | |
dayNamesShort: ["CN", "Hai", "Ba", "Tư", "Năm", "Sáu", "Bảy"], | |
dayNamesMin: ["CN", "T2", "T3", "T4", "T5", "T6", "T7"], | |
weekHeader: "Tuần", | |
dateFormat: "dd/mm/yy", | |
firstDay: 1, | |
isRTL: false, | |
showMonthAfterYear: false, | |
yearSuffix: "" | |
}; | |
$.datepicker.setDefaults($.datepicker.regional["vi-VN"]); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment