Tamil Month Dates and Tamil Calendar React Native

42 Views Asked by At

I want to display react native calendar along with Tamil month date . is there any possible way to achieve it in react native for android and iOS

I tried React native calendar and added Tamil translated months and week but I couldn't get Tamil month date to display with normal calendar

1

There are 1 best solutions below

1
Pawan Kumar Kushwaha On

Try like this may help you.

Refer react-native-calendars official documentation.

import {LocaleConfig} from 'react-native-calendars';

LocaleConfig.locales['fr'] = {
  monthNames: [
    'Janvier',
    'Février',
    'Mars',
    'Avril',
    'Mai',
    'Juin',
    'Juillet',
    'Août',
    'Septembre',
    'Octobre',
    'Novembre',
    'Décembre'
  ],
  monthNamesShort: ['Janv.', 'Févr.', 'Mars', 'Avril', 'Mai', 'Juin', 'Juil.', 'Août', 'Sept.', 'Oct.', 'Nov.', 'Déc.'],
  dayNames: ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'],
  dayNamesShort: ['Dim.', 'Lun.', 'Mar.', 'Mer.', 'Jeu.', 'Ven.', 'Sam.'],
  today: "Aujourd'hui"
};
LocaleConfig.defaultLocale = 'fr';