Skip to content

datepicker-bn.js for bengali language #1910

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 4 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
added dot notation instead of brackets
  • Loading branch information
Fathma authored Feb 13, 2020
commit e1e73cb6197bd0ade2324e1c823286221ac4feb3
6 changes: 3 additions & 3 deletions ui/i18n/datepicker-bn.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
}( function( datepicker ) {

datepicker.regional[ "bn" ] = {
datepicker.regional.bn = {
closeText: "সমাপ্ত",
prevText: "পূর্ববর্তী",
nextText: "পরবর্তী",
Expand All @@ -30,8 +30,8 @@ datepicker.regional[ "bn" ] = {
isRTL: false,
showMonthAfterYear: false,
yearSuffix: "" };
datepicker.setDefaults( datepicker.regional[ "bn" ] );
datepicker.setDefaults( datepicker.regional.bn );

return datepicker.regional[ "bn" ];
return datepicker.regional.bn;

} ) );