/* * World Calendars * https://github.com/alexcjohnson/world-calendars * * Batch-converted from kbwood/calendars * Many thanks to Keith Wood and all of the contributors to the original project! * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /* http://keith-wood.name/calendars.html Vietnamese localisation for Gregorian/Julian calendars for jQuery. Translated by Le Thanh Huy (lthanhhuy@cit.ctu.edu.vn). */ var main = require('../main'); var _gregorian = main.calendars.gregorian; var _julian = main.calendars.julian; _gregorian.prototype.regionalOptions['vi'] = { name: 'Gregorian', epochs: ['BCE', 'CE'], 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: ['Tháng 1', 'Tháng 2', 'Tháng 3', 'Tháng 4', 'Tháng 5', 'Tháng 6', 'Tháng 7', 'Tháng 8', 'Tháng 9', 'Tháng 10', 'Tháng 11', 'Tháng 12'], dayNames: ['Chủ Nhật', 'Thứ Hai', 'Thứ Ba', 'Thứ Tư', 'Thứ Năm', 'Thứ Sáu', 'Thứ Bảy'], dayNamesShort: ['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'], dayNamesMin: ['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'], digits: null, dateFormat: 'dd/mm/yyyy', firstDay: 0, isRTL: false }; if (_julian) { _julian.prototype.regionalOptions['vi'] = _gregorian.prototype.regionalOptions['vi']; }