1
0
Fork 0
react-playground/node_modules/@mui/x-date-pickers/locales/kzKZ.js
Techognito fc0f69dacb Added Statistics calculation
Statistics now show calculated values
2025-09-04 17:30:00 +02:00

88 lines
No EOL
3.7 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.kzKZ = void 0;
var _getPickersLocalization = require("./utils/getPickersLocalization");
// Translation map for Clock Label
const timeViews = {
hours: 'Сағатты',
minutes: 'Минутты',
seconds: 'Секундты',
meridiem: 'Меридием'
};
const kzKZPickers = {
// Calendar navigation
previousMonth: 'Алдыңғы ай',
nextMonth: 'Келесі ай',
// View navigation
openPreviousView: 'Алдыңғы көріністі ашу',
openNextView: 'Келесі көріністі ашу',
calendarViewSwitchingButtonAriaLabel: view => view === 'year' ? 'жылдық көріністі ашу, күнтізбе көрінісіне ауысу' : 'күнтізбе көрінісін ашу, жылдық көрінісіне ауысу',
// DateRange labels
start: 'Бастау',
end: 'Cоңы',
// startDate: 'Start date',
// startTime: 'Start time',
// endDate: 'End date',
// endTime: 'End time',
// Action bar
cancelButtonLabel: 'Бас тарту',
clearButtonLabel: 'Тазарту',
okButtonLabel: 'Ок',
todayButtonLabel: 'Бүгін',
nextStepButtonLabel: 'Келесі',
// Toolbar titles
datePickerToolbarTitle: 'Күнді таңдау',
dateTimePickerToolbarTitle: 'Күн мен уақытты таңдау',
timePickerToolbarTitle: 'Уақытты таңдау',
dateRangePickerToolbarTitle: 'Кезеңді таңдаңыз',
// timeRangePickerToolbarTitle: 'Select time range',
// Clock labels
clockLabelText: (view, formattedTime) => `${timeViews[view]} таңдау. ${!formattedTime ? 'Уақыт таңдалмаған' : `Таңдалған уақыт ${formattedTime}`}`,
hoursClockNumberText: hours => `${hours} сағат`,
minutesClockNumberText: minutes => `${minutes} минут`,
secondsClockNumberText: seconds => `${seconds} секунд`,
// Digital clock labels
selectViewText: view => `${timeViews[view]} таңдау`,
// Calendar labels
calendarWeekNumberHeaderLabel: 'Апта нөмірі',
calendarWeekNumberHeaderText: '№',
calendarWeekNumberAriaLabelText: weekNumber => `Апта ${weekNumber}`,
calendarWeekNumberText: weekNumber => `${weekNumber}`,
// Open Picker labels
openDatePickerDialogue: formattedDate => formattedDate ? `Күнді таңдаңыз, таңдалған күн ${formattedDate}` : 'Күнді таңдаңыз',
openTimePickerDialogue: formattedTime => formattedTime ? `Уақытты таңдаңыз, таңдалған уақыт ${formattedTime}` : 'Уақытты таңдаңыз',
// openRangePickerDialogue: formattedRange => formattedRange ? `Choose range, selected range is ${formattedRange}` : 'Choose range',
// fieldClearLabel: 'Clear',
// Table labels
timeTableLabel: 'уақытты таңдау',
dateTableLabel: 'күнді таңдау',
// Field section placeholders
fieldYearPlaceholder: params => 'Ж'.repeat(params.digitAmount),
fieldMonthPlaceholder: params => params.contentType === 'letter' ? 'AAAA' : 'AA',
fieldDayPlaceholder: () => 'КК',
// fieldWeekDayPlaceholder: params => params.contentType === 'letter' ? 'EEEE' : 'EE',
fieldHoursPlaceholder: () => 'сс',
fieldMinutesPlaceholder: () => 'мм',
fieldSecondsPlaceholder: () => 'сс',
fieldMeridiemPlaceholder: () => '(т|к)'
// View names
// year: 'Year',
// month: 'Month',
// day: 'Day',
// weekDay: 'Week day',
// hours: 'Hours',
// minutes: 'Minutes',
// seconds: 'Seconds',
// meridiem: 'Meridiem',
// Common
// empty: 'Empty',
};
const kzKZ = exports.kzKZ = (0, _getPickersLocalization.getPickersLocalization)(kzKZPickers);