From 44b0936ad709212b63e48672d8b9c225e2c3b830 Mon Sep 17 00:00:00 2001 From: Mads Balslev Date: Tue, 23 Apr 2024 19:29:33 +0200 Subject: [PATCH 1/5] fix: Update 'da' locale to match correct first week of year (#2592) The first week of the year in Denmark is always the week containing January 4th --- src/locale/da.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/locale/da.js b/src/locale/da.js index 0b5709f0e..536081ad9 100644 --- a/src/locale/da.js +++ b/src/locale/da.js @@ -9,6 +9,7 @@ const locale = { months: 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split('_'), monthsShort: 'jan._feb._mar._apr._maj_juni_juli_aug._sept._okt._nov._dec.'.split('_'), weekStart: 1, + yearStart: 4, ordinal: n => `${n}.`, formats: { LT: 'HH:mm', From 030958251d02e66a91fd97ae8cdb6010fea60eb5 Mon Sep 17 00:00:00 2001 From: hugo-syn <61210734+hugo-syn@users.noreply.github.com> Date: Tue, 23 Apr 2024 19:31:00 +0200 Subject: [PATCH 2/5] chore: add french README.md (#2547) --- docs/fr/README-fr.md | 163 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 163 insertions(+) create mode 100644 docs/fr/README-fr.md diff --git a/docs/fr/README-fr.md b/docs/fr/README-fr.md new file mode 100644 index 000000000..ad4155838 --- /dev/null +++ b/docs/fr/README-fr.md @@ -0,0 +1,163 @@ +Français | [English](../../README.md) | [简体中文](./docs/zh-cn/README.zh-CN.md) | [日本語](./docs/ja/README-ja.md) | [Português Brasileiro](./docs/pt-br/README-pt-br.md) | [한국어](./docs/ko/README-ko.md) | [Español (España)](./docs/es-es/README-es-es.md) | [Русский](./docs/ru/README-ru.md) | [Türkçe](./docs/tr/README-tr.md) | [සිංහල](./docs/si/README-si.md) | [עברית](./docs/he/README-he.md) + +

Day.js

+

Alternative rapide de 2kB à Moment.js avec la même API moderne

+

+ Gzip Size + NPM Version + Build Status + Codecov + License +
+ + Sauce Test Status + +

+ +> Day.js est une bibliothèque JavaScript minimaliste qui analyse, valide, manipule et affiche les dates et heures pour les navigateurs modernes avec une API largement compatible avec Moment.js. Si vous utilisez Moment.js, vous savez déjà comment utiliser Day.js. + +```js +dayjs().startOf('month').add(1, 'day').set('year', 2018).format('YYYY-MM-DD HH:mm:ss'); +``` + +* 🕒 Familiarité avec l'API et les modèles Moment.js +* 💪 Immuable +* 🔥 Enchaînable +* 🌐 Support I18n +* 📦 Petite bibliothèque de 2kb +* 👫 Tous les navigateurs sont pris en charge + +--- + +## Mise en place + +### Documentation + +Vous trouverez plus de détails sur l'API et les autres documents sur le site [day.js.org](https://day.js.org/). + +### Installation + +```console +npm install dayjs --save +``` + +📚[Guide d'installation](https://day.js.org/docs/en/installation/installation) + +### API + +Il est facile d'utiliser les API de Day.js pour analyser, valider, manipuler et afficher des dates et des heures. + +```javascript +dayjs('2018-08-08') // parse + +dayjs().format('{YYYY} MM-DDTHH:mm:ss SSS [Z] A') // display + +dayjs().set('month', 3).month() // get & set + +dayjs().add(1, 'year') // manipulate + +dayjs().isBefore(dayjs()) // query +``` + +📚[API Reference](https://day.js.org/docs/en/parse/parse) + +### I18n + +Day.js offre une excellente prise en charge de l'internationalisation. + +Mais aucun d'entre eu ne sera inclus dans votre construction si vous ne l'utilisez pas. + +```javascript +import 'dayjs/locale/es' // load on demand + +dayjs.locale('es') // use Spanish locale globally + +dayjs('2018-05-05').locale('zh-cn').format() // use Chinese Simplified locale in a specific instance +``` + +📚[Internationalisation](https://day.js.org/docs/en/i18n/i18n) + +### Plugin + +Un plugin est un module indépendant qui peut être ajouté à Day.js pour en étendre les fonctionnalités ou en ajouter de nuovelles. + +```javascript +import advancedFormat from 'dayjs/plugin/advancedFormat' // load on demand + +dayjs.extend(advancedFormat) // use plugin + +dayjs().format('Q Do k kk X x') // more available formats +``` + +📚[Liste des plugins](https://day.js.org/docs/en/plugin/plugin) + +### Tendance d'utilisation + + + + + +## Sponsors + +Soutenez ce projet en devenant sponsor. Votre logo apparaîtra ici avec un lien vers votre site web. + +[[Devenir sponsor via Github](https://github.com/sponsors/iamkun/)] [[Devenir sponsor via OpenCollective](https://opencollective.com/dayjs#sponsor)] + + + + +         + + + +         + + + +         + + + +         + + + +         + + + +         + + + +         + +         + + +## Contributeurs + +Ce projet existe grâce à toutes les personnes qui y contribuent. + +Donnez-nous une 💖 étoile 💖 pour nous soutenir. Nous vous remercions. + +Et merci à tous nos donateurs ! 🙏 + + + + + +
+ + +## Licence + +Day.js est sous licence [MIT License](./LICENSE). From f68d73efe562fdedd9e288ecb0ce6565e602f507 Mon Sep 17 00:00:00 2001 From: Charlie Levine <52892481+charliejlevine@users.noreply.github.com> Date: Sat, 27 Apr 2024 10:33:47 -0700 Subject: [PATCH 3/5] fix: day of week type literal (#2630) --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 766bd7943..cd159dcae 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -114,7 +114,7 @@ declare namespace dayjs { * ``` * Docs: https://day.js.org/docs/en/get-set/day */ - day(): number + day(): 0 | 1 | 2 | 3 | 4 | 5 | 6 /** * Set the day of the week. * From 7b8881e9973197e31b7f753d9887688380f4eb18 Mon Sep 17 00:00:00 2001 From: iamkun Date: Sun, 28 Apr 2024 22:20:09 +0800 Subject: [PATCH 4/5] chore: update ci --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 34cbdac9b..4f1bc2441 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,4 +47,6 @@ jobs: npm install -g @semantic-release/changelog @semantic-release/git semantic-release GITHUB_REF=${{ env.GITHUB_TRIGGER_REF }} semantic-release echo release success + - name: Notify + run: | curl -s ${{ secrets.GITEE_SYNC_URL }} From 39a9410fa1a9e6c9b60f43a52d363129a7af34da Mon Sep 17 00:00:00 2001 From: iamkun Date: Sun, 28 Apr 2024 23:39:58 +0800 Subject: [PATCH 5/5] chore: update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b2fa9a37..b50a700cb 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ English | [简体中文](./docs/zh-cn/README.zh-CN.md) | [日本語](./docs/ja/R

Fast 2kB alternative to Moment.js with the same modern API

Gzip Size NPM Version