Skip to content

Commit

Permalink
chore: update lint
Browse files Browse the repository at this point in the history
  • Loading branch information
iamkun committed Apr 14, 2022
1 parent c0c84a5 commit 0b14801
Showing 1 changed file with 16 additions and 21 deletions.
37 changes: 16 additions & 21 deletions src/locale/bn-bd.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,10 @@ const numberMap = {

const locale = {
name: 'bn-bd',
weekdays: 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split(
'_'
),
months: 'জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split(
'_'
),
weekdays: 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split('_'),
months: 'জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split('_'),
weekdaysShort: 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি'.split('_'),
monthsShort: 'জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে'.split(
'_'
),
monthsShort: 'জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে'.split('_'),
weekdaysMin: 'রবি_সোম_মঙ্গ_বুধ_বৃহঃ_শুক্র_শনি'.split('_'),
weekStart: 0,
preparse(string) {
Expand All @@ -47,7 +41,7 @@ const locale = {
postformat(string) {
return string.replace(/\d/g, match => symbolMap[match])
},
ordinal: n => {
ordinal: (n) => {
const s = ['ই', 'লা', 'রা', 'ঠা', 'শে']
const v = n % 100
return `[${n}${s[(v - 20) % 10] || s[v] || s[0]}]`
Expand All @@ -61,19 +55,20 @@ const locale = {
LLLL: 'dddd, D MMMM YYYY খ্রিস্টাব্দ, A h:mm সময়'
},
meridiem: hour =>
hour < 4
/* eslint-disable no-nested-ternary */
(hour < 4
? 'রাত'
: hour < 6
? 'ভোর'
: hour < 12
? 'সকাল'
: hour < 15
? 'দুপুর'
: hour < 18
? 'বিকাল'
: hour < 20
? 'সন্ধ্যা'
: 'রাত',
? 'ভোর'
: hour < 12
? 'সকাল'
: hour < 15
? 'দুপুর'
: hour < 18
? 'বিকাল'
: hour < 20
? 'সন্ধ্যা'
: 'রাত'),
relativeTime: {
future: '%s পরে',
past: '%s আগে',
Expand Down

0 comments on commit 0b14801

Please sign in to comment.