From 50d35e60f1c93859edab183890a5a2f1a80879f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski-Owczarek?= Date: Wed, 22 Jun 2022 12:58:05 +0200 Subject: [PATCH 01/17] Build: Update Grunt to resolve CVE-2022-1537 More details: https://github.com/advisories/GHSA-rm36-94g8-835r Fixes gh-2090 Closes gh-2091 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index db614202463..348712a5a38 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ "commitplease": "3.2.0", "eslint-config-jquery": "3.0.0", "glob": "7.2.0", - "grunt": "1.4.1", + "grunt": "1.5.3", "grunt-bowercopy": "1.2.5", "grunt-cli": "1.4.3", "grunt-compare-size": "0.4.2", From d66fdd5c9a1afac13138c7f48b068c36236b9358 Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Wed, 29 Jun 2022 22:14:31 +0900 Subject: [PATCH 02/17] Build: Add dependabot.yml config (GitHub Actions) Closes gh-2093 Ref jquery/jquery#5057 --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000000..6fff16c7942 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: monthly From a4060a2b8321a439888141536cd1cce3d50b9fc9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Jul 2022 12:17:01 +0200 Subject: [PATCH 03/17] Build(deps): Bump actions/setup-node from 1 to 3 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 1 to 3. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v1...v3) Closes gh-2096 --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ac542249b51..2dd6aba3d89 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} From d55645c0c4249b6096e94987fea15ce6070276a1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Jul 2022 12:17:24 +0200 Subject: [PATCH 04/17] Build(deps): Bump actions/cache from 2 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v2...v3) Closes gh-2097 --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2dd6aba3d89..226e68e2a47 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: echo "::set-output name=dir::$(npm config get cache)" - name: Cache npm dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.npm-cache-dir.outputs.dir }} key: ${{ runner.os }}-node-${{ matrix.node-version }}-npm-${{ hashFiles('**/package.json') }} From e853971b0ab8c0cd459152135e2f9b5137273571 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Jul 2022 12:22:26 +0200 Subject: [PATCH 05/17] Build(deps): Bump actions/checkout from 2 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) Closes gh-2098 --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 226e68e2a47..a513e67538f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: node-version: [12.x, 14.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: From 3126e128691fd9fa78f33930ba9cb37609d0a64f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Lid=C3=A9n=20H=C3=A4llgren?= Date: Fri, 11 Feb 2022 16:33:27 +0100 Subject: [PATCH 06/17] Datepicker: Remove symbols in localization Fixes gh-2048 Closes gh-2050 Ref gh-2067 --- ui/i18n/datepicker-ar-DZ.js | 4 ++-- ui/i18n/datepicker-ar.js | 4 ++-- ui/i18n/datepicker-az.js | 4 ++-- ui/i18n/datepicker-be.js | 4 ++-- ui/i18n/datepicker-bg.js | 4 ++-- ui/i18n/datepicker-bs.js | 4 ++-- ui/i18n/datepicker-cs.js | 4 ++-- ui/i18n/datepicker-da.js | 4 ++-- ui/i18n/datepicker-de-AT.js | 4 ++-- ui/i18n/datepicker-de.js | 4 ++-- ui/i18n/datepicker-eo.js | 4 ++-- ui/i18n/datepicker-es.js | 4 ++-- ui/i18n/datepicker-eu.js | 4 ++-- ui/i18n/datepicker-fa.js | 4 ++-- ui/i18n/datepicker-fo.js | 4 ++-- ui/i18n/datepicker-fr-CH.js | 4 ++-- ui/i18n/datepicker-gl.js | 4 ++-- ui/i18n/datepicker-he.js | 4 ++-- ui/i18n/datepicker-hr.js | 4 ++-- ui/i18n/datepicker-hy.js | 4 ++-- ui/i18n/datepicker-id.js | 4 ++-- ui/i18n/datepicker-is.js | 4 ++-- ui/i18n/datepicker-it-CH.js | 4 ++-- ui/i18n/datepicker-it.js | 4 ++-- ui/i18n/datepicker-ja.js | 4 ++-- ui/i18n/datepicker-ka.js | 4 ++-- ui/i18n/datepicker-kk.js | 4 ++-- ui/i18n/datepicker-ky.js | 4 ++-- ui/i18n/datepicker-lt.js | 4 ++-- ui/i18n/datepicker-mk.js | 4 ++-- ui/i18n/datepicker-ms.js | 4 ++-- ui/i18n/datepicker-nb.js | 4 ++-- ui/i18n/datepicker-nn.js | 4 ++-- ui/i18n/datepicker-no.js | 4 ++-- ui/i18n/datepicker-pl.js | 4 ++-- ui/i18n/datepicker-pt-BR.js | 4 ++-- ui/i18n/datepicker-rm.js | 4 ++-- ui/i18n/datepicker-ro.js | 4 ++-- ui/i18n/datepicker-ru.js | 4 ++-- ui/i18n/datepicker-sk.js | 4 ++-- ui/i18n/datepicker-sl.js | 4 ++-- ui/i18n/datepicker-sq.js | 4 ++-- ui/i18n/datepicker-sr-SR.js | 4 ++-- ui/i18n/datepicker-sr.js | 4 ++-- ui/i18n/datepicker-sv.js | 4 ++-- ui/i18n/datepicker-th.js | 4 ++-- ui/i18n/datepicker-tj.js | 4 ++-- ui/i18n/datepicker-tr.js | 4 ++-- ui/i18n/datepicker-uk.js | 4 ++-- ui/i18n/datepicker-vi.js | 4 ++-- ui/i18n/datepicker-zh-CN.js | 4 ++-- ui/i18n/datepicker-zh-HK.js | 4 ++-- ui/i18n/datepicker-zh-TW.js | 4 ++-- 53 files changed, 106 insertions(+), 106 deletions(-) diff --git a/ui/i18n/datepicker-ar-DZ.js b/ui/i18n/datepicker-ar-DZ.js index 8dc805986f2..2bcdf478456 100644 --- a/ui/i18n/datepicker-ar-DZ.js +++ b/ui/i18n/datepicker-ar-DZ.js @@ -20,8 +20,8 @@ datepicker.regional[ "ar-DZ" ] = { closeText: "إغلاق", - prevText: "<السابق", - nextText: "التالي>", + prevText: "السابق", + nextText: "التالي", currentText: "اليوم", monthNames: [ "جانفي", "فيفري", "مارس", "أفريل", "ماي", "جوان", "جويلية", "أوت", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" ], diff --git a/ui/i18n/datepicker-ar.js b/ui/i18n/datepicker-ar.js index 31d7ee565ed..07768416e30 100644 --- a/ui/i18n/datepicker-ar.js +++ b/ui/i18n/datepicker-ar.js @@ -20,8 +20,8 @@ datepicker.regional.ar = { closeText: "إغلاق", - prevText: "<السابق", - nextText: "التالي>", + prevText: "السابق", + nextText: "التالي", currentText: "اليوم", monthNames: [ "يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" ], diff --git a/ui/i18n/datepicker-az.js b/ui/i18n/datepicker-az.js index d02d3561f6f..8d59547e6e9 100644 --- a/ui/i18n/datepicker-az.js +++ b/ui/i18n/datepicker-az.js @@ -17,8 +17,8 @@ datepicker.regional.az = { closeText: "Bağla", - prevText: "<Geri", - nextText: "İrəli>", + prevText: "Geri", + nextText: "İrəli", currentText: "Bugün", monthNames: [ "Yanvar", "Fevral", "Mart", "Aprel", "May", "İyun", "İyul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr" ], diff --git a/ui/i18n/datepicker-be.js b/ui/i18n/datepicker-be.js index 51ddd6e5722..125ed0f1355 100644 --- a/ui/i18n/datepicker-be.js +++ b/ui/i18n/datepicker-be.js @@ -17,8 +17,8 @@ datepicker.regional.be = { closeText: "Зачыніць", - prevText: "←Папяр.", - nextText: "Наст.→", + prevText: "Папяр.", + nextText: "Наст.", currentText: "Сёньня", monthNames: [ "Студзень", "Люты", "Сакавік", "Красавік", "Травень", "Чэрвень", "Ліпень", "Жнівень", "Верасень", "Кастрычнік", "Лістапад", "Сьнежань" ], diff --git a/ui/i18n/datepicker-bg.js b/ui/i18n/datepicker-bg.js index 0344de4fb0b..c771b3b5210 100644 --- a/ui/i18n/datepicker-bg.js +++ b/ui/i18n/datepicker-bg.js @@ -17,8 +17,8 @@ datepicker.regional.bg = { closeText: "затвори", - prevText: "<назад", - nextText: "напред>", + prevText: "назад", + nextText: "напред", nextBigText: ">>", currentText: "днес", monthNames: [ "Януари", "Февруари", "Март", "Април", "Май", "Юни", diff --git a/ui/i18n/datepicker-bs.js b/ui/i18n/datepicker-bs.js index a5c145affc0..b39a9a75b1b 100644 --- a/ui/i18n/datepicker-bs.js +++ b/ui/i18n/datepicker-bs.js @@ -17,8 +17,8 @@ datepicker.regional.bs = { closeText: "Zatvori", - prevText: "<", - nextText: ">", + prevText: "", + nextText: "", currentText: "Danas", monthNames: [ "Januar", "Februar", "Mart", "April", "Maj", "Juni", "Juli", "August", "Septembar", "Oktobar", "Novembar", "Decembar" ], diff --git a/ui/i18n/datepicker-cs.js b/ui/i18n/datepicker-cs.js index 201fac7b81f..6e5552c6ce7 100644 --- a/ui/i18n/datepicker-cs.js +++ b/ui/i18n/datepicker-cs.js @@ -17,8 +17,8 @@ datepicker.regional.cs = { closeText: "Zavřít", - prevText: "<Dříve", - nextText: "Později>", + prevText: "Dříve", + nextText: "Později", currentText: "Nyní", monthNames: [ "leden", "únor", "březen", "duben", "květen", "červen", "červenec", "srpen", "září", "říjen", "listopad", "prosinec" ], diff --git a/ui/i18n/datepicker-da.js b/ui/i18n/datepicker-da.js index 90409c06efd..d2de7550d29 100644 --- a/ui/i18n/datepicker-da.js +++ b/ui/i18n/datepicker-da.js @@ -17,8 +17,8 @@ datepicker.regional.da = { closeText: "Luk", - prevText: "<Forrige", - nextText: "Næste>", + prevText: "Forrige", + nextText: "Næste", currentText: "I dag", monthNames: [ "Januar", "Februar", "Marts", "April", "Maj", "Juni", "Juli", "August", "September", "Oktober", "November", "December" ], diff --git a/ui/i18n/datepicker-de-AT.js b/ui/i18n/datepicker-de-AT.js index 814e74f3eac..4a8b7811ac9 100644 --- a/ui/i18n/datepicker-de-AT.js +++ b/ui/i18n/datepicker-de-AT.js @@ -18,8 +18,8 @@ datepicker.regional[ "de-AT" ] = { closeText: "Schließen", - prevText: "<Zurück", - nextText: "Vor>", + prevText: "Zurück", + nextText: "Vor", currentText: "Heute", monthNames: [ "Jänner", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember" ], diff --git a/ui/i18n/datepicker-de.js b/ui/i18n/datepicker-de.js index 5baf6d1486f..8a08ebf3382 100644 --- a/ui/i18n/datepicker-de.js +++ b/ui/i18n/datepicker-de.js @@ -17,8 +17,8 @@ datepicker.regional.de = { closeText: "Schließen", - prevText: "<Zurück", - nextText: "Vor>", + prevText: "Zurück", + nextText: "Vor", currentText: "Heute", monthNames: [ "Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember" ], diff --git a/ui/i18n/datepicker-eo.js b/ui/i18n/datepicker-eo.js index 3867a6214f6..08aa96e7684 100644 --- a/ui/i18n/datepicker-eo.js +++ b/ui/i18n/datepicker-eo.js @@ -17,8 +17,8 @@ datepicker.regional.eo = { closeText: "Fermi", - prevText: "<Anta", - nextText: "Sekv>", + prevText: "Anta", + nextText: "Sekv", currentText: "Nuna", monthNames: [ "Januaro", "Februaro", "Marto", "Aprilo", "Majo", "Junio", "Julio", "Aŭgusto", "Septembro", "Oktobro", "Novembro", "Decembro" ], diff --git a/ui/i18n/datepicker-es.js b/ui/i18n/datepicker-es.js index 9a7457778c4..dbb1f0aa528 100644 --- a/ui/i18n/datepicker-es.js +++ b/ui/i18n/datepicker-es.js @@ -17,8 +17,8 @@ datepicker.regional.es = { closeText: "Cerrar", - prevText: "<Ant", - nextText: "Sig>", + prevText: "Ant", + nextText: "Sig", currentText: "Hoy", monthNames: [ "enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre" ], diff --git a/ui/i18n/datepicker-eu.js b/ui/i18n/datepicker-eu.js index 754a172df5a..0de057c5a45 100644 --- a/ui/i18n/datepicker-eu.js +++ b/ui/i18n/datepicker-eu.js @@ -16,8 +16,8 @@ datepicker.regional.eu = { closeText: "Egina", - prevText: "<Aur", - nextText: "Hur>", + prevText: "Aur", + nextText: "Hur", currentText: "Gaur", monthNames: [ "urtarrila", "otsaila", "martxoa", "apirila", "maiatza", "ekaina", "uztaila", "abuztua", "iraila", "urria", "azaroa", "abendua" ], diff --git a/ui/i18n/datepicker-fa.js b/ui/i18n/datepicker-fa.js index 193a3dcc1ed..ac30752b80f 100644 --- a/ui/i18n/datepicker-fa.js +++ b/ui/i18n/datepicker-fa.js @@ -18,8 +18,8 @@ datepicker.regional.fa = { closeText: "بستن", - prevText: "<قبلی", - nextText: "بعدی>", + prevText: "قبلی", + nextText: "بعدی", currentText: "امروز", monthNames: [ "ژانویه", diff --git a/ui/i18n/datepicker-fo.js b/ui/i18n/datepicker-fo.js index f024ac67425..d2ec9d7c486 100644 --- a/ui/i18n/datepicker-fo.js +++ b/ui/i18n/datepicker-fo.js @@ -17,8 +17,8 @@ datepicker.regional.fo = { closeText: "Lat aftur", - prevText: "<Fyrra", - nextText: "Næsta>", + prevText: "Fyrra", + nextText: "Næsta", currentText: "Í dag", monthNames: [ "Januar", "Februar", "Mars", "Apríl", "Mei", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember" ], diff --git a/ui/i18n/datepicker-fr-CH.js b/ui/i18n/datepicker-fr-CH.js index b75c683379a..7221d14ed1b 100644 --- a/ui/i18n/datepicker-fr-CH.js +++ b/ui/i18n/datepicker-fr-CH.js @@ -17,8 +17,8 @@ datepicker.regional[ "fr-CH" ] = { closeText: "Fermer", - prevText: "<Préc", - nextText: "Suiv>", + prevText: "Préc", + nextText: "Suiv", currentText: "Courant", monthNames: [ "janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre" ], diff --git a/ui/i18n/datepicker-gl.js b/ui/i18n/datepicker-gl.js index f3ebc46651e..27abb0214f1 100644 --- a/ui/i18n/datepicker-gl.js +++ b/ui/i18n/datepicker-gl.js @@ -17,8 +17,8 @@ datepicker.regional.gl = { closeText: "Pechar", - prevText: "<Ant", - nextText: "Seg>", + prevText: "Ant", + nextText: "Seg", currentText: "Hoxe", monthNames: [ "Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro" ], diff --git a/ui/i18n/datepicker-he.js b/ui/i18n/datepicker-he.js index c487e78f70b..fbe3c40cd93 100644 --- a/ui/i18n/datepicker-he.js +++ b/ui/i18n/datepicker-he.js @@ -17,8 +17,8 @@ datepicker.regional.he = { closeText: "סגור", - prevText: "<הקודם", - nextText: "הבא>", + prevText: "הקודם", + nextText: "הבא", currentText: "היום", monthNames: [ "ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר" ], diff --git a/ui/i18n/datepicker-hr.js b/ui/i18n/datepicker-hr.js index 23ea41446ed..6542e2f81d2 100644 --- a/ui/i18n/datepicker-hr.js +++ b/ui/i18n/datepicker-hr.js @@ -17,8 +17,8 @@ datepicker.regional.hr = { closeText: "Zatvori", - prevText: "<", - nextText: ">", + prevText: "", + nextText: "", currentText: "Danas", monthNames: [ "Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac" ], diff --git a/ui/i18n/datepicker-hy.js b/ui/i18n/datepicker-hy.js index 2cc74da734c..7d4da5abf56 100644 --- a/ui/i18n/datepicker-hy.js +++ b/ui/i18n/datepicker-hy.js @@ -17,8 +17,8 @@ datepicker.regional.hy = { closeText: "Փակել", - prevText: "<Նախ.", - nextText: "Հաջ.>", + prevText: "Նախ.", + nextText: "Հաջ.", currentText: "Այսօր", monthNames: [ "Հունվար", "Փետրվար", "Մարտ", "Ապրիլ", "Մայիս", "Հունիս", "Հուլիս", "Օգոստոս", "Սեպտեմբեր", "Հոկտեմբեր", "Նոյեմբեր", "Դեկտեմբեր" ], diff --git a/ui/i18n/datepicker-id.js b/ui/i18n/datepicker-id.js index 52f709caa5b..1ae3472a4b4 100644 --- a/ui/i18n/datepicker-id.js +++ b/ui/i18n/datepicker-id.js @@ -17,8 +17,8 @@ datepicker.regional.id = { closeText: "Tutup", - prevText: "<mundur", - nextText: "maju>", + prevText: "mundur", + nextText: "maju", currentText: "hari ini", monthNames: [ "Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "Nopember", "Desember" ], diff --git a/ui/i18n/datepicker-is.js b/ui/i18n/datepicker-is.js index 0ebffd35541..122ece02c12 100644 --- a/ui/i18n/datepicker-is.js +++ b/ui/i18n/datepicker-is.js @@ -17,8 +17,8 @@ datepicker.regional.is = { closeText: "Loka", - prevText: "< Fyrri", - nextText: "Næsti >", + prevText: " Fyrri", + nextText: "Næsti ", currentText: "Í dag", monthNames: [ "Janúar", "Febrúar", "Mars", "Apríl", "Maí", "Júní", "Júlí", "Ágúst", "September", "Október", "Nóvember", "Desember" ], diff --git a/ui/i18n/datepicker-it-CH.js b/ui/i18n/datepicker-it-CH.js index 8c6d1058010..73b791894b2 100644 --- a/ui/i18n/datepicker-it-CH.js +++ b/ui/i18n/datepicker-it-CH.js @@ -17,8 +17,8 @@ datepicker.regional[ "it-CH" ] = { closeText: "Chiudi", - prevText: "<Prec", - nextText: "Succ>", + prevText: "Prec", + nextText: "Succ", currentText: "Oggi", monthNames: [ "Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre" ], diff --git a/ui/i18n/datepicker-it.js b/ui/i18n/datepicker-it.js index 0210e41c49c..d1d498057d2 100644 --- a/ui/i18n/datepicker-it.js +++ b/ui/i18n/datepicker-it.js @@ -17,8 +17,8 @@ datepicker.regional.it = { closeText: "Chiudi", - prevText: "<Prec", - nextText: "Succ>", + prevText: "Prec", + nextText: "Succ", currentText: "Oggi", monthNames: [ "Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre" ], diff --git a/ui/i18n/datepicker-ja.js b/ui/i18n/datepicker-ja.js index 404bbfd64b6..95fa6fdbc45 100644 --- a/ui/i18n/datepicker-ja.js +++ b/ui/i18n/datepicker-ja.js @@ -17,8 +17,8 @@ datepicker.regional.ja = { closeText: "閉じる", - prevText: "<前", - nextText: "次>", + prevText: "前", + nextText: "次", currentText: "今日", monthNames: [ "1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月" ], diff --git a/ui/i18n/datepicker-ka.js b/ui/i18n/datepicker-ka.js index fd740dadea7..33ae7a46131 100644 --- a/ui/i18n/datepicker-ka.js +++ b/ui/i18n/datepicker-ka.js @@ -17,8 +17,8 @@ datepicker.regional.ka = { closeText: "დახურვა", - prevText: "< წინა", - nextText: "შემდეგი >", + prevText: " წინა", + nextText: "შემდეგი ", currentText: "დღეს", monthNames: [ "იანვარი", diff --git a/ui/i18n/datepicker-kk.js b/ui/i18n/datepicker-kk.js index c40391d11a6..20a8486179d 100644 --- a/ui/i18n/datepicker-kk.js +++ b/ui/i18n/datepicker-kk.js @@ -17,8 +17,8 @@ datepicker.regional.kk = { closeText: "Жабу", - prevText: "<Алдыңғы", - nextText: "Келесі>", + prevText: "Алдыңғы", + nextText: "Келесі", currentText: "Бүгін", monthNames: [ "Қаңтар", "Ақпан", "Наурыз", "Сәуір", "Мамыр", "Маусым", "Шілде", "Тамыз", "Қыркүйек", "Қазан", "Қараша", "Желтоқсан" ], diff --git a/ui/i18n/datepicker-ky.js b/ui/i18n/datepicker-ky.js index e74c9274040..05dc5dd16fc 100644 --- a/ui/i18n/datepicker-ky.js +++ b/ui/i18n/datepicker-ky.js @@ -17,8 +17,8 @@ datepicker.regional.ky = { closeText: "Жабуу", - prevText: "<Мур", - nextText: "Кий>", + prevText: "Мур", + nextText: "Кий", currentText: "Бүгүн", monthNames: [ "Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь" ], diff --git a/ui/i18n/datepicker-lt.js b/ui/i18n/datepicker-lt.js index 279af0cf7a9..5f45734be65 100644 --- a/ui/i18n/datepicker-lt.js +++ b/ui/i18n/datepicker-lt.js @@ -17,8 +17,8 @@ datepicker.regional.lt = { closeText: "Uždaryti", - prevText: "<Atgal", - nextText: "Pirmyn>", + prevText: "Atgal", + nextText: "Pirmyn", currentText: "Šiandien", monthNames: [ "Sausis", "Vasaris", "Kovas", "Balandis", "Gegužė", "Birželis", "Liepa", "Rugpjūtis", "Rugsėjis", "Spalis", "Lapkritis", "Gruodis" ], diff --git a/ui/i18n/datepicker-mk.js b/ui/i18n/datepicker-mk.js index f7999baec8c..6672b01c829 100644 --- a/ui/i18n/datepicker-mk.js +++ b/ui/i18n/datepicker-mk.js @@ -17,8 +17,8 @@ datepicker.regional.mk = { closeText: "Затвори", - prevText: "<", - nextText: ">", + prevText: "", + nextText: "", currentText: "Денес", monthNames: [ "Јануари", "Февруари", "Март", "Април", "Мај", "Јуни", "Јули", "Август", "Септември", "Октомври", "Ноември", "Декември" ], diff --git a/ui/i18n/datepicker-ms.js b/ui/i18n/datepicker-ms.js index 344b7683e96..4170519bacb 100644 --- a/ui/i18n/datepicker-ms.js +++ b/ui/i18n/datepicker-ms.js @@ -17,8 +17,8 @@ datepicker.regional.ms = { closeText: "Tutup", - prevText: "<Sebelum", - nextText: "Selepas>", + prevText: "Sebelum", + nextText: "Selepas", currentText: "hari ini", monthNames: [ "Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember" ], diff --git a/ui/i18n/datepicker-nb.js b/ui/i18n/datepicker-nb.js index b4fd237b91d..19bb0bc2544 100644 --- a/ui/i18n/datepicker-nb.js +++ b/ui/i18n/datepicker-nb.js @@ -17,8 +17,8 @@ datepicker.regional.nb = { closeText: "Lukk", - prevText: "«Forrige", - nextText: "Neste»", + prevText: "Forrige", + nextText: "Neste", currentText: "I dag", monthNames: [ "januar", diff --git a/ui/i18n/datepicker-nn.js b/ui/i18n/datepicker-nn.js index 967351c95bc..5eccb4a8ad8 100644 --- a/ui/i18n/datepicker-nn.js +++ b/ui/i18n/datepicker-nn.js @@ -17,8 +17,8 @@ datepicker.regional.nn = { closeText: "Lukk", - prevText: "«Førre", - nextText: "Neste»", + prevText: "Førre", + nextText: "Neste", currentText: "I dag", monthNames: [ "januar", diff --git a/ui/i18n/datepicker-no.js b/ui/i18n/datepicker-no.js index 4b1b54fa276..becc8bfce62 100644 --- a/ui/i18n/datepicker-no.js +++ b/ui/i18n/datepicker-no.js @@ -18,8 +18,8 @@ datepicker.regional.no = { closeText: "Lukk", - prevText: "«Forrige", - nextText: "Neste»", + prevText: "Forrige", + nextText: "Neste", currentText: "I dag", monthNames: [ "januar", diff --git a/ui/i18n/datepicker-pl.js b/ui/i18n/datepicker-pl.js index 60f9fbb2d4b..4d31086a564 100644 --- a/ui/i18n/datepicker-pl.js +++ b/ui/i18n/datepicker-pl.js @@ -17,8 +17,8 @@ datepicker.regional.pl = { closeText: "Zamknij", - prevText: "<Poprzedni", - nextText: "Następny>", + prevText: "Poprzedni", + nextText: "Następny", currentText: "Dziś", monthNames: [ "Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień" ], diff --git a/ui/i18n/datepicker-pt-BR.js b/ui/i18n/datepicker-pt-BR.js index 1c84bf34daf..3c3984f936d 100644 --- a/ui/i18n/datepicker-pt-BR.js +++ b/ui/i18n/datepicker-pt-BR.js @@ -17,8 +17,8 @@ datepicker.regional[ "pt-BR" ] = { closeText: "Fechar", - prevText: "<Anterior", - nextText: "Próximo>", + prevText: "Anterior", + nextText: "Próximo", currentText: "Hoje", monthNames: [ "Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro" ], diff --git a/ui/i18n/datepicker-rm.js b/ui/i18n/datepicker-rm.js index 439e8c8e113..4f150c5e63c 100644 --- a/ui/i18n/datepicker-rm.js +++ b/ui/i18n/datepicker-rm.js @@ -17,8 +17,8 @@ datepicker.regional.rm = { closeText: "Serrar", - prevText: "<Suandant", - nextText: "Precedent>", + prevText: "Suandant", + nextText: "Precedent", currentText: "Actual", monthNames: [ "Schaner", diff --git a/ui/i18n/datepicker-ro.js b/ui/i18n/datepicker-ro.js index f03ee15c45a..1ad29b27847 100644 --- a/ui/i18n/datepicker-ro.js +++ b/ui/i18n/datepicker-ro.js @@ -20,8 +20,8 @@ datepicker.regional.ro = { closeText: "Închide", - prevText: "« Luna precedentă", - nextText: "Luna următoare »", + prevText: " Luna precedentă", + nextText: "Luna următoare ", currentText: "Azi", monthNames: [ "Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie" ], diff --git a/ui/i18n/datepicker-ru.js b/ui/i18n/datepicker-ru.js index 61d1151095f..5a8b3b7c40f 100644 --- a/ui/i18n/datepicker-ru.js +++ b/ui/i18n/datepicker-ru.js @@ -17,8 +17,8 @@ datepicker.regional.ru = { closeText: "Закрыть", - prevText: "<Пред", - nextText: "След>", + prevText: "Пред", + nextText: "След", currentText: "Сегодня", monthNames: [ "Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь" ], diff --git a/ui/i18n/datepicker-sk.js b/ui/i18n/datepicker-sk.js index c28750c248e..826dfcbca23 100644 --- a/ui/i18n/datepicker-sk.js +++ b/ui/i18n/datepicker-sk.js @@ -17,8 +17,8 @@ datepicker.regional.sk = { closeText: "Zavrieť", - prevText: "<Predchádzajúci", - nextText: "Nasledujúci>", + prevText: "Predchádzajúci", + nextText: "Nasledujúci", currentText: "Dnes", monthNames: [ "január", "február", "marec", "apríl", "máj", "jún", "júl", "august", "september", "október", "november", "december" ], diff --git a/ui/i18n/datepicker-sl.js b/ui/i18n/datepicker-sl.js index 15aa9e4ccf2..4b329e26de6 100644 --- a/ui/i18n/datepicker-sl.js +++ b/ui/i18n/datepicker-sl.js @@ -18,8 +18,8 @@ datepicker.regional.sl = { closeText: "Zapri", - prevText: "<Prejšnji", - nextText: "Naslednji>", + prevText: "Prejšnji", + nextText: "Naslednji", currentText: "Trenutni", monthNames: [ "Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December" ], diff --git a/ui/i18n/datepicker-sq.js b/ui/i18n/datepicker-sq.js index 470a0301b48..9952fb1f535 100644 --- a/ui/i18n/datepicker-sq.js +++ b/ui/i18n/datepicker-sq.js @@ -17,8 +17,8 @@ datepicker.regional.sq = { closeText: "mbylle", - prevText: "<mbrapa", - nextText: "Përpara>", + prevText: "mbrapa", + nextText: "Përpara", currentText: "sot", monthNames: [ "Janar", "Shkurt", "Mars", "Prill", "Maj", "Qershor", "Korrik", "Gusht", "Shtator", "Tetor", "Nëntor", "Dhjetor" ], diff --git a/ui/i18n/datepicker-sr-SR.js b/ui/i18n/datepicker-sr-SR.js index 2b75c408e91..7c4dc694e3d 100644 --- a/ui/i18n/datepicker-sr-SR.js +++ b/ui/i18n/datepicker-sr-SR.js @@ -17,8 +17,8 @@ datepicker.regional[ "sr-SR" ] = { closeText: "Zatvori", - prevText: "<", - nextText: ">", + prevText: "", + nextText: "", currentText: "Danas", monthNames: [ "Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar" ], diff --git a/ui/i18n/datepicker-sr.js b/ui/i18n/datepicker-sr.js index c64069ab3a7..36e79f7a9de 100644 --- a/ui/i18n/datepicker-sr.js +++ b/ui/i18n/datepicker-sr.js @@ -17,8 +17,8 @@ datepicker.regional.sr = { closeText: "Затвори", - prevText: "<", - nextText: ">", + prevText: "", + nextText: "", currentText: "Данас", monthNames: [ "Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар" ], diff --git a/ui/i18n/datepicker-sv.js b/ui/i18n/datepicker-sv.js index 6fe51e3e74d..ee9296ea309 100644 --- a/ui/i18n/datepicker-sv.js +++ b/ui/i18n/datepicker-sv.js @@ -17,8 +17,8 @@ datepicker.regional.sv = { closeText: "Stäng", - prevText: "«Förra", - nextText: "Nästa»", + prevText: "Förra", + nextText: "Nästa", currentText: "Idag", monthNames: [ "januari", "februari", "mars", "april", "maj", "juni", "juli", "augusti", "september", "oktober", "november", "december" ], diff --git a/ui/i18n/datepicker-th.js b/ui/i18n/datepicker-th.js index 10c2833214e..719afa9bf76 100644 --- a/ui/i18n/datepicker-th.js +++ b/ui/i18n/datepicker-th.js @@ -17,8 +17,8 @@ datepicker.regional.th = { closeText: "ปิด", - prevText: "« ย้อน", - nextText: "ถัดไป »", + prevText: " ย้อน", + nextText: "ถัดไป ", currentText: "วันนี้", monthNames: [ "มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม" ], diff --git a/ui/i18n/datepicker-tj.js b/ui/i18n/datepicker-tj.js index bdc71f17a6c..a3669dae304 100644 --- a/ui/i18n/datepicker-tj.js +++ b/ui/i18n/datepicker-tj.js @@ -17,8 +17,8 @@ datepicker.regional.tj = { closeText: "Идома", - prevText: "<Қафо", - nextText: "Пеш>", + prevText: "Қафо", + nextText: "Пеш", currentText: "Имрӯз", monthNames: [ "Январ", "Феврал", "Март", "Апрел", "Май", "Июн", "Июл", "Август", "Сентябр", "Октябр", "Ноябр", "Декабр" ], diff --git a/ui/i18n/datepicker-tr.js b/ui/i18n/datepicker-tr.js index 220d66e64e1..32eb3edd3a0 100644 --- a/ui/i18n/datepicker-tr.js +++ b/ui/i18n/datepicker-tr.js @@ -17,8 +17,8 @@ datepicker.regional.tr = { closeText: "kapat", - prevText: "<geri", - nextText: "ileri>", + prevText: "geri", + nextText: "ileri", currentText: "bugün", monthNames: [ "Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık" ], diff --git a/ui/i18n/datepicker-uk.js b/ui/i18n/datepicker-uk.js index 083462803aa..b2830e656c3 100644 --- a/ui/i18n/datepicker-uk.js +++ b/ui/i18n/datepicker-uk.js @@ -18,8 +18,8 @@ datepicker.regional.uk = { closeText: "Закрити", - prevText: "<", - nextText: ">", + prevText: "", + nextText: "", currentText: "Сьогодні", monthNames: [ "Січень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень" ], diff --git a/ui/i18n/datepicker-vi.js b/ui/i18n/datepicker-vi.js index e06b702c12d..8664c4fee37 100644 --- a/ui/i18n/datepicker-vi.js +++ b/ui/i18n/datepicker-vi.js @@ -17,8 +17,8 @@ datepicker.regional.vi = { closeText: "Đóng", - prevText: "<Trước", - nextText: "Tiếp>", + prevText: "Trước", + nextText: "Tiếp", currentText: "Hôm nay", monthNames: [ "Tháng Một", "Tháng Hai", "Tháng Ba", "Tháng Tư", "Tháng Năm", "Tháng Sáu", "Tháng Bảy", "Tháng Tám", "Tháng Chín", "Tháng Mười", "Tháng Mười Một", "Tháng Mười Hai" ], diff --git a/ui/i18n/datepicker-zh-CN.js b/ui/i18n/datepicker-zh-CN.js index 84092904b69..a00553ef6d0 100644 --- a/ui/i18n/datepicker-zh-CN.js +++ b/ui/i18n/datepicker-zh-CN.js @@ -17,8 +17,8 @@ datepicker.regional[ "zh-CN" ] = { closeText: "关闭", - prevText: "<上月", - nextText: "下月>", + prevText: "上月", + nextText: "下月", currentText: "今天", monthNames: [ "一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月" ], diff --git a/ui/i18n/datepicker-zh-HK.js b/ui/i18n/datepicker-zh-HK.js index 80d5c7690bd..e61bf66b080 100644 --- a/ui/i18n/datepicker-zh-HK.js +++ b/ui/i18n/datepicker-zh-HK.js @@ -17,8 +17,8 @@ datepicker.regional[ "zh-HK" ] = { closeText: "關閉", - prevText: "<上月", - nextText: "下月>", + prevText: "上月", + nextText: "下月", currentText: "今天", monthNames: [ "一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月" ], diff --git a/ui/i18n/datepicker-zh-TW.js b/ui/i18n/datepicker-zh-TW.js index 9e79a45cad6..f5e02a6f033 100644 --- a/ui/i18n/datepicker-zh-TW.js +++ b/ui/i18n/datepicker-zh-TW.js @@ -17,8 +17,8 @@ datepicker.regional[ "zh-TW" ] = { closeText: "關閉", - prevText: "<上個月", - nextText: "下個月>", + prevText: "上個月", + nextText: "下個月", currentText: "今天", monthNames: [ "一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月" ], From 218c6af95a5d72134c1b32220995b161c56a1453 Mon Sep 17 00:00:00 2001 From: Felix Nagel Date: Fri, 8 Jul 2022 02:51:48 +0200 Subject: [PATCH 07/17] Datepicker: Remove symbols in localization Follow-up to dfff5e7e999453f5d080c184bd4e3fdbfc93b83e Fixes gh-2048 Closes gh-2050 --- ui/i18n/datepicker-fi.js | 4 ++-- ui/i18n/datepicker-is.js | 2 +- ui/i18n/datepicker-ka.js | 2 +- ui/i18n/datepicker-nl-BE.js | 4 ++-- ui/i18n/datepicker-nl.js | 4 ++-- ui/i18n/datepicker-ro.js | 2 +- ui/i18n/datepicker-th.js | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/ui/i18n/datepicker-fi.js b/ui/i18n/datepicker-fi.js index dd4ca5944a7..d355e9ebbdc 100644 --- a/ui/i18n/datepicker-fi.js +++ b/ui/i18n/datepicker-fi.js @@ -17,8 +17,8 @@ datepicker.regional.fi = { closeText: "Sulje", - prevText: "«Edellinen", - nextText: "Seuraava»", + prevText: "Edellinen", + nextText: "Seuraava", currentText: "Tänään", monthNames: [ "Tammikuu", "Helmikuu", "Maaliskuu", "Huhtikuu", "Toukokuu", "Kesäkuu", "Heinäkuu", "Elokuu", "Syyskuu", "Lokakuu", "Marraskuu", "Joulukuu" ], diff --git a/ui/i18n/datepicker-is.js b/ui/i18n/datepicker-is.js index 122ece02c12..c453fa4af2b 100644 --- a/ui/i18n/datepicker-is.js +++ b/ui/i18n/datepicker-is.js @@ -17,7 +17,7 @@ datepicker.regional.is = { closeText: "Loka", - prevText: " Fyrri", + prevText: "Fyrri", nextText: "Næsti ", currentText: "Í dag", monthNames: [ "Janúar", "Febrúar", "Mars", "Apríl", "Maí", "Júní", diff --git a/ui/i18n/datepicker-ka.js b/ui/i18n/datepicker-ka.js index 33ae7a46131..d347de8f5f7 100644 --- a/ui/i18n/datepicker-ka.js +++ b/ui/i18n/datepicker-ka.js @@ -17,7 +17,7 @@ datepicker.regional.ka = { closeText: "დახურვა", - prevText: " წინა", + prevText: "წინა", nextText: "შემდეგი ", currentText: "დღეს", monthNames: [ diff --git a/ui/i18n/datepicker-nl-BE.js b/ui/i18n/datepicker-nl-BE.js index ae574739e7f..be02747e86b 100644 --- a/ui/i18n/datepicker-nl-BE.js +++ b/ui/i18n/datepicker-nl-BE.js @@ -17,8 +17,8 @@ datepicker.regional[ "nl-BE" ] = { closeText: "Sluiten", - prevText: "←", - nextText: "→", + prevText: "", + nextText: "", currentText: "Vandaag", monthNames: [ "januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december" ], diff --git a/ui/i18n/datepicker-nl.js b/ui/i18n/datepicker-nl.js index 19df79ca714..ab1ce7d11c5 100644 --- a/ui/i18n/datepicker-nl.js +++ b/ui/i18n/datepicker-nl.js @@ -17,8 +17,8 @@ datepicker.regional.nl = { closeText: "Sluiten", - prevText: "←", - nextText: "→", + prevText: "", + nextText: "", currentText: "Vandaag", monthNames: [ "januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december" ], diff --git a/ui/i18n/datepicker-ro.js b/ui/i18n/datepicker-ro.js index 1ad29b27847..60f56ae79da 100644 --- a/ui/i18n/datepicker-ro.js +++ b/ui/i18n/datepicker-ro.js @@ -20,7 +20,7 @@ datepicker.regional.ro = { closeText: "Închide", - prevText: " Luna precedentă", + prevText: "Luna precedentă", nextText: "Luna următoare ", currentText: "Azi", monthNames: [ "Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", diff --git a/ui/i18n/datepicker-th.js b/ui/i18n/datepicker-th.js index 719afa9bf76..41cef5237f7 100644 --- a/ui/i18n/datepicker-th.js +++ b/ui/i18n/datepicker-th.js @@ -17,8 +17,8 @@ datepicker.regional.th = { closeText: "ปิด", - prevText: " ย้อน", - nextText: "ถัดไป ", + prevText: "ย้อน", + nextText: "ถัดไป", currentText: "วันนี้", monthNames: [ "มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม" ], From 395aa7d05601aa1f2ebeae272f81f0014c0cae90 Mon Sep 17 00:00:00 2001 From: Felix Nagel Date: Sat, 9 Jul 2022 02:03:20 +0200 Subject: [PATCH 08/17] Datepicker: Add missing localization for prevText and nextText Fixes gh-2048 Closes gh-2050 Closes gh-2100 --- ui/i18n/datepicker-bs.js | 4 ++-- ui/i18n/datepicker-hr.js | 4 ++-- ui/i18n/datepicker-mk.js | 4 ++-- ui/i18n/datepicker-nl-BE.js | 4 ++-- ui/i18n/datepicker-nl.js | 4 ++-- ui/i18n/datepicker-sr-SR.js | 4 ++-- ui/i18n/datepicker-sr.js | 4 ++-- ui/i18n/datepicker-uk.js | 4 ++-- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/ui/i18n/datepicker-bs.js b/ui/i18n/datepicker-bs.js index b39a9a75b1b..3ee9db4c1de 100644 --- a/ui/i18n/datepicker-bs.js +++ b/ui/i18n/datepicker-bs.js @@ -17,8 +17,8 @@ datepicker.regional.bs = { closeText: "Zatvori", - prevText: "", - nextText: "", + prevText: "Prethodno", + nextText: "Sljedeći", currentText: "Danas", monthNames: [ "Januar", "Februar", "Mart", "April", "Maj", "Juni", "Juli", "August", "Septembar", "Oktobar", "Novembar", "Decembar" ], diff --git a/ui/i18n/datepicker-hr.js b/ui/i18n/datepicker-hr.js index 6542e2f81d2..2898d5cb8fd 100644 --- a/ui/i18n/datepicker-hr.js +++ b/ui/i18n/datepicker-hr.js @@ -17,8 +17,8 @@ datepicker.regional.hr = { closeText: "Zatvori", - prevText: "", - nextText: "", + prevText: "Prethodno", + nextText: "Sljedeći", currentText: "Danas", monthNames: [ "Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac" ], diff --git a/ui/i18n/datepicker-mk.js b/ui/i18n/datepicker-mk.js index 6672b01c829..6f430e905d7 100644 --- a/ui/i18n/datepicker-mk.js +++ b/ui/i18n/datepicker-mk.js @@ -17,8 +17,8 @@ datepicker.regional.mk = { closeText: "Затвори", - prevText: "", - nextText: "", + prevText: "Претходна", + nextText: "Следно", currentText: "Денес", monthNames: [ "Јануари", "Февруари", "Март", "Април", "Мај", "Јуни", "Јули", "Август", "Септември", "Октомври", "Ноември", "Декември" ], diff --git a/ui/i18n/datepicker-nl-BE.js b/ui/i18n/datepicker-nl-BE.js index be02747e86b..1b37288bf9c 100644 --- a/ui/i18n/datepicker-nl-BE.js +++ b/ui/i18n/datepicker-nl-BE.js @@ -17,8 +17,8 @@ datepicker.regional[ "nl-BE" ] = { closeText: "Sluiten", - prevText: "", - nextText: "", + prevText: "Vorig", + nextText: "Volgende", currentText: "Vandaag", monthNames: [ "januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december" ], diff --git a/ui/i18n/datepicker-nl.js b/ui/i18n/datepicker-nl.js index ab1ce7d11c5..535d7fbdaa8 100644 --- a/ui/i18n/datepicker-nl.js +++ b/ui/i18n/datepicker-nl.js @@ -17,8 +17,8 @@ datepicker.regional.nl = { closeText: "Sluiten", - prevText: "", - nextText: "", + prevText: "Vorig", + nextText: "Volgende", currentText: "Vandaag", monthNames: [ "januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december" ], diff --git a/ui/i18n/datepicker-sr-SR.js b/ui/i18n/datepicker-sr-SR.js index 7c4dc694e3d..b28ceed019b 100644 --- a/ui/i18n/datepicker-sr-SR.js +++ b/ui/i18n/datepicker-sr-SR.js @@ -17,8 +17,8 @@ datepicker.regional[ "sr-SR" ] = { closeText: "Zatvori", - prevText: "", - nextText: "", + prevText: "Prethodno", + nextText: "Sljedeći", currentText: "Danas", monthNames: [ "Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar" ], diff --git a/ui/i18n/datepicker-sr.js b/ui/i18n/datepicker-sr.js index 36e79f7a9de..8b04d9bb3a0 100644 --- a/ui/i18n/datepicker-sr.js +++ b/ui/i18n/datepicker-sr.js @@ -17,8 +17,8 @@ datepicker.regional.sr = { closeText: "Затвори", - prevText: "", - nextText: "", + prevText: "Претходна", + nextText: "Следећи", currentText: "Данас", monthNames: [ "Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар" ], diff --git a/ui/i18n/datepicker-uk.js b/ui/i18n/datepicker-uk.js index b2830e656c3..c273fd6e41d 100644 --- a/ui/i18n/datepicker-uk.js +++ b/ui/i18n/datepicker-uk.js @@ -18,8 +18,8 @@ datepicker.regional.uk = { closeText: "Закрити", - prevText: "", - nextText: "", + prevText: "Попередній", + nextText: "найближчий", currentText: "Сьогодні", monthNames: [ "Січень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень" ], From ac1866f20d0c333658ec180b09bb84445c3bb086 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski-Owczarek?= Date: Thu, 14 Jul 2022 19:07:27 +0200 Subject: [PATCH 09/17] Build: Update AUTHORS.txt --- AUTHORS.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AUTHORS.txt b/AUTHORS.txt index 2fcf89acccc..3fc0d68d816 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -365,3 +365,6 @@ Patrick McKay c-lambert <58025159+c-lambert@users.noreply.github.com> Josep Sanz Ben Mullins +Christian Oliff +dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Adam Lidén Hällgren From 1f467baaacf0f9927cb73482a9f3ac0253739c4a Mon Sep 17 00:00:00 2001 From: James Hinderks Date: Thu, 14 Jul 2022 13:43:16 -0400 Subject: [PATCH 10/17] Selectmenu: Remove a call to the deprecated .focus() method Replaces a call to the deprecated jQuery `.focus()` method with `.trigger("focus")`. Closes gh-2053 --- ui/widgets/selectmenu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/widgets/selectmenu.js b/ui/widgets/selectmenu.js index cefeddcacf4..cf48261d092 100644 --- a/ui/widgets/selectmenu.js +++ b/ui/widgets/selectmenu.js @@ -417,7 +417,7 @@ return $.widget( "ui.selectmenu", [ $.ui.formResetMixin, { // Support: IE // Setting the text selection kills the button focus in IE, but // restoring the focus doesn't kill the selection. - this.button.focus(); + this.button.trigger( "focus" ); }, _documentClick: { From 9d1fc97b4ea5c364b8f1c7d9ab2a3c28f8c594e7 Mon Sep 17 00:00:00 2001 From: Denny Septian Panggabean <97607754+ddevsr@users.noreply.github.com> Date: Fri, 15 Jul 2022 00:53:59 +0700 Subject: [PATCH 11/17] Datepicker: Capitalize some Indonesian words Closes gh-2067 --- ui/i18n/datepicker-id.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/ui/i18n/datepicker-id.js b/ui/i18n/datepicker-id.js index 1ae3472a4b4..17082e9b933 100644 --- a/ui/i18n/datepicker-id.js +++ b/ui/i18n/datepicker-id.js @@ -1,5 +1,6 @@ /* Indonesian initialisation for the jQuery UI date picker plugin. */ /* Written by Deden Fathurahman (dedenf@gmail.com). */ +/* Fixed by Denny Septian Panggabean (xamidimura@gmail.com) */ ( function( factory ) { "use strict"; @@ -17,16 +18,16 @@ datepicker.regional.id = { closeText: "Tutup", - prevText: "mundur", - nextText: "maju", - currentText: "hari ini", + prevText: "Mundur", + nextText: "Maju", + currentText: "Hari ini", monthNames: [ "Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "Nopember", "Desember" ], monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Agus", "Sep", "Okt", "Nop", "Des" ], dayNames: [ "Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu" ], - dayNamesShort: [ "Min", "Sen", "Sel", "Rab", "kam", "Jum", "Sab" ], - dayNamesMin: [ "Mg", "Sn", "Sl", "Rb", "Km", "jm", "Sb" ], + dayNamesShort: [ "Min", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab" ], + dayNamesMin: [ "Mg", "Sn", "Sl", "Rb", "Km", "Jm", "Sb" ], weekHeader: "Mg", dateFormat: "dd/mm/yy", firstDay: 0, From bb00536756b40a67288fab1803741d18bf3b5e4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski-Owczarek?= Date: Thu, 14 Jul 2022 19:54:38 +0200 Subject: [PATCH 12/17] Build: Update AUTHORS.txt --- AUTHORS.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AUTHORS.txt b/AUTHORS.txt index 3fc0d68d816..0ee3fb31ebe 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -368,3 +368,5 @@ Ben Mullins Christian Oliff dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Adam Lidén Hällgren +James Hinderks +Denny Septian Panggabean <97607754+ddevsr@users.noreply.github.com> From b53e7beb6884a8de7710146112bc48aecd8737b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski-Owczarek?= Date: Thu, 14 Jul 2022 20:34:29 +0200 Subject: [PATCH 13/17] All: Remove deprecated .click() usage in demos/tests --- demos/button/default.html | 2 +- demos/controlgroup/splitbutton.html | 2 +- tests/visual/checkboxradio/checkboxradio.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/demos/button/default.html b/demos/button/default.html index 644dcd22541..7ac6a325d05 100644 --- a/demos/button/default.html +++ b/demos/button/default.html @@ -9,7 +9,7 @@ diff --git a/demos/controlgroup/splitbutton.html b/demos/controlgroup/splitbutton.html index ec2b78876d6..27f9498160a 100644 --- a/demos/controlgroup/splitbutton.html +++ b/demos/controlgroup/splitbutton.html @@ -21,7 +21,7 @@ } }); $( ".controlgroup" ).controlgroup(); - $( "button" ).click(function() { + $( "button" ).on( "click", function() { $( ".output" ).append( "
  • Running Last Action...
  • " ); }); diff --git a/tests/visual/checkboxradio/checkboxradio.html b/tests/visual/checkboxradio/checkboxradio.html index a472c9df2fd..8d26daeff17 100644 --- a/tests/visual/checkboxradio/checkboxradio.html +++ b/tests/visual/checkboxradio/checkboxradio.html @@ -24,7 +24,7 @@ checkboxes.checkboxradio( "option", option, value ); } }); - $( ".controls > button" ).click( function() { + $( ".controls > button" ).on( "click", function() { if ( this.id !== "create" ) { checkboxes.checkboxradio( this.id ); } else { From 8cc5bae1caa1fcf96bf5862c5646c787020ba3f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski-Owczarek?= Date: Thu, 14 Jul 2022 20:52:02 +0200 Subject: [PATCH 14/17] Checkboxradio: Don't re-evaluate text labels as HTML If you generate a Checkboxradio from a checkbox/radio with a label that contains encoded HTML, e.g. `<em>test</em>` this will work fine at first. If, however a refresh is triggered on that instance (explicitly or e.g. by turning it into a `Controlgroup`), the previously escaped HTML will now be evaluated. If the label was created based on some user input, this could lead to unexpected code execution even though the initial output was escaped. Fixes gh-2101 Closes gh-2102 --- tests/unit/checkboxradio/checkboxradio.html | 12 +++++++ tests/unit/checkboxradio/core.js | 37 ++++++++++++++++++++ tests/unit/checkboxradio/methods.js | 38 +++++++++++++++++++++ ui/widgets/checkboxradio.js | 21 +++++++----- 4 files changed, 100 insertions(+), 8 deletions(-) diff --git a/tests/unit/checkboxradio/checkboxradio.html b/tests/unit/checkboxradio/checkboxradio.html index 9883e083403..62552fefcea 100644 --- a/tests/unit/checkboxradio/checkboxradio.html +++ b/tests/unit/checkboxradio/checkboxradio.html @@ -64,6 +64,18 @@ + + +
    diff --git a/tests/unit/checkboxradio/core.js b/tests/unit/checkboxradio/core.js index 8b0e1de8ee3..ad27f1be0fb 100644 --- a/tests/unit/checkboxradio/core.js +++ b/tests/unit/checkboxradio/core.js @@ -131,4 +131,41 @@ QUnit.test( "Calling checkboxradio on an input with no label throws an error", f ); } ); +QUnit.test( "Inheriting label from initial HTML", function( assert ) { + var tests = [ + { + id: "label-with-no-for-with-html", + expectedLabel: "Hi, I'm a label" + }, + { + id: "label-with-no-for-with-text", + expectedLabel: "Hi, I'm a label" + }, + { + id: "label-with-no-for-with-html-like-text", + expectedLabel: "<em>Hi, I'm a label</em>" + } + ]; + + assert.expect( tests.length ); + + tests.forEach( function( testData ) { + var id = testData.id; + var expectedLabel = testData.expectedLabel; + var inputElem = $( "#" + id ); + var labelElem = inputElem.parent(); + + inputElem.checkboxradio( { icon: false } ); + + var labelWithoutInput = labelElem.clone(); + labelWithoutInput.find( "input" ).remove(); + + assert.strictEqual( + labelWithoutInput.html().trim(), + expectedLabel.trim(), + "Label correct [" + id + "]" + ); + } ); +} ); + } ); diff --git a/tests/unit/checkboxradio/methods.js b/tests/unit/checkboxradio/methods.js index 09510ec715f..f6c94f94fa8 100644 --- a/tests/unit/checkboxradio/methods.js +++ b/tests/unit/checkboxradio/methods.js @@ -96,4 +96,42 @@ QUnit.test( "Input wrapped in a label preserved on refresh", function( assert ) assert.strictEqual( input.parent()[ 0 ], element[ 0 ], "Input preserved" ); } ); +QUnit.test( "Initial text label not turned to HTML on refresh", function( assert ) { + var tests = [ + { + id: "label-with-no-for-with-html", + expectedLabel: "Hi, I'm a label" + }, + { + id: "label-with-no-for-with-text", + expectedLabel: "Hi, I'm a label" + }, + { + id: "label-with-no-for-with-html-like-text", + expectedLabel: "<em>Hi, I'm a label</em>" + } + ]; + + assert.expect( tests.length ); + + tests.forEach( function( testData ) { + var id = testData.id; + var expectedLabel = testData.expectedLabel; + var inputElem = $( "#" + id ); + var labelElem = inputElem.parent(); + + inputElem.checkboxradio( { icon: false } ); + inputElem.checkboxradio( "refresh" ); + + var labelWithoutInput = labelElem.clone(); + labelWithoutInput.find( "input" ).remove(); + + assert.strictEqual( + labelWithoutInput.html().trim(), + expectedLabel.trim(), + "Label correct [" + id + "]" + ); + } ); +} ); + } ); diff --git a/ui/widgets/checkboxradio.js b/ui/widgets/checkboxradio.js index b2537d29283..afa4a446d4f 100644 --- a/ui/widgets/checkboxradio.js +++ b/ui/widgets/checkboxradio.js @@ -50,8 +50,7 @@ $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, { }, _getCreateOptions: function() { - var disabled, labels; - var that = this; + var disabled, labels, labelContents; var options = this._super() || {}; // We read the type here, because it makes more sense to throw a element type error first, @@ -71,12 +70,18 @@ $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, { // We need to get the label text but this may also need to make sure it does not contain the // input itself. - this.label.contents().not( this.element[ 0 ] ).each( function() { - - // The label contents could be text, html, or a mix. We concat each element to get a - // string representation of the label, without the input as part of it. - that.originalLabel += this.nodeType === 3 ? $( this ).text() : this.outerHTML; - } ); + // The label contents could be text, html, or a mix. We wrap all elements + // and read the wrapper's `innerHTML` to get a string representation of + // the label, without the input as part of it. + labelContents = this.label.contents().not( this.element[ 0 ] ); + + if ( labelContents.length ) { + this.originalLabel += labelContents + .clone() + .wrapAll( "
    " ) + .parent() + .html(); + } // Set the label option if we found label text if ( this.originalLabel ) { From 1f16dbb803433a5cac013f28502e51e0de859db9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski-Owczarek?= Date: Thu, 14 Jul 2022 21:13:21 +0200 Subject: [PATCH 15/17] Build: Updating the main version to 1.13.3-pre. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 348712a5a38..2b346a7c8d0 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "jquery-ui", "title": "jQuery UI", "description": "A curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.", - "version": "1.13.2-pre", + "version": "1.13.3-pre", "homepage": "http://jqueryui.com", "author": { "name": "jQuery Foundation and other contributors", From 0df6e658307f8936a477deb9674d643d18a2469b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski-Owczarek?= Date: Tue, 19 Jul 2022 09:36:55 +0200 Subject: [PATCH 16/17] All: Update JS Foundation mentions to OpenJS Foundation Closes gh-2104 --- CONTRIBUTING.md | 2 +- LICENSE.txt | 2 +- package.json | 2 +- themes/base/accordion.css | 2 +- themes/base/all.css | 2 +- themes/base/autocomplete.css | 2 +- themes/base/base.css | 2 +- themes/base/button.css | 2 +- themes/base/checkboxradio.css | 2 +- themes/base/controlgroup.css | 2 +- themes/base/core.css | 2 +- themes/base/datepicker.css | 2 +- themes/base/dialog.css | 2 +- themes/base/draggable.css | 2 +- themes/base/menu.css | 2 +- themes/base/progressbar.css | 2 +- themes/base/resizable.css | 2 +- themes/base/selectable.css | 2 +- themes/base/selectmenu.css | 2 +- themes/base/slider.css | 2 +- themes/base/sortable.css | 2 +- themes/base/spinner.css | 2 +- themes/base/tabs.css | 2 +- themes/base/theme.css | 2 +- themes/base/tooltip.css | 2 +- ui/data.js | 2 +- ui/disable-selection.js | 2 +- ui/effect.js | 2 +- ui/effects/effect-blind.js | 2 +- ui/effects/effect-bounce.js | 2 +- ui/effects/effect-clip.js | 2 +- ui/effects/effect-drop.js | 2 +- ui/effects/effect-explode.js | 2 +- ui/effects/effect-fade.js | 2 +- ui/effects/effect-fold.js | 2 +- ui/effects/effect-highlight.js | 2 +- ui/effects/effect-puff.js | 2 +- ui/effects/effect-pulsate.js | 2 +- ui/effects/effect-scale.js | 2 +- ui/effects/effect-shake.js | 2 +- ui/effects/effect-size.js | 2 +- ui/effects/effect-slide.js | 2 +- ui/effects/effect-transfer.js | 2 +- ui/focusable.js | 2 +- ui/form-reset-mixin.js | 2 +- ui/jquery-patch.js | 2 +- ui/keycode.js | 2 +- ui/labels.js | 2 +- ui/position.js | 2 +- ui/scroll-parent.js | 2 +- ui/tabbable.js | 2 +- ui/unique-id.js | 2 +- ui/widget.js | 2 +- ui/widgets/accordion.js | 2 +- ui/widgets/autocomplete.js | 2 +- ui/widgets/button.js | 2 +- ui/widgets/checkboxradio.js | 2 +- ui/widgets/controlgroup.js | 2 +- ui/widgets/datepicker.js | 2 +- ui/widgets/dialog.js | 2 +- ui/widgets/draggable.js | 2 +- ui/widgets/droppable.js | 2 +- ui/widgets/menu.js | 2 +- ui/widgets/mouse.js | 2 +- ui/widgets/progressbar.js | 2 +- ui/widgets/resizable.js | 2 +- ui/widgets/selectable.js | 2 +- ui/widgets/selectmenu.js | 2 +- ui/widgets/slider.js | 2 +- ui/widgets/sortable.js | 2 +- ui/widgets/spinner.js | 2 +- ui/widgets/tabs.js | 2 +- ui/widgets/tooltip.js | 2 +- 73 files changed, 73 insertions(+), 73 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4542658a430..a1b7fcfe41b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing to jQuery UI -Welcome! Thanks for your interest in contributing to jQuery UI. Most of our information on how to contribute to this and all other jQuery Foundation projects is over at [contribute.jquery.org](http://contribute.jquery.org). You'll definitely want to take a look at the articles on contributing [code](http://contribute.jquery.org/code). +Welcome! Thanks for your interest in contributing to jQuery UI. Most of our information on how to contribute to this and all other jQuery projects is over at [contribute.jquery.org](http://contribute.jquery.org). You'll definitely want to take a look at the articles on contributing [code](http://contribute.jquery.org/code). You may also want to take a look at our [commit & pull request guide](http://contribute.jquery.org/commits-and-pull-requests/) and [style guides](http://contribute.jquery.org/style-guide/) for instructions on how to maintain your fork and submit your code. Before we can merge any pull request, we'll also need you to sign our [contributor license agreement](http://contribute.jquery.org/cla). diff --git a/LICENSE.txt b/LICENSE.txt index 4819e54213f..78108290c40 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright jQuery Foundation and other contributors, https://jquery.org/ +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ This software consists of voluntary contributions made by many individuals. For exact contribution history, see the revision history diff --git a/package.json b/package.json index 2b346a7c8d0..65cd1e8d108 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "version": "1.13.3-pre", "homepage": "http://jqueryui.com", "author": { - "name": "jQuery Foundation and other contributors", + "name": "OpenJS Foundation and other contributors", "url": "https://github.com/jquery/jquery-ui/blob/main/AUTHORS.txt" }, "main": "ui/widget.js", diff --git a/themes/base/accordion.css b/themes/base/accordion.css index baffce488b1..be25ea4e39d 100644 --- a/themes/base/accordion.css +++ b/themes/base/accordion.css @@ -2,7 +2,7 @@ * jQuery UI Accordion @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/all.css b/themes/base/all.css index b31adc80f1d..c7fe4ac7e55 100644 --- a/themes/base/all.css +++ b/themes/base/all.css @@ -2,7 +2,7 @@ * jQuery UI CSS Framework @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/autocomplete.css b/themes/base/autocomplete.css index 7fcb2829ef4..ea7464c47ca 100644 --- a/themes/base/autocomplete.css +++ b/themes/base/autocomplete.css @@ -2,7 +2,7 @@ * jQuery UI Autocomplete @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/base.css b/themes/base/base.css index 3b33e9bc001..777fe46f48d 100644 --- a/themes/base/base.css +++ b/themes/base/base.css @@ -2,7 +2,7 @@ * jQuery UI CSS Framework @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/button.css b/themes/base/button.css index 4a3a57d484c..a83283a7301 100644 --- a/themes/base/button.css +++ b/themes/base/button.css @@ -2,7 +2,7 @@ * jQuery UI Button @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/checkboxradio.css b/themes/base/checkboxradio.css index a41125e2318..0fcf350e58d 100644 --- a/themes/base/checkboxradio.css +++ b/themes/base/checkboxradio.css @@ -2,7 +2,7 @@ * jQuery UI Checkboxradio @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/controlgroup.css b/themes/base/controlgroup.css index 35e442e174b..f19cd4f27a6 100644 --- a/themes/base/controlgroup.css +++ b/themes/base/controlgroup.css @@ -2,7 +2,7 @@ * jQuery UI Controlgroup @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/core.css b/themes/base/core.css index ffb533379a5..0f4f07951cf 100644 --- a/themes/base/core.css +++ b/themes/base/core.css @@ -2,7 +2,7 @@ * jQuery UI CSS Framework @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/datepicker.css b/themes/base/datepicker.css index 91da063a65b..81259e4c060 100644 --- a/themes/base/datepicker.css +++ b/themes/base/datepicker.css @@ -2,7 +2,7 @@ * jQuery UI Datepicker @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/dialog.css b/themes/base/dialog.css index 7146fe95364..5915ef88ae3 100644 --- a/themes/base/dialog.css +++ b/themes/base/dialog.css @@ -2,7 +2,7 @@ * jQuery UI Dialog @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/draggable.css b/themes/base/draggable.css index f2000c45656..2b14479bd49 100644 --- a/themes/base/draggable.css +++ b/themes/base/draggable.css @@ -2,7 +2,7 @@ * jQuery UI Draggable @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/themes/base/menu.css b/themes/base/menu.css index 0f01a0caed6..880dcaec080 100644 --- a/themes/base/menu.css +++ b/themes/base/menu.css @@ -2,7 +2,7 @@ * jQuery UI Menu @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/progressbar.css b/themes/base/progressbar.css index 2eff6ae93d4..fab25bf6e34 100644 --- a/themes/base/progressbar.css +++ b/themes/base/progressbar.css @@ -2,7 +2,7 @@ * jQuery UI Progressbar @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/resizable.css b/themes/base/resizable.css index 318c6ebddaf..cc99a95b5b8 100644 --- a/themes/base/resizable.css +++ b/themes/base/resizable.css @@ -2,7 +2,7 @@ * jQuery UI Resizable @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/themes/base/selectable.css b/themes/base/selectable.css index f0790f47113..7d461830d23 100644 --- a/themes/base/selectable.css +++ b/themes/base/selectable.css @@ -2,7 +2,7 @@ * jQuery UI Selectable @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/themes/base/selectmenu.css b/themes/base/selectmenu.css index 3299f9e4dbf..cae2804c38d 100644 --- a/themes/base/selectmenu.css +++ b/themes/base/selectmenu.css @@ -2,7 +2,7 @@ * jQuery UI Selectmenu @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/slider.css b/themes/base/slider.css index 724d513c2ac..00696d286f2 100644 --- a/themes/base/slider.css +++ b/themes/base/slider.css @@ -2,7 +2,7 @@ * jQuery UI Slider @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/sortable.css b/themes/base/sortable.css index 7931b451e54..5efc3678a82 100644 --- a/themes/base/sortable.css +++ b/themes/base/sortable.css @@ -2,7 +2,7 @@ * jQuery UI Sortable @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/themes/base/spinner.css b/themes/base/spinner.css index c3908106fa3..112d4eb949a 100644 --- a/themes/base/spinner.css +++ b/themes/base/spinner.css @@ -2,7 +2,7 @@ * jQuery UI Spinner @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/tabs.css b/themes/base/tabs.css index 06ae1a8b200..60c3596d63a 100644 --- a/themes/base/tabs.css +++ b/themes/base/tabs.css @@ -2,7 +2,7 @@ * jQuery UI Tabs @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/theme.css b/themes/base/theme.css index a37d2c97a85..7cbb3e23a98 100644 --- a/themes/base/theme.css +++ b/themes/base/theme.css @@ -2,7 +2,7 @@ * jQuery UI CSS Framework @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/themes/base/tooltip.css b/themes/base/tooltip.css index 809b148a29e..7ae5cd0d735 100644 --- a/themes/base/tooltip.css +++ b/themes/base/tooltip.css @@ -2,7 +2,7 @@ * jQuery UI Tooltip @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/ui/data.js b/ui/data.js index 441bbda5398..8a449a7e67b 100644 --- a/ui/data.js +++ b/ui/data.js @@ -2,7 +2,7 @@ * jQuery UI :data @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/disable-selection.js b/ui/disable-selection.js index 5112b2dc488..0da23614115 100644 --- a/ui/disable-selection.js +++ b/ui/disable-selection.js @@ -2,7 +2,7 @@ * jQuery UI Disable Selection @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/effect.js b/ui/effect.js index 37ce230c362..53121d91028 100644 --- a/ui/effect.js +++ b/ui/effect.js @@ -2,7 +2,7 @@ * jQuery UI Effects @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/effects/effect-blind.js b/ui/effects/effect-blind.js index 858c6d3fdbb..691162459a4 100644 --- a/ui/effects/effect-blind.js +++ b/ui/effects/effect-blind.js @@ -2,7 +2,7 @@ * jQuery UI Effects Blind @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/effects/effect-bounce.js b/ui/effects/effect-bounce.js index 8cb18f82c1e..8bd423e08e7 100644 --- a/ui/effects/effect-bounce.js +++ b/ui/effects/effect-bounce.js @@ -2,7 +2,7 @@ * jQuery UI Effects Bounce @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/effects/effect-clip.js b/ui/effects/effect-clip.js index ca25ef370a1..f7f84c124d0 100644 --- a/ui/effects/effect-clip.js +++ b/ui/effects/effect-clip.js @@ -2,7 +2,7 @@ * jQuery UI Effects Clip @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/effects/effect-drop.js b/ui/effects/effect-drop.js index 9d620e97478..f0a9915c145 100644 --- a/ui/effects/effect-drop.js +++ b/ui/effects/effect-drop.js @@ -2,7 +2,7 @@ * jQuery UI Effects Drop @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/effects/effect-explode.js b/ui/effects/effect-explode.js index 2b8a000e64f..80444fd233f 100644 --- a/ui/effects/effect-explode.js +++ b/ui/effects/effect-explode.js @@ -2,7 +2,7 @@ * jQuery UI Effects Explode @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/effects/effect-fade.js b/ui/effects/effect-fade.js index 56d6a0caef7..f0d7d3d4484 100644 --- a/ui/effects/effect-fade.js +++ b/ui/effects/effect-fade.js @@ -2,7 +2,7 @@ * jQuery UI Effects Fade @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/effects/effect-fold.js b/ui/effects/effect-fold.js index ad19bfb264b..d191a3aa279 100644 --- a/ui/effects/effect-fold.js +++ b/ui/effects/effect-fold.js @@ -2,7 +2,7 @@ * jQuery UI Effects Fold @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/effects/effect-highlight.js b/ui/effects/effect-highlight.js index 8d852de3da8..75912b40ab8 100644 --- a/ui/effects/effect-highlight.js +++ b/ui/effects/effect-highlight.js @@ -2,7 +2,7 @@ * jQuery UI Effects Highlight @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/effects/effect-puff.js b/ui/effects/effect-puff.js index 70e9acd0b0b..330ecb0e68a 100644 --- a/ui/effects/effect-puff.js +++ b/ui/effects/effect-puff.js @@ -2,7 +2,7 @@ * jQuery UI Effects Puff @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/effects/effect-pulsate.js b/ui/effects/effect-pulsate.js index de5f80a10f2..02662365a41 100644 --- a/ui/effects/effect-pulsate.js +++ b/ui/effects/effect-pulsate.js @@ -2,7 +2,7 @@ * jQuery UI Effects Pulsate @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/effects/effect-scale.js b/ui/effects/effect-scale.js index b9a983efd53..8953bdd4073 100644 --- a/ui/effects/effect-scale.js +++ b/ui/effects/effect-scale.js @@ -2,7 +2,7 @@ * jQuery UI Effects Scale @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/effects/effect-shake.js b/ui/effects/effect-shake.js index cf51d66b62e..298333714eb 100644 --- a/ui/effects/effect-shake.js +++ b/ui/effects/effect-shake.js @@ -2,7 +2,7 @@ * jQuery UI Effects Shake @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/effects/effect-size.js b/ui/effects/effect-size.js index 4c67635900f..52828dcca01 100644 --- a/ui/effects/effect-size.js +++ b/ui/effects/effect-size.js @@ -2,7 +2,7 @@ * jQuery UI Effects Size @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/effects/effect-slide.js b/ui/effects/effect-slide.js index 52244219aab..8d6f453db8e 100644 --- a/ui/effects/effect-slide.js +++ b/ui/effects/effect-slide.js @@ -2,7 +2,7 @@ * jQuery UI Effects Slide @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/effects/effect-transfer.js b/ui/effects/effect-transfer.js index 3c5252781e9..7b1075e8f54 100644 --- a/ui/effects/effect-transfer.js +++ b/ui/effects/effect-transfer.js @@ -2,7 +2,7 @@ * jQuery UI Effects Transfer @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/focusable.js b/ui/focusable.js index 5c15425661e..9826bb815c4 100644 --- a/ui/focusable.js +++ b/ui/focusable.js @@ -2,7 +2,7 @@ * jQuery UI Focusable @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/form-reset-mixin.js b/ui/form-reset-mixin.js index b0a917fd585..d20b4e0aee8 100644 --- a/ui/form-reset-mixin.js +++ b/ui/form-reset-mixin.js @@ -2,7 +2,7 @@ * jQuery UI Form Reset Mixin @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/jquery-patch.js b/ui/jquery-patch.js index edb6896c196..aba5ec0d93c 100644 --- a/ui/jquery-patch.js +++ b/ui/jquery-patch.js @@ -2,7 +2,7 @@ * jQuery UI Support for jQuery core 1.8.x and newer @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/ui/keycode.js b/ui/keycode.js index 61eb40a060a..0585a18e4ed 100644 --- a/ui/keycode.js +++ b/ui/keycode.js @@ -2,7 +2,7 @@ * jQuery UI Keycode @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/labels.js b/ui/labels.js index 854e5fd4ab6..0ac0c3bd8ce 100644 --- a/ui/labels.js +++ b/ui/labels.js @@ -2,7 +2,7 @@ * jQuery UI Labels @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/position.js b/ui/position.js index 68b0f19c04f..797db3072a3 100644 --- a/ui/position.js +++ b/ui/position.js @@ -2,7 +2,7 @@ * jQuery UI Position @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * diff --git a/ui/scroll-parent.js b/ui/scroll-parent.js index 813c3721bde..8ce20fb864e 100644 --- a/ui/scroll-parent.js +++ b/ui/scroll-parent.js @@ -2,7 +2,7 @@ * jQuery UI Scroll Parent @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/tabbable.js b/ui/tabbable.js index fc5c837cba1..05f042e95cb 100644 --- a/ui/tabbable.js +++ b/ui/tabbable.js @@ -2,7 +2,7 @@ * jQuery UI Tabbable @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/unique-id.js b/ui/unique-id.js index 518ba7a0cba..ef1b8da6bed 100644 --- a/ui/unique-id.js +++ b/ui/unique-id.js @@ -2,7 +2,7 @@ * jQuery UI Unique ID @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widget.js b/ui/widget.js index 69240f92ceb..6512cc58755 100644 --- a/ui/widget.js +++ b/ui/widget.js @@ -2,7 +2,7 @@ * jQuery UI Widget @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/accordion.js b/ui/widgets/accordion.js index 11278192503..7e32d10bf4a 100644 --- a/ui/widgets/accordion.js +++ b/ui/widgets/accordion.js @@ -2,7 +2,7 @@ * jQuery UI Accordion @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/autocomplete.js b/ui/widgets/autocomplete.js index a7b6f52bd19..6a8bfcbfd7e 100644 --- a/ui/widgets/autocomplete.js +++ b/ui/widgets/autocomplete.js @@ -2,7 +2,7 @@ * jQuery UI Autocomplete @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/button.js b/ui/widgets/button.js index c7cbb4f04ab..7365210e1af 100644 --- a/ui/widgets/button.js +++ b/ui/widgets/button.js @@ -2,7 +2,7 @@ * jQuery UI Button @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/checkboxradio.js b/ui/widgets/checkboxradio.js index afa4a446d4f..86e6ff90681 100644 --- a/ui/widgets/checkboxradio.js +++ b/ui/widgets/checkboxradio.js @@ -2,7 +2,7 @@ * jQuery UI Checkboxradio @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/controlgroup.js b/ui/widgets/controlgroup.js index 77a9e2265d7..68970b7c1d2 100644 --- a/ui/widgets/controlgroup.js +++ b/ui/widgets/controlgroup.js @@ -2,7 +2,7 @@ * jQuery UI Controlgroup @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/datepicker.js b/ui/widgets/datepicker.js index 9ca29a0db5b..b406da7d1f5 100644 --- a/ui/widgets/datepicker.js +++ b/ui/widgets/datepicker.js @@ -3,7 +3,7 @@ * jQuery UI Datepicker @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/dialog.js b/ui/widgets/dialog.js index 6fa585c40db..4dcb93a8d2a 100644 --- a/ui/widgets/dialog.js +++ b/ui/widgets/dialog.js @@ -2,7 +2,7 @@ * jQuery UI Dialog @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/draggable.js b/ui/widgets/draggable.js index 2a9666d4efa..0307fb8e838 100644 --- a/ui/widgets/draggable.js +++ b/ui/widgets/draggable.js @@ -2,7 +2,7 @@ * jQuery UI Draggable @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/droppable.js b/ui/widgets/droppable.js index e33ff8c7a26..bb91553050d 100644 --- a/ui/widgets/droppable.js +++ b/ui/widgets/droppable.js @@ -2,7 +2,7 @@ * jQuery UI Droppable @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/menu.js b/ui/widgets/menu.js index 2bc37789ba3..30dc8de98f5 100644 --- a/ui/widgets/menu.js +++ b/ui/widgets/menu.js @@ -2,7 +2,7 @@ * jQuery UI Menu @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/mouse.js b/ui/widgets/mouse.js index 1efcf08db8e..73bfb211407 100644 --- a/ui/widgets/mouse.js +++ b/ui/widgets/mouse.js @@ -2,7 +2,7 @@ * jQuery UI Mouse @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/progressbar.js b/ui/widgets/progressbar.js index e39bc2fcb01..4049f2c524d 100644 --- a/ui/widgets/progressbar.js +++ b/ui/widgets/progressbar.js @@ -2,7 +2,7 @@ * jQuery UI Progressbar @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/resizable.js b/ui/widgets/resizable.js index 13e98c6588d..d1abbd5397a 100644 --- a/ui/widgets/resizable.js +++ b/ui/widgets/resizable.js @@ -2,7 +2,7 @@ * jQuery UI Resizable @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/selectable.js b/ui/widgets/selectable.js index b8e29517c0e..88ea5bdb39c 100644 --- a/ui/widgets/selectable.js +++ b/ui/widgets/selectable.js @@ -2,7 +2,7 @@ * jQuery UI Selectable @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/selectmenu.js b/ui/widgets/selectmenu.js index cf48261d092..79e1eacc91b 100644 --- a/ui/widgets/selectmenu.js +++ b/ui/widgets/selectmenu.js @@ -2,7 +2,7 @@ * jQuery UI Selectmenu @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/slider.js b/ui/widgets/slider.js index ec2c2877e86..15d77d24af5 100644 --- a/ui/widgets/slider.js +++ b/ui/widgets/slider.js @@ -2,7 +2,7 @@ * jQuery UI Slider @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/sortable.js b/ui/widgets/sortable.js index f5dc5ecce31..9460a9f6dda 100644 --- a/ui/widgets/sortable.js +++ b/ui/widgets/sortable.js @@ -2,7 +2,7 @@ * jQuery UI Sortable @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/spinner.js b/ui/widgets/spinner.js index 1bd69b6d8ba..45ff18e72fc 100644 --- a/ui/widgets/spinner.js +++ b/ui/widgets/spinner.js @@ -2,7 +2,7 @@ * jQuery UI Spinner @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/tabs.js b/ui/widgets/tabs.js index 9e4236ab349..cfa4d93f65e 100644 --- a/ui/widgets/tabs.js +++ b/ui/widgets/tabs.js @@ -2,7 +2,7 @@ * jQuery UI Tabs @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ diff --git a/ui/widgets/tooltip.js b/ui/widgets/tooltip.js index 06282338afb..9f634e35601 100644 --- a/ui/widgets/tooltip.js +++ b/ui/widgets/tooltip.js @@ -2,7 +2,7 @@ * jQuery UI Tooltip @VERSION * http://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ From 4bae79d534aa62a6383d12cbfbeb1d0eea4afe8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski-Owczarek?= Date: Tue, 19 Jul 2022 20:59:15 +0200 Subject: [PATCH 17/17] Docs: Add a security policy in SECURITY.md This is needed so that people know how to report security issues. Closes gh-2103 --- SECURITY.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 00000000000..fae31da8522 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,11 @@ +# Security Policy + +## Supported Versions + +The [latest released version](https://github.com/jquery/jquery-ui/releases) of jQuery UI is supported. + +## Reporting a Vulnerability + +Please email security@jquery.com, and we will respond as quickly as possible. + +If the vulnerability is considered valid and accepted, a patch will be made for the latest jQuery UI version. If the vulnerability is deemed invalid, no further action is required.