Create datepicker-ma.js

Myanmar translation for bootstrap datepicker
This commit is contained in:
Thura Aung 2018-04-17 13:51:50 +09:00 committed by GitHub
parent 74f8a0ac95
commit 020b1c6d77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

37
ui/i18n/datepicker-ma.js Normal file
View File

@ -0,0 +1,37 @@
/* Myanmar initialisation for the jQuery UI date picker plugin. */
/* Written by Thura Aung (thura.ucsy@gmail.com). */
( function( factory ) {
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
define( [ "../widgets/datepicker" ], factory );
} else {
// Browser globals
factory( jQuery.datepicker );
}
}( function( datepicker ) {
datepicker.regional.ja = {
closeText: "ပိတ်ပါ",
prevText: "<အရှေ့",
nextText: "အနောက်>",
currentText: "ယခုလ",
monthNames: [ "1လပိုင်း","2လပိုင်း","3လပိုင်း","4လပိုင်း","5လပိုင်း","6လပိုင်း",
"7လပိုင်း","8လပိုင်း","9လပိုင်း","10လပိုင်း","11လပိုင်း","12လပိုင်း" ],
monthNamesShort: [ "1လပိုင်း","2လပိုင်း","3လပိုင်း","4လပိုင်း","5လပိုင်း","6လပိုင်း",
"7လပိုင်း","8လပိုင်း","9လပိုင်း","10လပိုင်း","11လပိုင်း","12လပိုင်း" ],
dayNames: [ "တနင်္ဂနွေ","တနင်္လာ","အင်္ဂါ","ဗုဒ္ဓဟူး","ကြာသပတေး","သောကြာ","စနေ" ],
dayNamesShort: [ "နွေ","လာ","ဂါ","ဟူး","တေး","ကြာ","နေ" ],
dayNamesShort: [ "နွေ","လာ","ဂါ","ဟူး","တေး","ကြာ","နေ" ],
weekHeader: "အပတ်",
dateFormat: "dd/mm/yy",
firstDay: 0,
isRTL: false,
showMonthAfterYear: true,
yearSuffix: "နှစ်" };
datepicker.setDefaults( datepicker.regional.ma );
return datepicker.regional.ma;
} ) );