[feat]: i18n contribution to include mention of dayjsLocales (#2444)

* [feat]: update i18n contribution docs

* [feat]: include `dayjsLocale` reference in README.md

* Revert "[feat]: include `dayjsLocale` reference in README.md"

This reverts commit b599558b29.

* chore: fix locales/readme conflict
This commit is contained in:
Zakher Masri 2024-05-03 04:53:21 +03:00 committed by GitHub
parent 82bc958119
commit e83e84e278
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,6 +16,18 @@ export const LANGUAGE_OPTIONS = [
// The rest of the languages
];
```
Finally, add the new language code to the `dayjsLocales` object in `interface/locales/index.ts`. list of dayjs locales can be found [here](https://cdn.jsdelivr.net/npm/dayjs@1/locale.json)
```ts
const dayjsLocales: Record<string, any> = {
// Add the new language code and import statement here
// Example:
// es: () => import('dayjs/locale/es.js'),
en: () => import('dayjs/locale/en.js'),
de: () => import('dayjs/locale/de.js'),
// The rest of the languages
};
```
## Syncing locales