-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Ukrainian localization * Fix Ukrainian localization
- Loading branch information
1 parent
25fb008
commit 0d4b93c
Showing
1 changed file
with
45 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,45 @@ | ||
const name = 'uk'; | ||
|
||
const localization = { | ||
today: 'Сьогодні', | ||
clear: 'Очистити', | ||
close: 'Закрити', | ||
selectMonth: 'Обрати місяць', | ||
previousMonth: 'Попередній місяць', | ||
nextMonth: 'У наступному місяці', | ||
selectYear: 'Обрати рік', | ||
previousYear: 'Попередній рік', | ||
nextYear: 'У наступному році', | ||
selectDecade: 'Обрати десятиліття', | ||
previousDecade: 'Попереднє десятиліття', | ||
nextDecade: 'Наступне десятиліття', | ||
previousCentury: 'Попереднє століття', | ||
nextCentury: 'Наступне століття', | ||
pickHour: 'Оберіть годину', | ||
incrementHour: 'Час збільшення', | ||
decrementHour: 'Зменшити годину', | ||
pickMinute: 'Обрати хвилину', | ||
incrementMinute: 'Хвилина приросту', | ||
decrementMinute: 'Зменшити хвилину', | ||
pickSecond: 'Обрати другий', | ||
incrementSecond: 'Збільшення секунди', | ||
decrementSecond: 'Зменшення секунди', | ||
toggleMeridiem: 'Переключити період', | ||
selectTime: 'Обрати час', | ||
selectDate: 'Обрати дату', | ||
dayViewHeaderFormat: {month: 'long', year: 'numeric'}, | ||
locale: 'uk', | ||
startOfTheWeek: 1, | ||
dateFormats: { | ||
LT: 'H:mm', | ||
LTS: 'H:mm:ss', | ||
L: 'dd.MM.yyyy', | ||
LL: 'd MMMM yyyy р.', | ||
LLL: 'd MMMM yyyy р., H:mm', | ||
LLLL: 'dddd, d MMMM yyyy р., H:mm', | ||
}, | ||
ordinal: (n) => n, | ||
format: 'L LT', | ||
}; | ||
|
||
export {localization, name}; |