Skip to content

Commit

Permalink
Add UZ locale (#1648)
Browse files Browse the repository at this point in the history
Co-authored-by: Muhammad ali <mukhammad@appliedlabs.io>
  • Loading branch information
Mukhammadali and mukhammadali7 committed Mar 13, 2020
1 parent d76defe commit a26dffb
Show file tree
Hide file tree
Showing 7 changed files with 791 additions and 0 deletions.
91 changes: 91 additions & 0 deletions src/locale/uz/_lib/formatDistance/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
var formatDistanceLocale = {
lessThanXSeconds: {
one: 'sekunddan kam',
other: '{{count}} sekunddan kam'
},

xSeconds: {
one: '1 sekund',
other: '{{count}} sekund'
},

halfAMinute: 'yarim minut',

lessThanXMinutes: {
one: 'bir minutdan kam',
other: '{{count}} minutdan kam'
},

xMinutes: {
one: '1 minut',
other: '{{count}} minut'
},

aboutXHours: {
one: 'tahminan 1 soat',
other: 'tahminan {{count}} soat'
},

xHours: {
one: '1 soat',
other: '{{count}} soat'
},

xDays: {
one: '1 kun',
other: '{{count}} kun'
},

aboutXMonths: {
one: 'tahminan 1 oy',
other: 'tahminan {{count}} oy'
},

xMonths: {
one: '1 oy',
other: '{{count}} oy'
},

aboutXYears: {
one: 'tahminan 1 yil',
other: 'tahminan {{count}} yil'
},

xYears: {
one: '1 yil',
other: '{{count}} yil'
},

overXYears: {
one: "1 yildan ko'p",
other: "{{count}} yildan ko'p"
},

almostXYears: {
one: 'deyarli 1 yil',
other: 'deyarli {{count}} yil'
}
}

export default function formatDistance(token, count, options) {
options = options || {}

var result
if (typeof formatDistanceLocale[token] === 'string') {
result = formatDistanceLocale[token]
} else if (count === 1) {
result = formatDistanceLocale[token].one
} else {
result = formatDistanceLocale[token].other.replace('{{count}}', count)
}

if (options.addSuffix) {
if (options.comparison > 0) {
return result + ' dan keyin'
} else {
return result + ' oldin'
}
}

return result
}
38 changes: 38 additions & 0 deletions src/locale/uz/_lib/formatLong/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import buildFormatLongFn from '../../../_lib/buildFormatLongFn/index.js'

var dateFormats = {
full: 'EEEE, do MMMM, y',
long: 'do MMMM, y',
medium: 'd MMM, y',
short: 'dd/MM/yyyy'
}

var timeFormats = {
full: 'h:mm:ss zzzz',
long: 'h:mm:ss z',
medium: 'h:mm:ss',
short: 'h:mm'
}

var dateTimeFormats = {
any: '{{date}}, {{time}}'
}

var formatLong = {
date: buildFormatLongFn({
formats: dateFormats,
defaultWidth: 'full'
}),

time: buildFormatLongFn({
formats: timeFormats,
defaultWidth: 'full'
}),

dateTime: buildFormatLongFn({
formats: dateTimeFormats,
defaultWidth: 'any'
})
}

export default formatLong
12 changes: 12 additions & 0 deletions src/locale/uz/_lib/formatRelative/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
var formatRelativeLocale = {
lastWeek: "'oldingi' eeee p 'da'",
yesterday: "'kecha' p 'da'",
today: "'bugun' p 'da'",
tomorrow: "'ertaga' p 'da'",
nextWeek: "eeee p 'da'",
other: 'P'
}

export default function formatRelative(token, _date, _baseDate, _options) {
return formatRelativeLocale[token]
}
181 changes: 181 additions & 0 deletions src/locale/uz/_lib/localize/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,181 @@
import buildLocalizeFn from '../../../_lib/buildLocalizeFn/index.js'

var eraValues = {
narrow: ['M.A', 'M.'],
abbreviated: ['M.A', 'M.'],
wide: ['Miloddan Avvalgi', 'Milodiy']
}

var quarterValues = {
narrow: ['1', '2', '3', '4'],
abbreviated: ['CH.1', 'CH.2', 'CH.3', 'CH.4'],
wide: ['1-chi chorak', '2-chi chorak', '3-chi chorak', '4-chi chorak']
}

// Note: in English, the names of days of the week and months are capitalized.
// If you are making a new locale based on this one, check if the same is true for the language you're working on.
// Generally, formatted dates should look like they are in the middle of a sentence,
// e.g. in Spanish language the weekdays and months should be in the lowercase.
var monthValues = {
narrow: ['Y', 'F', 'M', 'A', 'M', 'I', 'I', 'A', 'S', 'O', 'N', 'D'],
abbreviated: [
'Yan',
'Fev',
'Mar',
'Apr',
'May',
'Iyun',
'Iyul',
'Avg',
'Sen',
'Okt',
'Noy',
'Dek'
],
wide: [
'Yanvar',
'Fevral',
'Mart',
'Aprel',
'May',
'Iyun',
'Iyul',
'Avgust',
'Sentabr',
'Oktabr',
'Noyabr',
'Dekabr'
]
}

var dayValues = {
narrow: ['Y', 'D', 'S', 'CH', 'P', 'J', 'SH'],
short: ['Ya', 'Du', 'Se', 'Cho', 'Pa', 'Ju', 'Sha'],
abbreviated: ['Yak', 'Dush', 'Sesh', 'Chor', 'Pay', 'Jum', 'Shan'],
wide: [
'Yakshanba',
'Dushanba',
'Seshanba',
'Chorshanba',
'Payshanba',
'Juma',
'Shanba'
]
}

var dayPeriodValues = {
narrow: {
am: 'a',
pm: 'p',
midnight: 'y.t',
noon: 'p.',
morning: 'ertalab',
afternoon: 'tushdan keyin',
evening: 'kechqurun',
night: 'tun'
},
abbreviated: {
am: 'AM',
pm: 'PM',
midnight: 'yarim tun',
noon: 'peshin',
morning: 'ertalab',
afternoon: 'tushdan keyin',
evening: 'kechqurun',
night: 'tun'
},
wide: {
am: 'a.m.',
pm: 'p.m.',
midnight: 'yarim tun',
noon: 'peshin',
morning: 'ertalab',
afternoon: 'tushdan keyin',
evening: 'kechqurun',
night: 'tun'
}
}
var formattingDayPeriodValues = {
narrow: {
am: 'a',
pm: 'p',
midnight: 'y.t',
noon: 'p.',
morning: 'ertalab',
afternoon: 'tushdan keyin',
evening: 'kechqurun',
night: 'tun'
},
abbreviated: {
am: 'AM',
pm: 'PM',
midnight: 'yarim tun',
noon: 'peshin',
morning: 'ertalab',
afternoon: 'tushdan keyin',
evening: 'kechqurun',
night: 'tun'
},
wide: {
am: 'a.m.',
pm: 'p.m.',
midnight: 'yarim tun',
noon: 'peshin',
morning: 'ertalab',
afternoon: 'tushdan keyin',
evening: 'kechqurun',
night: 'tun'
}
}

function ordinalNumber(dirtyNumber, _dirtyOptions) {
var number = Number(dirtyNumber)

// If ordinal numbers depend on context, for example,
// if they are different for different grammatical genders,
// use `options.unit`:
//
// var options = dirtyOptions || {}
// var unit = String(options.unit)
//
// where `unit` can be 'year', 'quarter', 'month', 'week', 'date', 'dayOfYear',
// 'day', 'hour', 'minute', 'second'

return number
}

var localize = {
ordinalNumber: ordinalNumber,

era: buildLocalizeFn({
values: eraValues,
defaultWidth: 'wide'
}),

quarter: buildLocalizeFn({
values: quarterValues,
defaultWidth: 'wide',
argumentCallback: function(quarter) {
return Number(quarter) - 1
}
}),

month: buildLocalizeFn({
values: monthValues,
defaultWidth: 'wide'
}),

day: buildLocalizeFn({
values: dayValues,
defaultWidth: 'wide'
}),

dayPeriod: buildLocalizeFn({
values: dayPeriodValues,
defaultWidth: 'wide',
formattingValues: formattingDayPeriodValues,
defaultFormattingWidth: 'wide'
})
}

export default localize

0 comments on commit a26dffb

Please sign in to comment.