Skip to content

Commit

Permalink
Running the suggested scripts to fix CI errors for arabic support
Browse files Browse the repository at this point in the history
  • Loading branch information
Raju Kumar authored and Raju Kumar committed Dec 2, 2024
1 parent 37ada8e commit 7415f73
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions packages/x-date-pickers/src/locales/ar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { PickersLocaleText } from './utils/pickersLocaleTextApi';
import { getPickersLocalization } from './utils/getPickersLocalization';
import { TimeViewWithMeridiem } from '../internals/models';

//maps TimeView to its translation
// maps TimeView to its translation
const views: Record<TimeViewWithMeridiem, string> = {
hours: 'ساعات',
minutes: 'دقائق',
Expand All @@ -11,43 +11,41 @@ const views: Record<TimeViewWithMeridiem, string> = {
};

const arPickers: Partial<PickersLocaleText> = {
//Calender navigation
// Calendar navigation
previousMonth: 'الشهر السابق',
nextMonth: 'الشهر المقبل',

//View navigation
// View navigation
openPreviousView: 'افتح العرض السابق',
openNextView: 'افتح العرض التالي',
calendarViewSwitchingButtonAriaLabel: (view) =>
view === 'year'
? 'عرض السنة مفتوح، قم بالتبديل إلى عرض التقويم'
: 'عرض التقويم مفتوح، قم بالتبديل إلى عرض السنة',

//DateRange labels
// DateRange labels
start: 'يبدأ',
end: 'نهاية',
startDate: 'تاريخ البدء',
startTime: 'وقت البدء',
endDate: 'تاريخ الانتهاء',
endTime: 'وقت الانتهاء',

//Action bar
// Action bar
cancelButtonLabel: 'يلغي',
clearButtonLabel: 'واضح',
okButtonLabel: 'نعم',
todayButtonLabel: 'اليوم',

//Toolbar titles
// Toolbar titles
datePickerToolbarTitle: 'اختر التاريخ',
dateTimePickerToolbarTitle: 'حدد التاريخ والوقت',
timePickerToolbarTitle: 'حدد الوقت',
dateRangePickerToolbarTitle: 'حدد النطاق الزمني',

//Clock labels
// Clock labels
clockLabelText: (view, formattedTime) =>
`يختار ${views[view]}. ${
!formattedTime ? 'لم يتم تحديد الوقت' : `الوقت المختار هو ${formattedTime}`
}`,
`يختار ${views[view]}. ${!formattedTime ? 'لم يتم تحديد الوقت' : `الوقت المختار هو ${formattedTime}`}`,
hoursClockNumberText: (hours) => `${hours} ساعات`,
minutesClockNumberText: (minutes) => `${minutes} دقائق`,
secondsClockNumberText: (seconds) => `${seconds} ثواني`,
Expand All @@ -66,7 +64,6 @@ const arPickers: Partial<PickersLocaleText> = {
formattedDate ? `اختر التاريخ، التاريخ المحدد هو ${formattedDate}` : 'اختر التاريخ',
openTimePickerDialogue: (formattedTime) =>
formattedTime ? `اختر الوقت، الوقت المحدد هو ${formattedTime}` : 'اختر الوقت',

fieldClearLabel: 'واضح',

// Table labels
Expand Down

0 comments on commit 7415f73

Please sign in to comment.