Skip to content

Datepicker: Added Myanmar (Burmese) localisation #1913

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Datepicker: Added Myanmar (Burmese) localisation
Datepicker: [Reformat Style] Added Myanmar (Burmese) localisation

Datepicker: [Reformat Style] Added Myanmar (Burmese) localisation
  • Loading branch information
kthiha-dev committed May 9, 2020
commit cd135d3a1f835fd3a21e26bd9d6ef344f6a8e6be
52 changes: 52 additions & 0 deletions ui/i18n/datepicker-mm.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/* ဗမာ/မြန်မာ/Myanmar/Burmese initialisation for the jQuery UI date picker plugin. */
/* Written by Kevin Kyaw -- kthiha3@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.mm = {
closeText: "ပိတ်ပါ",
prevText: "နောက်သို့",
nextText: "ရှေ့သို့",
currentText: "ယနေ့",
monthNames: [ "ဇန်နဝါရီလ","ဖေဖော်ဝါရီလ","မတ်လ","ဧပြီလ","မေလ","ဇွန်လ",
"ဇူလိုင်လ","သြဂုတ်လ","စက်တင်ဘာလ","အောက်တိုဘာလ","နိုဝင်ဘာလ","ဒီဇင်ဘာလ" ],
monthNamesShort: [ "ဇန်","ဖေ","မတ်","ပြီ","မေ","ဇွန်",
"ဇူ","ဂုတ်","စက်","အောက်","နို","ဒီ" ],
dayNames: [
"တနင်္ဂနွေနေ့",
"တနင်္လာနေ့",
"အင်္ဂါနေ့",
"ဗုဒ္ဓဟူးနေ့",
"ကြာသပတေးနေ့",
"သောကြာနေ့",
"စနေနေ့"
],
dayNamesShort: [
"တနင်္ဂနွေ",
"တနင်္လာ",
"အင်္ဂါ",
"ဗုဒ္ဓဟူး",
"ကြာသပတေး",
"သောကြာ",
"စနေ"
],
dayNamesMin: [ "နွေ","လာ","ဂါ","ဟူး","ကြာ","သော","နေ" ],
weekHeader: "အပတ်",
dateFormat: "dd/mm/yy",
firstDay: 1,
isRTL: false,
showMonthAfterYear: false,
yearSuffix: "" };
datepicker.setDefaults( datepicker.regional.mm );

return datepicker.regional.mm;
} ) );