fix: add missed translation in uk_UA (#50178)

* Update uk_UA.ts

Signed-off-by: Andrii Milishchuk <andrewmilishchuk@gmail.com>

* Update index.test.tsx.snap

Signed-off-by: lijianan <574980606@qq.com>

---------

Signed-off-by: Andrii Milishchuk <andrewmilishchuk@gmail.com>
Signed-off-by: lijianan <574980606@qq.com>
Co-authored-by: lijianan <574980606@qq.com>
This commit is contained in:
Andrii Milishchuk 2024-08-03 07:35:05 +03:00 committed by GitHub
parent 9484dd3d1e
commit 4b09f30e8e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 373162 additions and 373141 deletions

View File

@ -7,15 +7,35 @@ import type { PickerLocale } from '../generatePicker';
const locale: PickerLocale = {
lang: {
placeholder: 'Оберіть дату',
yearPlaceholder: 'Оберіть рік',
quarterPlaceholder: 'Оберіть квартал',
monthPlaceholder: 'Оберіть місяць',
weekPlaceholder: 'Оберіть тиждень',
rangePlaceholder: ['Початкова дата', 'Кінцева дата'],
rangeYearPlaceholder: ['Початковий рік', 'Кінцевий рік'],
rangeMonthPlaceholder: ['Початковий місяць', 'Кінцевий місяць'],
rangeWeekPlaceholder: ['Початковий тиждень', 'Кінцевий тиждень'],
shortWeekDays: ['Нд', 'Пн', 'Вт', 'Ср', 'Чт', 'Пт', 'Сб'],
shortMonths: [
'Січ',
'Лют',
'Бер',
'Кві',
'Тра',
'Чер',
'Лип',
'Сер',
'Вер',
'Жов',
'Лис',
'Гру',
],
...CalendarLocale,
},
timePickerLocale: {
...TimePickerLocale,
},
};
// All settings at:
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
export default locale;

View File

@ -336349,7 +336349,7 @@ exports[`Locale Provider should display the text as uk 1`] = `
tabindex="-1"
type="button"
>
вер
Вер
</button>
<button
aria-label="year panel"
@ -336390,25 +336390,25 @@ exports[`Locale Provider should display the text as uk 1`] = `
<thead>
<tr>
<th>
пн
Пн
</th>
<th>
вт
Вт
</th>
<th>
ср
Ср
</th>
<th>
чт
Чт
</th>
<th>
пт
Пт
</th>
<th>
сб
Сб
</th>
<th>
нд
Нд
</th>
</tr>
</thead>
@ -338574,7 +338574,7 @@ exports[`Locale Provider should display the text as uk 1`] = `
tabindex="-1"
type="button"
>
вер
Вер
</button>
<button
aria-label="year panel"
@ -338617,25 +338617,25 @@ exports[`Locale Provider should display the text as uk 1`] = `
<thead>
<tr>
<th>
пн
Пн
</th>
<th>
вт
Вт
</th>
<th>
ср
Ср
</th>
<th>
чт
Чт
</th>
<th>
пт
Пт
</th>
<th>
сб
Сб
</th>
<th>
нд
Нд
</th>
</tr>
</thead>
@ -339118,7 +339118,7 @@ exports[`Locale Provider should display the text as uk 1`] = `
tabindex="-1"
type="button"
>
жовт
Жов
</button>
<button
aria-label="year panel"
@ -339159,25 +339159,25 @@ exports[`Locale Provider should display the text as uk 1`] = `
<thead>
<tr>
<th>
пн
Пн
</th>
<th>
вт
Вт
</th>
<th>
ср
Ср
</th>
<th>
чт
Чт
</th>
<th>
пт
Пт
</th>
<th>
сб
Сб
</th>
<th>
нд
Нд
</th>
</tr>
</thead>
@ -340222,9 +340222,9 @@ exports[`Locale Provider should display the text as uk 1`] = `
</span>
<span
class="ant-select-selection-item"
title="вер"
title="Вер"
>
вер
Вер
</span>
</div>
<span
@ -340314,25 +340314,25 @@ exports[`Locale Provider should display the text as uk 1`] = `
<thead>
<tr>
<th>
пн
Пн
</th>
<th>
вт
Вт
</th>
<th>
ср
Ср
</th>
<th>
чт
Чт
</th>
<th>
пт
Пт
</th>
<th>
сб
Сб
</th>
<th>
нд
Нд
</th>
</tr>
</thead>

View File

@ -6,7 +6,7 @@ import Calendar from '../calendar/locale/uk_UA';
import DatePicker from '../date-picker/locale/uk_UA';
import TimePicker from '../time-picker/locale/uk_UA';
const typeTemplate = '${label} не є типом ${type}';
const typeTemplate: string = '${label} не є типом ${type}';
const localeValues: Locale = {
locale: 'uk',

View File

@ -2,6 +2,7 @@ import type { TimePickerLocale } from '../index';
const locale: TimePickerLocale = {
placeholder: 'Оберіть час',
rangePlaceholder: ['Початковий час', 'Кінцевий час'],
};
export default locale;