forked from ant-design/ant-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added bn_BD locale for Bangla language (ant-design#265)
* added bn_BD for bangla language * short
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import type { Locale } from '../interface'; | ||
|
||
const locale: Locale = { | ||
locale: 'bn_BD', | ||
today: 'আজ', | ||
now: 'এখন', | ||
backToToday: 'আজকে ফিরে চলুন', | ||
ok: 'ওকে', | ||
clear: 'পরিস্কার', | ||
month: 'মাস', | ||
year: 'বছর', | ||
timeSelect: 'সময় নির্বাচন', | ||
dateSelect: 'তারিখ নির্বাচন', | ||
weekSelect: 'সপ্তাহ পছন্দ করুন', | ||
monthSelect: 'মাস পছন্দ করুন', | ||
yearSelect: 'বছর পছন্দ করুন', | ||
decadeSelect: 'একটি দশক পছন্দ করুন', | ||
yearFormat: 'YYYY', | ||
dateFormat: 'M/D/YYYY', | ||
dayFormat: 'D', | ||
dateTimeFormat: 'D/M/YYYY HH:mm:ss', | ||
monthBeforeYear: true, | ||
previousMonth: 'গত মাস (PageUp)', | ||
nextMonth: 'আগামী মাস (PageDown)', | ||
previousYear: 'গত বছর (Control + left)', | ||
nextYear: 'আগামী বছর (Control + right)', | ||
previousDecade: 'গত দশক', | ||
nextDecade: 'পরের দশক', | ||
previousCentury: 'গত শতাব্দী', | ||
nextCentury: 'পরের শতাব্দী', | ||
}; | ||
|
||
export default locale; |