New Upstream Release - ckeditor

Ready changes

Summary

Merged new upstream version: 4.20.2+dfsg (was: 4.19.1+dfsg).

Resulting package

Built on 2023-02-25T07:48 (took 45m49s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-releases ckeditor

Diff

diff --git a/.npm/README.md b/.npm/README.md
index 3751e698..4f37a58b 100644
--- a/.npm/README.md
+++ b/.npm/README.md
@@ -74,6 +74,6 @@ If you would like to help maintain the project, follow the [Contribution instruc
 
 ## License
 
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 
 For licensing, see LICENSE.md or <https://ckeditor.com/legal/ckeditor-oss-license>
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000..e5f7fa14
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,104 @@
+branches:
+  only:
+  - next
+  - master
+  - major
+  - stable
+  - latest
+  - /^\d+\.\d+(\.\d+)?(-\S*)?$/
+  - /^release\/\d+\.\d+\.x$/
+  - /^[\d]{4,5}security$/
+
+git:
+  depth: false
+
+env:
+  global:
+    - FULL_RUN=$(if [ "$FULL_RUN_TRAVIS_CFG" != "" ]; then echo "$FULL_RUN_TRAVIS_CFG"; elif [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then echo "fullRun"; else echo ""; fi)
+    - REPO_NAME=$(IFS='/' read -r -a array <<< "$TRAVIS_REPO_SLUG"; echo ${array[1]};)
+    - TARGET_BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then echo "$TRAVIS_BRANCH^"; else echo "$TRAVIS_BRANCH"; fi)
+    - CURRENT_BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then echo "$TRAVIS_BRANCH"; else echo "$TRAVIS_PULL_REQUEST_BRANCH"; fi)
+
+jobs:
+  exclude:
+    - language: ruby
+  include:
+    - name: Chrome (Linux)
+      os: linux
+      dist: xenial
+      language: node_js
+      node_js: 10
+      services:
+        - xvfb
+      addons:
+        chrome: stable
+      install:
+        - npm install npm@7 -g
+        - npm --version
+      before_script:
+        - echo $TRAVIS_EVENT_TYPE
+        # Setup xvfb
+        - 'export DISPLAY=:99.0'
+        - 'sleep 3'
+        # Setup CKEditor 4 testing environment
+        - pwd
+        - npm install benderjs-cli -g
+        - npm i
+        # Setup additional dependency
+        - |
+          if [[ "$EXTRA_DEPS_TRAVIS" == "true" ]]; then
+            git clone $DEPS_TRAVIS $DEPS_LOCATION_TRAVIS --quiet
+            cd $DEPS_LOCATION_TRAVIS
+            git checkout $TRAVIS_PULL_REQUEST_BRANCH || true
+            cd ../..
+          fi
+        # Setup bender test runner
+        - cd ..
+        - pwd
+        - git clone https://github.com/ckeditor/ckeditor4-benderjs-runner.git --branch v1.2.0 --single-branch
+        - cd ckeditor4-benderjs-runner
+        - npm i
+      script:
+        - pwd
+        - echo "Running tests based on diff between $TARGET_BRANCH and $CURRENT_BRANCH"
+        - npm run start -- --configFile "../../$REPO_NAME/bender-runner.config.json" --targetBranch "$TARGET_BRANCH" --currentBranch "$CURRENT_BRANCH" --browser "chrome" --fullRun "$FULL_RUN" --repoPath "../$REPO_NAME/" --prRepoSlug "$TRAVIS_PULL_REQUEST_SLUG"
+
+    - name: Firefox (Linux)
+      os: linux
+      dist: xenial
+      language: node_js
+      node_js: 10
+      services:
+        - xvfb
+      addons:
+        firefox: latest
+      install:
+        - npm install npm@7 -g
+        - npm --version
+      before_script:
+        - echo $TRAVIS_EVENT_TYPE
+        # Setup xvfb
+        - 'export DISPLAY=:99.0'
+        - 'sleep 3'
+        # Setup CKEditor 4 testing environment
+        - pwd
+        - npm install benderjs-cli -g
+        - npm i
+        # Setup additional dependency
+        - |
+          if [[ "$EXTRA_DEPS_TRAVIS" == "true" ]]; then
+            git clone $DEPS_TRAVIS $DEPS_LOCATION_TRAVIS --quiet
+            cd $DEPS_LOCATION_TRAVIS
+            git checkout $TRAVIS_PULL_REQUEST_BRANCH || true
+            cd ../..
+          fi
+        # Setup bender test runner
+        - cd ..
+        - pwd
+        - git clone https://github.com/ckeditor/ckeditor4-benderjs-runner.git --branch v1.2.0 --single-branch
+        - cd ckeditor4-benderjs-runner
+        - npm i
+      script:
+        - pwd
+        - echo "Running tests based on diff between $TARGET_BRANCH and $CURRENT_BRANCH"
+        - npm run start -- --configFile "../../$REPO_NAME/bender-runner.config.json" --targetBranch "$TARGET_BRANCH" --currentBranch "$CURRENT_BRANCH" --browser "firefox" --fullRun "$FULL_RUN" --repoPath "../$REPO_NAME/" --prRepoSlug "$TRAVIS_PULL_REQUEST_SLUG"
diff --git a/CHANGES.md b/CHANGES.md
index b9365274..309f4ef2 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,6 +1,56 @@
 CKEditor 4 Changelog
 ====================
 
+## CKEditor 4.20.2
+
+Fixed Issues:
+
+* [#439](https://github.com/ckeditor/ckeditor4/issues/439): Fixed: Incorrect <kbd>Tab</kbd> and <kbd>Shift</kbd>+<kbd>Tab</kbd> navigation for radio buttons inside the dialog.
+* [#4829](https://github.com/ckeditor/ckeditor4/issues/4829): Fixed: Undo reversed entire table content instead of a single cell. Thanks to that fix, multiple changes in a table can be undone one by one.
+* [#5396](https://github.com/ckeditor/ckeditor4/issues/5396): Fixed: Event listeners for `popstate` and `hashchange` events on the `window`, added by the [Maximize](https://ckeditor.com/cke4/addon/maximize) plugin, were not removed when destroying the editor instance.
+* [#5414](https://github.com/ckeditor/ckeditor4/issues/5414): Fixed: File and image uploaders based on the [Upload Widget plugin](https://ckeditor.com/cke4/addon/uploadwidget) and [Easy Image plugin ](https://ckeditor.com/cke4/addon/easyimage) didn't fire the [`change` event](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#event-change) upon finishing upload, resulting in passing incorrect data in form controls for integration frameworks, like [Reactive forms in Angular](https://angular.io/guide/reactive-forms).
+* [#698](https://github.com/ckeditor/ckeditor4/issues/698): Fixed: An error was thrown after applying formatting to the widget with inline editable and switching to the source mode. Thanks to [Glen](https://github.com/glen-84)!
+
+API changes:
+
+* [#3540](https://github.com/ckeditor/ckeditor4/issues/3540): The [startup data](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_plugins_widget.html) passed to the widget's command is now used to also populate the widget's template.
+* [#5352](https://github.com/ckeditor/ckeditor4/issues/5352): Added the [`colorButton_contentsCss`](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-colorButton_contentsCss) configuration option allowing to add custom CSS to the [Color Button](https://ckeditor.com/cke4/addon/colorbutton) menu content. Thanks to [mihilion](https://github.com/mihilion)!
+
+## CKEditor 4.20.1
+
+Fixed Issues:
+
+* [#5333](https://github.com/ckeditor/ckeditor4/issues/5333): Fixed: The original name of the uploaded image is not preserved by the [Upload Image](https://ckeditor.com/cke4/addon/uploadimage) plugin if the [Clipboard](https://ckeditor.com/cke4/addon/clipboard) plugin has enabled image handling.
+* [#2881](https://github.com/ckeditor/ckeditor4/issues/2881): Fixed: Changing table headers from "Both" to "First column" in the [Table](https://ckeditor.com/cke4/addon/table) dialog does not change the first column cell correctly.
+* [#2996](https://github.com/ckeditor/ckeditor4/issues/2996): Fixed: Table header "scope" attribute is incorrect for the "Headers: both" option in the [Table](https://ckeditor.com/cke4/addon/table) dialog.
+* [#4802](https://github.com/ckeditor/ckeditor4/issues/4802): Fixed: [Tableselection](https://ckeditor.com/cke4/addon/tableselection) caret moves to the previous cell after tabbing into the next cell and then removing its content.
+* [#5365](https://github.com/ckeditor/ckeditor4/issues/5365): Fixed: The value of the [`config.baseFloatZIndex`](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-baseFloatZIndex) config variable is incorrectly applied to parent dialog when the child dialog is closed resulting in the dialog overlay covering up the dialog. Thanks to [JenoDK](https://github.com/JenoDK)!
+* [#5305](https://github.com/ckeditor/ckeditor4/issues/5305): Fixed: Anchor name can invalidly include spaces.
+
+## CKEditor 4.20
+
+New Features:
+
+* [#5084](https://github.com/ckeditor/ckeditor4/issues/5084): Added the [`config.tabletools_scopedHeaders`](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-tabletools_scopedHeaders) configuration option controlling the behaviour of table headers with and without the `[scope]` attribute.
+* [#5219](https://github.com/ckeditor/ckeditor4/issues/5219): Added the [`config.image2_defaultLockRatio`](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-image2_defaultLockRatio) configuration option allowing to set the default value of the "Lock ratio" option in the [Enhanced Image](https://ckeditor.com/cke4/addon/image2) dialog.
+* [#2008](https://github.com/ckeditor/ckeditor-dev/pull/2008): Extended the [Mentions](https://ckeditor.com/cke4/addon/mentions) and [Emoji](https://ckeditor.com/cke4/addon/emoji) plugins with a feature option that adds a space after an accepted autocompletion match. See:
+	* [`configDefinition.followingSpace`](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_plugins_mentions_configDefinition.html#property-followingSpace) option for the mentions plugin, and
+	* [`config.emoji_followingSpace`](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-emoji_followingSpace) option for the emoji plugin.
+* [#5215](https://github.com/ckeditor/ckeditor4/issues/5215): Added the [`config.coreStyles_toggleSubSup`](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-coreStyles_toggleSubSup) configuration option which disallows setting the subscript and superscript on the same element simultaneously using UI buttons. This option is turned off by default.
+
+Fixed Issues:
+
+* [#4889](https://github.com/ckeditor/ckeditor4/issues/4889): Fixed: Incorrect position of the [Table Resize](https://ckeditor.com/cke4/addon/tableresize) cursor after scrolling the editor horizontally.
+* [#5319](https://github.com/ckeditor/ckeditor4/issues/5319): Fixed: [Autolink](https://ckeditor.com/cke4/addon/autolink) [`config.autolink_urlRegex`](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-autolink_urlRegex) option produced invalid links when configured directly using the editor instance config. Thanks to [Aigars Zeiza](https://github.com/Zuzon)!
+* [#4941](https://github.com/ckeditor/ckeditor4/issues/4941): Fixed: Some entities got wrongly encoded when using [`entities_processNumerical = true`](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-entities_processNumerical) configuration option.
+* [#4931](https://github.com/ckeditor/ckeditor4/issues/4931): Fixed: Selecting the whole editor content when there is only a list with an empty element at the end inside and deleting it did not delete all list items.
+
+
+API changes:
+
+* [#5122](https://github.com/ckeditor/ckeditor4/issues/5122): Added the ability to provide a list of buttons as an array to the [`config.removeButtons`](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-removeButtons) config variable.
+* [#2008](https://github.com/ckeditor/ckeditor-dev/pull/2008): Added [Autocomplete](https://ckeditor.com/cke4/addon/autocomplete) [`followingSpace`](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_plugins_autocomplete_configDefinition.html#property-followingSpace) option that finishes an accepted match with a space.
+
 ## CKEditor 4.19.1
 
 Fixed Issues:
diff --git a/LICENSE.md b/LICENSE.md
index 9cc0c9bb..ed827e25 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -2,7 +2,7 @@ Software License Agreement
 ==========================
 
 CKEditor - The text editor for Internet - https://ckeditor.com/
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 
 Licensed under the terms of any of the following licenses at your
 choice:
@@ -37,7 +37,7 @@ done by developers outside of CKSource with their express permission.
 
 The following libraries are included in CKEditor under the MIT license (see Appendix D):
 
-* CKSource Samples Framework (included in the samples) - Copyright (c) 2014-2022, CKSource Holding sp. z o.o.
+* CKSource Samples Framework (included in the samples) - Copyright (c) 2014-2023, CKSource Holding sp. z o.o.
 * PicoModal (included in `samples/js/sf.js`) - Copyright (c) 2012 James Frasca.
 * CodeMirror (included in the samples) - Copyright (C) 2014 by Marijn Haverbeke <marijnh@gmail.com> and others.
 * ES6Promise - Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors.
@@ -60,16 +60,16 @@ The following libraries are included in CKEditor under the BSD-3 License (see Ap
 
 The following libraries are included only in the development version of CKEditor under the MIT license (see Appendix D):
 
-* CKBuilder - Copyright (c) 2012-2022, CKSource Holding sp. z o.o.
-* CKLangTool - Copyright (c) 2012-2022, CKSource Holding sp. z o.o.
+* CKBuilder - Copyright (c) 2012-2023, CKSource Holding sp. z o.o.
+* CKLangTool - Copyright (c) 2012-2023, CKSource Holding sp. z o.o.
 * Optimist - Copyright 2010 James Halliday (mail@substack.net).
 * Tmp - Copyright (c) 2014 KARASZI István.
 * Mkdirp - Copyright 2010 James Halliday (mail@substack.net).
-* Bender.js - Copyright (c) 2014-2022, CKSource Holding sp. z o.o.
-* benderjs-coverage - Copyright (c) 2014-2022, CKSource Holding sp. z o.o.
-* benderjs-jquery - Copyright (c) 2014-2022, CKSource Holding sp. z o.o.
-* benderjs-sinon - Copyright (c) 2014-2022, CKSource Holding sp. z o.o.
-* benderjs-yui - Copyright (c) 2014-2022, CKSource Holding sp. z o.o.
+* Bender.js - Copyright (c) 2014-2023, CKSource Holding sp. z o.o.
+* benderjs-coverage - Copyright (c) 2014-2023, CKSource Holding sp. z o.o.
+* benderjs-jquery - Copyright (c) 2014-2023, CKSource Holding sp. z o.o.
+* benderjs-sinon - Copyright (c) 2014-2023, CKSource Holding sp. z o.o.
+* benderjs-yui - Copyright (c) 2014-2023, CKSource Holding sp. z o.o.
 * Grunt - Copyright (c) 2015 "Cowboy" Ben Alman.
 * grunt-contrib-imagemin - Copyright (c) 2014 Sindre Sorhus, contributors.
 * grunt-jscs - Copyright (c) 2014 Gustavo Henke, contributors.
diff --git a/README.md b/README.md
index 61cf39a3..b20fc6e6 100644
--- a/README.md
+++ b/README.md
@@ -93,12 +93,11 @@ Simply clone it to any local directory and you are set.
 This repository contains the following branches:
 
   - **`master`** &ndash; Development of the upcoming minor release.
-  - **`major`** &ndash; Development of the upcoming major release.
   - **`stable`** &ndash; Latest stable release tag point (non-beta).
   - **`latest`** &ndash; Latest release tag point (including betas).
   - **`release/A.B.x`** (e.g. `4.0.x`, `4.1.x`) &ndash; Release freeze, tests and tagging. Hotfixing.
 
-Note that both `master` and `major` are under heavy development. Their code did not pass the release testing phase, though, so it may be unstable.
+Note that the `master` branch is under heavy development. Its code did not pass the release testing phase, though, so it may be unstable.
 
 Additionally, all releases have their respective tags in the following form: `4.4.0`, `4.4.1`, etc.
 
@@ -135,6 +134,6 @@ Use the [CKEditor 4 GitHub issue page](https://github.com/ckeditor/ckeditor4/iss
 
 ### License
 
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 
 For licensing, see LICENSE.md or [https://ckeditor.com/legal/ckeditor-oss-license](https://ckeditor.com/legal/ckeditor-oss-license)
diff --git a/adapters/jquery.js b/adapters/jquery.js
index 83135d93..e24d54ae 100644
--- a/adapters/jquery.js
+++ b/adapters/jquery.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/ckeditor.js b/ckeditor.js
index b4b59cdb..2456a525 100644
--- a/ckeditor.js
+++ b/ckeditor.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/config.js b/config.js
index 42032ad9..2816324e 100644
--- a/config.js
+++ b/config.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/contents.css b/contents.css
index 68cde716..78997c27 100644
--- a/contents.css
+++ b/contents.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/core/_bootstrap.js b/core/_bootstrap.js
index 01b81724..038101f2 100644
--- a/core/_bootstrap.js
+++ b/core/_bootstrap.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/ckeditor.js b/core/ckeditor.js
index 9e6858a3..b2c63693 100644
--- a/core/ckeditor.js
+++ b/core/ckeditor.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/ckeditor_base.js b/core/ckeditor_base.js
index dbec536b..3fe1158f 100644
--- a/core/ckeditor_base.js
+++ b/core/ckeditor_base.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/ckeditor_basic.js b/core/ckeditor_basic.js
index 5f550d8e..e957af89 100644
--- a/core/ckeditor_basic.js
+++ b/core/ckeditor_basic.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/command.js b/core/command.js
index 96e95b95..c1c8b561 100644
--- a/core/command.js
+++ b/core/command.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/commanddefinition.js b/core/commanddefinition.js
index cf3199d0..d123e216 100644
--- a/core/commanddefinition.js
+++ b/core/commanddefinition.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/config.js b/core/config.js
index 15f1b7c0..73db6e7e 100644
--- a/core/config.js
+++ b/core/config.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/creators/inline.js b/core/creators/inline.js
index 1e6f7130..312ab713 100644
--- a/core/creators/inline.js
+++ b/core/creators/inline.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/creators/themedui.js b/core/creators/themedui.js
index ccc18c36..7f8d56b3 100644
--- a/core/creators/themedui.js
+++ b/core/creators/themedui.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dataprocessor.js b/core/dataprocessor.js
index 25c9721e..ee314b97 100644
--- a/core/dataprocessor.js
+++ b/core/dataprocessor.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom.js b/core/dom.js
index e609553f..abe75eb1 100644
--- a/core/dom.js
+++ b/core/dom.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom/comment.js b/core/dom/comment.js
index 8c0adf9e..8de58ac1 100644
--- a/core/dom/comment.js
+++ b/core/dom/comment.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom/document.js b/core/dom/document.js
index 2fabae40..84b497b2 100644
--- a/core/dom/document.js
+++ b/core/dom/document.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom/documentfragment.js b/core/dom/documentfragment.js
index d9fb3d4d..6489671f 100644
--- a/core/dom/documentfragment.js
+++ b/core/dom/documentfragment.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom/domobject.js b/core/dom/domobject.js
index adc01cb6..7229c05e 100644
--- a/core/dom/domobject.js
+++ b/core/dom/domobject.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom/element.js b/core/dom/element.js
index 0b63fce6..d96ba6a2 100644
--- a/core/dom/element.js
+++ b/core/dom/element.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom/elementpath.js b/core/dom/elementpath.js
index 3ee95a68..57015c05 100644
--- a/core/dom/elementpath.js
+++ b/core/dom/elementpath.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom/event.js b/core/dom/event.js
index fa3bda1f..49fd5434 100644
--- a/core/dom/event.js
+++ b/core/dom/event.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom/iterator.js b/core/dom/iterator.js
index b6f22204..f467b80e 100755
--- a/core/dom/iterator.js
+++ b/core/dom/iterator.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom/node.js b/core/dom/node.js
index 587092a7..740aadf9 100644
--- a/core/dom/node.js
+++ b/core/dom/node.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom/nodelist.js b/core/dom/nodelist.js
index 72c8b3b1..d6c1a37b 100644
--- a/core/dom/nodelist.js
+++ b/core/dom/nodelist.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom/range.js b/core/dom/range.js
index 7992d803..5bd983bb 100644
--- a/core/dom/range.js
+++ b/core/dom/range.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom/rangelist.js b/core/dom/rangelist.js
index 6eef2f92..e680d9b9 100644
--- a/core/dom/rangelist.js
+++ b/core/dom/rangelist.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom/rect.js b/core/dom/rect.js
index ff9075ea..bab9ba12 100644
--- a/core/dom/rect.js
+++ b/core/dom/rect.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom/text.js b/core/dom/text.js
index 72ef96be..13239998 100644
--- a/core/dom/text.js
+++ b/core/dom/text.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom/walker.js b/core/dom/walker.js
index dcce2ebc..7c3d196b 100644
--- a/core/dom/walker.js
+++ b/core/dom/walker.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dom/window.js b/core/dom/window.js
index de86fa78..06f8ab2d 100644
--- a/core/dom/window.js
+++ b/core/dom/window.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/dtd.js b/core/dtd.js
index 058d5276..95b1a848 100644
--- a/core/dtd.js
+++ b/core/dtd.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/editable.js b/core/editable.js
index dc7b1fcb..9566b11d 100644
--- a/core/editable.js
+++ b/core/editable.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/editor.js b/core/editor.js
index 1a4844b9..0289814e 100644
--- a/core/editor.js
+++ b/core/editor.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/editor_basic.js b/core/editor_basic.js
index 5ee01804..517e61d6 100644
--- a/core/editor_basic.js
+++ b/core/editor_basic.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/env.js b/core/env.js
index e80a5b1c..1bd7b736 100644
--- a/core/env.js
+++ b/core/env.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/event.js b/core/event.js
index 885943ca..6dc8448f 100644
--- a/core/event.js
+++ b/core/event.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/eventInfo.js b/core/eventInfo.js
index fe06be18..b2f157b5 100644
--- a/core/eventInfo.js
+++ b/core/eventInfo.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/filter.js b/core/filter.js
index 0d2decc2..b0dc9c19 100644
--- a/core/filter.js
+++ b/core/filter.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/focusmanager.js b/core/focusmanager.js
index 7f01b6a4..22f985a3 100644
--- a/core/focusmanager.js
+++ b/core/focusmanager.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/htmldataprocessor.js b/core/htmldataprocessor.js
index c01482c5..ae6b610f 100644
--- a/core/htmldataprocessor.js
+++ b/core/htmldataprocessor.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/htmlparser.js b/core/htmlparser.js
index d42cb3a2..a7465bc1 100644
--- a/core/htmlparser.js
+++ b/core/htmlparser.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/htmlparser/basicwriter.js b/core/htmlparser/basicwriter.js
index 7fe371bf..9d4678c0 100644
--- a/core/htmlparser/basicwriter.js
+++ b/core/htmlparser/basicwriter.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/htmlparser/cdata.js b/core/htmlparser/cdata.js
index e033f281..e8c8a8f6 100644
--- a/core/htmlparser/cdata.js
+++ b/core/htmlparser/cdata.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/htmlparser/comment.js b/core/htmlparser/comment.js
index 0a0dc682..0b0a71b8 100644
--- a/core/htmlparser/comment.js
+++ b/core/htmlparser/comment.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/htmlparser/element.js b/core/htmlparser/element.js
index 3c6f2b56..57f50e9d 100644
--- a/core/htmlparser/element.js
+++ b/core/htmlparser/element.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/htmlparser/filter.js b/core/htmlparser/filter.js
index da7452c9..8d7c44e1 100644
--- a/core/htmlparser/filter.js
+++ b/core/htmlparser/filter.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/htmlparser/filterRulesDefinition.js b/core/htmlparser/filterRulesDefinition.js
index fab3605b..f96d45ba 100644
--- a/core/htmlparser/filterRulesDefinition.js
+++ b/core/htmlparser/filterRulesDefinition.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/htmlparser/fragment.js b/core/htmlparser/fragment.js
index 53f41b4b..ed44f663 100644
--- a/core/htmlparser/fragment.js
+++ b/core/htmlparser/fragment.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/htmlparser/nameTransformRule.js b/core/htmlparser/nameTransformRule.js
index 5a8d7847..d5eced12 100644
--- a/core/htmlparser/nameTransformRule.js
+++ b/core/htmlparser/nameTransformRule.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/htmlparser/node.js b/core/htmlparser/node.js
index 3e16725f..fd658e12 100644
--- a/core/htmlparser/node.js
+++ b/core/htmlparser/node.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/htmlparser/text.js b/core/htmlparser/text.js
index e35c8aaa..3e403de8 100644
--- a/core/htmlparser/text.js
+++ b/core/htmlparser/text.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/keystrokehandler.js b/core/keystrokehandler.js
index c16cbd9e..490d426e 100644
--- a/core/keystrokehandler.js
+++ b/core/keystrokehandler.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/lang.js b/core/lang.js
index 424e8dd0..cdf00fe0 100644
--- a/core/lang.js
+++ b/core/lang.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/loader.js b/core/loader.js
index 83b984a7..1c55d58d 100644
--- a/core/loader.js
+++ b/core/loader.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/log.js b/core/log.js
index 462bd83c..b4fac99b 100644
--- a/core/log.js
+++ b/core/log.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/plugindefinition.js b/core/plugindefinition.js
index fe4bf917..2ebd6a73 100644
--- a/core/plugindefinition.js
+++ b/core/plugindefinition.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/plugins.js b/core/plugins.js
index 81e85538..bf1e44df 100644
--- a/core/plugins.js
+++ b/core/plugins.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/promise.js b/core/promise.js
index 636ff062..48dc7a93 100644
--- a/core/promise.js
+++ b/core/promise.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/resourcemanager.js b/core/resourcemanager.js
index 24770dd1..d87f07ca 100644
--- a/core/resourcemanager.js
+++ b/core/resourcemanager.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/scriptloader.js b/core/scriptloader.js
index f95fbdb3..855c32aa 100644
--- a/core/scriptloader.js
+++ b/core/scriptloader.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/selection.js b/core/selection.js
index ab5755a0..48d5732f 100644
--- a/core/selection.js
+++ b/core/selection.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/selection/optimization.js b/core/selection/optimization.js
index 90876eb2..2052a1f4 100644
--- a/core/selection/optimization.js
+++ b/core/selection/optimization.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -117,7 +117,17 @@
 			return false;
 		}
 
-		if ( range.endOffset === 0 ) {
+		// The endContainer might be a text inside li element (in IE8).
+		var isInList = range.endContainer.is ?
+			range.endContainer.is( 'li' ) :
+			range.endContainer.getParent().is && range.endContainer.getParent().is( 'li' );
+
+		// Prevent optimization in lists (#4931).
+		if ( isInList ) {
+			return false;
+		}
+
+		if ( range.endOffset === 0 )  {
 			return true;
 		}
 
diff --git a/core/skin.js b/core/skin.js
index f32b7a78..e8f51ff2 100644
--- a/core/skin.js
+++ b/core/skin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/style.js b/core/style.js
index 0739dff8..05231b0d 100644
--- a/core/style.js
+++ b/core/style.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/template.js b/core/template.js
index d8ba1739..51ddcf4b 100644
--- a/core/template.js
+++ b/core/template.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/tools.js b/core/tools.js
index bbbf0f77..8f894458 100644
--- a/core/tools.js
+++ b/core/tools.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/tools/color.js b/core/tools/color.js
index 9ea9ea75..28cec55f 100644
--- a/core/tools/color.js
+++ b/core/tools/color.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/core/ui.js b/core/ui.js
index fff04ee8..8028ea32 100644
--- a/core/ui.js
+++ b/core/ui.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/debian/changelog b/debian/changelog
index 3ad847c9..e4c44ce8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,12 +1,13 @@
-ckeditor (4.19.1+dfsg-2) UNRELEASED; urgency=medium
+ckeditor (4.20.2+dfsg-1) UNRELEASED; urgency=medium
 
   * Remove constraints unnecessary since buster:
     + Build-Depends: Drop versioned constraint on ckbuilder.
   * Update lintian override info to new format on line 4-5, 9-10, 15-16, 18-19,
     22-23.
   * Set upstream metadata fields: Repository-Browse, Security-Contact.
+  * New upstream release.
 
- -- Debian Janitor <janitor@jelmer.uk>  Thu, 28 Jul 2022 08:56:18 -0000
+ -- Debian Janitor <janitor@jelmer.uk>  Sat, 25 Feb 2023 07:40:38 -0000
 
 ckeditor (4.19.1+dfsg-1) unstable; urgency=medium
 
diff --git a/debian/patches/0001-build-corrections-skip-debian-dir.patch b/debian/patches/0001-build-corrections-skip-debian-dir.patch
index 8f07af11..e8c4ddc1 100644
--- a/debian/patches/0001-build-corrections-skip-debian-dir.patch
+++ b/debian/patches/0001-build-corrections-skip-debian-dir.patch
@@ -9,8 +9,10 @@ Forwarded: not-needed
  dev/builder/build-config.js | 1 +
  1 file changed, 1 insertion(+)
 
---- a/dev/builder/build-config.js
-+++ b/dev/builder/build-config.js
+Index: ckeditor.git/dev/builder/build-config.js
+===================================================================
+--- ckeditor.git.orig/dev/builder/build-config.js
++++ ckeditor.git/dev/builder/build-config.js
 @@ -8,6 +8,7 @@
  var CKBUILDER_CONFIG = {
  	skin: 'moono-lisa',
diff --git a/debian/patches/0003-Remove-autogenerated-part-of-file.patch b/debian/patches/0003-Remove-autogenerated-part-of-file.patch
index d6b71a94..e328d067 100644
--- a/debian/patches/0003-Remove-autogenerated-part-of-file.patch
+++ b/debian/patches/0003-Remove-autogenerated-part-of-file.patch
@@ -6,8 +6,10 @@ Forwarded: not-needed
 Reviewed-By: Yadd <yadd@debian.org>
 Last-Update: 2022-07-16
 
---- a/ckeditor.js
-+++ b/ckeditor.js
+Index: ckeditor.git/ckeditor.js
+===================================================================
+--- ckeditor.git.orig/ckeditor.js
++++ ckeditor.git/ckeditor.js
 @@ -7,7 +7,7 @@
  /* jshint ignore:start */
  /* jscs:disable */
diff --git a/dev/builder/build-config.js b/dev/builder/build-config.js
index e24de449..edf0f865 100644
--- a/dev/builder/build-config.js
+++ b/dev/builder/build-config.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/dev/builder/build.sh b/dev/builder/build.sh
index 338f0e61..d3a1fb72 100755
--- a/dev/builder/build.sh
+++ b/dev/builder/build.sh
@@ -1,5 +1,5 @@
 #!/usr/bin/env bash
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 # Build CKEditor using the default settings (and build.js).
diff --git a/dev/console/console.css b/dev/console/console.css
index c8973041..01298a64 100644
--- a/dev/console/console.css
+++ b/dev/console/console.css
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/dev/console/console.js b/dev/console/console.js
index 20700517..f7e214f7 100644
--- a/dev/console/console.js
+++ b/dev/console/console.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/dev/console/focusconsole.js b/dev/console/focusconsole.js
index 7d3e448d..0c31380f 100644
--- a/dev/console/focusconsole.js
+++ b/dev/console/focusconsole.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/dev/dtd/dtd.html b/dev/dtd/dtd.html
index 74fc5264..938bddd2 100644
--- a/dev/dtd/dtd.html
+++ b/dev/dtd/dtd.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
diff --git a/dev/getemoji/getemoji.js b/dev/getemoji/getemoji.js
index e485a764..7597379f 100644
--- a/dev/getemoji/getemoji.js
+++ b/dev/getemoji/getemoji.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/dev/iconmaker/iconmaker.js b/dev/iconmaker/iconmaker.js
index 38a7dbda..5cfd4c9c 100755
--- a/dev/iconmaker/iconmaker.js
+++ b/dev/iconmaker/iconmaker.js
@@ -1,7 +1,7 @@
 #!/usr/bin/env node
 
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/dev/iconmaker/lib/main.js b/dev/iconmaker/lib/main.js
index 5af8a519..36796179 100644
--- a/dev/iconmaker/lib/main.js
+++ b/dev/iconmaker/lib/main.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/dev/langtool/_common.sh b/dev/langtool/_common.sh
index 112d58fa..0f67bed1 100755
--- a/dev/langtool/_common.sh
+++ b/dev/langtool/_common.sh
@@ -1,5 +1,5 @@
 #!/bin/bash
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 # Updates cklangtool. This script should not be executed separately, it is included in other scripts.
diff --git a/dev/langtool/export_po_files.sh b/dev/langtool/export_po_files.sh
index 396a5b99..f1f3c1b3 100755
--- a/dev/langtool/export_po_files.sh
+++ b/dev/langtool/export_po_files.sh
@@ -1,5 +1,5 @@
 #!/bin/bash
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 # Export language files to .po (gettext) format.
diff --git a/dev/langtool/fix_plugins.sh b/dev/langtool/fix_plugins.sh
index 1a98691e..e38dc496 100755
--- a/dev/langtool/fix_plugins.sh
+++ b/dev/langtool/fix_plugins.sh
@@ -1,5 +1,5 @@
 #!/bin/bash
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 # Correct plugin definitions and update lang/availableLangs properties based on available language files
diff --git a/dev/langtool/langtool.sh b/dev/langtool/langtool.sh
index c7b53acb..f1575d16 100755
--- a/dev/langtool/langtool.sh
+++ b/dev/langtool/langtool.sh
@@ -1,5 +1,5 @@
 #!/bin/bash
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 # Fix language files by adding missing entries from en.js to other language files.
diff --git a/dev/langtool/meta/ckeditor.core/meta.txt b/dev/langtool/meta/ckeditor.core/meta.txt
index 194bf96a..7b9f4bb0 100644
--- a/dev/langtool/meta/ckeditor.core/meta.txt
+++ b/dev/langtool/meta/ckeditor.core/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 editor = ARIA description for the editor.
diff --git a/dev/langtool/meta/ckeditor.plugin-a11yhelp-dialogs/meta.txt b/dev/langtool/meta/ckeditor.plugin-a11yhelp-dialogs/meta.txt
index e4c2add0..184c4eb3 100644
--- a/dev/langtool/meta/ckeditor.plugin-a11yhelp-dialogs/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-a11yhelp-dialogs/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 title = Label for the Accessibility Instructions dialog window title.
diff --git a/dev/langtool/meta/ckeditor.plugin-about/meta.txt b/dev/langtool/meta/ckeditor.plugin-about/meta.txt
index e565b01c..43898d1f 100644
--- a/dev/langtool/meta/ckeditor.plugin-about/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-about/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 copy = CKEditor copyright note.
diff --git a/dev/langtool/meta/ckeditor.plugin-autoembed/meta.txt b/dev/langtool/meta/ckeditor.plugin-autoembed/meta.txt
index c0265108..7dbda629 100644
--- a/dev/langtool/meta/ckeditor.plugin-autoembed/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-autoembed/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 embeddingInProgress = A progress message displayed to the user to inform that the pasted URL is being embedded.
diff --git a/dev/langtool/meta/ckeditor.plugin-basicstyles/meta.txt b/dev/langtool/meta/ckeditor.plugin-basicstyles/meta.txt
index 8212e104..41c69fa3 100644
--- a/dev/langtool/meta/ckeditor.plugin-basicstyles/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-basicstyles/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 bold = Toolbar button tooltip for the Bold feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-bidi/meta.txt b/dev/langtool/meta/ckeditor.plugin-bidi/meta.txt
index 8342f0df..afdee85e 100644
--- a/dev/langtool/meta/ckeditor.plugin-bidi/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-bidi/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 ltr = Toolbar button tooltip for the Text direction from left to right feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-blockquote/meta.txt b/dev/langtool/meta/ckeditor.plugin-blockquote/meta.txt
index ce363853..00edfa44 100644
--- a/dev/langtool/meta/ckeditor.plugin-blockquote/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-blockquote/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 toolbar = Toolbar button tooltip for the Blockquote feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-clipboard/meta.txt b/dev/langtool/meta/ckeditor.plugin-clipboard/meta.txt
index bc3e4923..6fadfa1a 100644
--- a/dev/langtool/meta/ckeditor.plugin-clipboard/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-clipboard/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 copy = Toolbar button tooltip for the Copy feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-codesnippet/meta.txt b/dev/langtool/meta/ckeditor.plugin-codesnippet/meta.txt
index 8fed7f40..e11e69c1 100644
--- a/dev/langtool/meta/ckeditor.plugin-codesnippet/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-codesnippet/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 button = Toolbar button tooltip for the Code Snippet feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-colorbutton/meta.txt b/dev/langtool/meta/ckeditor.plugin-colorbutton/meta.txt
index 540abdc3..221d08ae 100644
--- a/dev/langtool/meta/ckeditor.plugin-colorbutton/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-colorbutton/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 auto = Label for the Automatic button of the color dialog
diff --git a/dev/langtool/meta/ckeditor.plugin-colordialog/meta.txt b/dev/langtool/meta/ckeditor.plugin-colordialog/meta.txt
index 9000a6a6..9e74d3a2 100644
--- a/dev/langtool/meta/ckeditor.plugin-colordialog/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-colordialog/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 clear = Label for the Clear button of the Colors dialog window.
diff --git a/dev/langtool/meta/ckeditor.plugin-contextmenu/meta.txt b/dev/langtool/meta/ckeditor.plugin-contextmenu/meta.txt
index d8f962e1..afd53da9 100644
--- a/dev/langtool/meta/ckeditor.plugin-contextmenu/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-contextmenu/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 options = WAI-ARIA label for the context menu entries.
diff --git a/dev/langtool/meta/ckeditor.plugin-copyformatting/meta.txt b/dev/langtool/meta/ckeditor.plugin-copyformatting/meta.txt
index 6aec8534..2ccfe041 100644
--- a/dev/langtool/meta/ckeditor.plugin-copyformatting/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-copyformatting/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 label = Toolbar button tooltip for the Copy Formatting feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-devtools/meta.txt b/dev/langtool/meta/ckeditor.plugin-devtools/meta.txt
index 136bbfa6..ae66dc82 100644
--- a/dev/langtool/meta/ckeditor.plugin-devtools/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-devtools/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 title = Label for the Element Information tooltip displayed by the Developer Tools plugin.
diff --git a/dev/langtool/meta/ckeditor.plugin-div/meta.txt b/dev/langtool/meta/ckeditor.plugin-div/meta.txt
index 465e737f..4b6d46f9 100644
--- a/dev/langtool/meta/ckeditor.plugin-div/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-div/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 IdInputLabel = Label for the Id field of the Div Container dialog window.
diff --git a/dev/langtool/meta/ckeditor.plugin-docprops/meta.txt b/dev/langtool/meta/ckeditor.plugin-docprops/meta.txt
index 2bf495cd..befd1a15 100644
--- a/dev/langtool/meta/ckeditor.plugin-docprops/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-docprops/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 bgColor = Label for the Background Color field of the Document Properties plugin dialog window.
diff --git a/dev/langtool/meta/ckeditor.plugin-easyimage/meta.txt b/dev/langtool/meta/ckeditor.plugin-easyimage/meta.txt
index 6cc63aca..05ac8a4f 100644
--- a/dev/langtool/meta/ckeditor.plugin-easyimage/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-easyimage/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 commands.fullImage = Label for the button converting an image to a full width image.
diff --git a/dev/langtool/meta/ckeditor.plugin-elementspath/meta.txt b/dev/langtool/meta/ckeditor.plugin-elementspath/meta.txt
index 5958d04e..29750cf4 100644
--- a/dev/langtool/meta/ckeditor.plugin-elementspath/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-elementspath/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 eleLabel = Voice label for the Elements Path feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-embedbase/meta.txt b/dev/langtool/meta/ckeditor.plugin-embedbase/meta.txt
index 402e6fb7..6e210650 100644
--- a/dev/langtool/meta/ckeditor.plugin-embedbase/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-embedbase/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 pathName = Label displayed in the Elements Path when a media object is selected.
diff --git a/dev/langtool/meta/ckeditor.plugin-emoji/meta.txt b/dev/langtool/meta/ckeditor.plugin-emoji/meta.txt
index 54be786c..ad24a39d 100644
--- a/dev/langtool/meta/ckeditor.plugin-emoji/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-emoji/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or http://ckeditor.com/license
 
 searchPlaceholder = The text displayed inside the emoji dropdown search bar which encourages the user to enter the search query.
diff --git a/dev/langtool/meta/ckeditor.plugin-fakeobjects/meta.txt b/dev/langtool/meta/ckeditor.plugin-fakeobjects/meta.txt
index f78fc901..a67e116d 100644
--- a/dev/langtool/meta/ckeditor.plugin-fakeobjects/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-fakeobjects/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 anchor =
diff --git a/dev/langtool/meta/ckeditor.plugin-filetools/meta.txt b/dev/langtool/meta/ckeditor.plugin-filetools/meta.txt
index ab572877..aacba7f5 100644
--- a/dev/langtool/meta/ckeditor.plugin-filetools/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-filetools/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 loadError = Error message informing the user that an error occurred during file read.
diff --git a/dev/langtool/meta/ckeditor.plugin-find/meta.txt b/dev/langtool/meta/ckeditor.plugin-find/meta.txt
index f45142f1..56c7e610 100644
--- a/dev/langtool/meta/ckeditor.plugin-find/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-find/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 find = Label for the Find tab and Find button of the Find and Replace dialog window.
diff --git a/dev/langtool/meta/ckeditor.plugin-findandreplace/meta.txt b/dev/langtool/meta/ckeditor.plugin-findandreplace/meta.txt
index f45142f1..56c7e610 100644
--- a/dev/langtool/meta/ckeditor.plugin-findandreplace/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-findandreplace/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 find = Label for the Find tab and Find button of the Find and Replace dialog window.
diff --git a/dev/langtool/meta/ckeditor.plugin-font/meta.txt b/dev/langtool/meta/ckeditor.plugin-font/meta.txt
index 418cb4cc..16b3995f 100644
--- a/dev/langtool/meta/ckeditor.plugin-font/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-font/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 fontSize.label = Label for the Font Size drop-down menu.
diff --git a/dev/langtool/meta/ckeditor.plugin-format/meta.txt b/dev/langtool/meta/ckeditor.plugin-format/meta.txt
index 8bcfda82..9af9e7fc 100644
--- a/dev/langtool/meta/ckeditor.plugin-format/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-format/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 label = Label for the Format drop-down menu.
diff --git a/dev/langtool/meta/ckeditor.plugin-forms/meta.txt b/dev/langtool/meta/ckeditor.plugin-forms/meta.txt
index 7b85e995..a4d62144 100644
--- a/dev/langtool/meta/ckeditor.plugin-forms/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-forms/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 button.title = Label for the Button Properties dialog window.
diff --git a/dev/langtool/meta/ckeditor.plugin-horizontalrule/meta.txt b/dev/langtool/meta/ckeditor.plugin-horizontalrule/meta.txt
index 9892c557..e396f5a8 100644
--- a/dev/langtool/meta/ckeditor.plugin-horizontalrule/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-horizontalrule/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 toolbar = Toolbar button tooltip for the Horizontal Rule feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-iframe/meta.txt b/dev/langtool/meta/ckeditor.plugin-iframe/meta.txt
index 29654e4f..5b95db16 100644
--- a/dev/langtool/meta/ckeditor.plugin-iframe/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-iframe/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 border = Label for the Show frame borders option of the IFrame dialog window.
diff --git a/dev/langtool/meta/ckeditor.plugin-image/meta.txt b/dev/langtool/meta/ckeditor.plugin-image/meta.txt
index 5920624e..c9d2880c 100644
--- a/dev/langtool/meta/ckeditor.plugin-image/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-image/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 alt = Label for the Alternative Text field of the Image Properties dialog window.
diff --git a/dev/langtool/meta/ckeditor.plugin-image2/meta.txt b/dev/langtool/meta/ckeditor.plugin-image2/meta.txt
index 052cba46..059e616e 100644
--- a/dev/langtool/meta/ckeditor.plugin-image2/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-image2/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 alt = Label for the Alternative Text field of the Image Properties dialog window.
diff --git a/dev/langtool/meta/ckeditor.plugin-imagebase/meta.txt b/dev/langtool/meta/ckeditor.plugin-imagebase/meta.txt
index adc719d4..779e0970 100644
--- a/dev/langtool/meta/ckeditor.plugin-imagebase/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-imagebase/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 captionPlaceholder = A placeholder shown inside the empty caption of an image.
diff --git a/dev/langtool/meta/ckeditor.plugin-indent/meta.txt b/dev/langtool/meta/ckeditor.plugin-indent/meta.txt
index f25c2fce..cb935d23 100644
--- a/dev/langtool/meta/ckeditor.plugin-indent/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-indent/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 indent = Toolbar button tooltip for the Increase Indent feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-language/meta.txt b/dev/langtool/meta/ckeditor.plugin-language/meta.txt
index 2138c674..ab1694e2 100644
--- a/dev/langtool/meta/ckeditor.plugin-language/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-language/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 button = Toolbar button tooltip for the Language feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-link/meta.txt b/dev/langtool/meta/ckeditor.plugin-link/meta.txt
index 6c32cf8a..a865b793 100644
--- a/dev/langtool/meta/ckeditor.plugin-link/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-link/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 acccessKey = Label for the Access Key field of the Link dialog window.
diff --git a/dev/langtool/meta/ckeditor.plugin-list/meta.txt b/dev/langtool/meta/ckeditor.plugin-list/meta.txt
index 8cd5b947..aa9faac7 100644
--- a/dev/langtool/meta/ckeditor.plugin-list/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-list/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 bulletedlist = Toolbar button tooltip for the Insert/Remove Bulleted List feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-liststyle/meta.txt b/dev/langtool/meta/ckeditor.plugin-liststyle/meta.txt
index 199d801e..662ab283 100644
--- a/dev/langtool/meta/ckeditor.plugin-liststyle/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-liststyle/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 bulletedTitle = Label for the Bulleted List Properties dialog window.
diff --git a/dev/langtool/meta/ckeditor.plugin-magicline/meta.txt b/dev/langtool/meta/ckeditor.plugin-magicline/meta.txt
index cccdd066..abee6c2c 100644
--- a/dev/langtool/meta/ckeditor.plugin-magicline/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-magicline/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 title =
diff --git a/dev/langtool/meta/ckeditor.plugin-mathjax/meta.txt b/dev/langtool/meta/ckeditor.plugin-mathjax/meta.txt
index a8483e8a..77268b49 100644
--- a/dev/langtool/meta/ckeditor.plugin-mathjax/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-mathjax/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 title = Label for the Mathematics dialog window.
diff --git a/dev/langtool/meta/ckeditor.plugin-maximize/meta.txt b/dev/langtool/meta/ckeditor.plugin-maximize/meta.txt
index f7d19ce2..bd954faf 100644
--- a/dev/langtool/meta/ckeditor.plugin-maximize/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-maximize/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 maximize = Toolbar button tooltip for the Maximize feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-newpage/meta.txt b/dev/langtool/meta/ckeditor.plugin-newpage/meta.txt
index 86dfe47f..04f7183e 100644
--- a/dev/langtool/meta/ckeditor.plugin-newpage/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-newpage/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 toolbar = Toolbar button tooltip for the New Page feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-notification/meta.txt b/dev/langtool/meta/ckeditor.plugin-notification/meta.txt
index aaca995f..03cacc1a 100644
--- a/dev/langtool/meta/ckeditor.plugin-notification/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-notification/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 closed = Screen reader message informing the user that the notification was closed.
diff --git a/dev/langtool/meta/ckeditor.plugin-pagebreak/meta.txt b/dev/langtool/meta/ckeditor.plugin-pagebreak/meta.txt
index ba119129..9c81511d 100644
--- a/dev/langtool/meta/ckeditor.plugin-pagebreak/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-pagebreak/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 alt =
diff --git a/dev/langtool/meta/ckeditor.plugin-pastefromword/meta.txt b/dev/langtool/meta/ckeditor.plugin-pastefromword/meta.txt
index 7c79e11a..16f0ee6b 100644
--- a/dev/langtool/meta/ckeditor.plugin-pastefromword/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-pastefromword/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 confirmCleanup = A confirmation message displayed when the pasted text seems to be coming from Word and can be cleaned up.
diff --git a/dev/langtool/meta/ckeditor.plugin-pastetext/meta.txt b/dev/langtool/meta/ckeditor.plugin-pastetext/meta.txt
index e4a6cab1..aa37b41d 100644
--- a/dev/langtool/meta/ckeditor.plugin-pastetext/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-pastetext/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 button = Toolbar button tooltip for the Paste as Plain Text feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-placeholder/meta.txt b/dev/langtool/meta/ckeditor.plugin-placeholder/meta.txt
index 6e13e771..70988549 100644
--- a/dev/langtool/meta/ckeditor.plugin-placeholder/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-placeholder/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 title = Label for the Placeholder dialog window.
diff --git a/dev/langtool/meta/ckeditor.plugin-preview/meta.txt b/dev/langtool/meta/ckeditor.plugin-preview/meta.txt
index bbd883c1..c20bfa0f 100644
--- a/dev/langtool/meta/ckeditor.plugin-preview/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-preview/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 preview = Toolbar button tooltip for the Preview feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-print/meta.txt b/dev/langtool/meta/ckeditor.plugin-print/meta.txt
index c6cb1688..9a462f8d 100644
--- a/dev/langtool/meta/ckeditor.plugin-print/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-print/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 toolbar =
diff --git a/dev/langtool/meta/ckeditor.plugin-removeformat/meta.txt b/dev/langtool/meta/ckeditor.plugin-removeformat/meta.txt
index c40abfe7..8e231576 100644
--- a/dev/langtool/meta/ckeditor.plugin-removeformat/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-removeformat/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 toolbar = Toolbar button tooltip for the Remove Format feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-save/meta.txt b/dev/langtool/meta/ckeditor.plugin-save/meta.txt
index 252e577f..7d2acefd 100644
--- a/dev/langtool/meta/ckeditor.plugin-save/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-save/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 toolbar = Toolbar button tooltip for the Save feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-scayt/meta.txt b/dev/langtool/meta/ckeditor.plugin-scayt/meta.txt
index 7738dfe9..77fe356b 100644
--- a/dev/langtool/meta/ckeditor.plugin-scayt/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-scayt/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 about = Label for the About SCAYT menu option for the SCAYT feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-selectall/meta.txt b/dev/langtool/meta/ckeditor.plugin-selectall/meta.txt
index 7b7144e0..cdf85538 100644
--- a/dev/langtool/meta/ckeditor.plugin-selectall/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-selectall/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 toolbar = Toolbar button tooltip for the Select All feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-showblocks/meta.txt b/dev/langtool/meta/ckeditor.plugin-showblocks/meta.txt
index 578aa4ca..820c72fd 100644
--- a/dev/langtool/meta/ckeditor.plugin-showblocks/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-showblocks/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 toolbar = Toolbar button tooltip for the Show Blocks feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-smiley/meta.txt b/dev/langtool/meta/ckeditor.plugin-smiley/meta.txt
index 96d8e365..81333af6 100644
--- a/dev/langtool/meta/ckeditor.plugin-smiley/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-smiley/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 options = Voice label for the Smiley Options feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-sourcearea/meta.txt b/dev/langtool/meta/ckeditor.plugin-sourcearea/meta.txt
index 8748cb0f..fe9e37c1 100644
--- a/dev/langtool/meta/ckeditor.plugin-sourcearea/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-sourcearea/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 toolbar = Toolbar button tooltip for the Source feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-sourcedialog/meta.txt b/dev/langtool/meta/ckeditor.plugin-sourcedialog/meta.txt
index 7b625d3f..540a774e 100644
--- a/dev/langtool/meta/ckeditor.plugin-sourcedialog/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-sourcedialog/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 toolbar = Toolbar button tooltip for the Source feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-specialchar-dialogs/meta.txt b/dev/langtool/meta/ckeditor.plugin-specialchar-dialogs/meta.txt
index 3c7fb062..a8cac3fe 100644
--- a/dev/langtool/meta/ckeditor.plugin-specialchar-dialogs/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-specialchar-dialogs/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 euro = Tooltip for the euro sign character (€).
diff --git a/dev/langtool/meta/ckeditor.plugin-specialchar/meta.txt b/dev/langtool/meta/ckeditor.plugin-specialchar/meta.txt
index d585b7c2..3ff01d9f 100644
--- a/dev/langtool/meta/ckeditor.plugin-specialchar/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-specialchar/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 options = Voice label for the Special Character Options feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-spellcheck/meta.txt b/dev/langtool/meta/ckeditor.plugin-spellcheck/meta.txt
index 76f64b90..332c406d 100644
--- a/dev/langtool/meta/ckeditor.plugin-spellcheck/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-spellcheck/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 btnIgnore = Label for the Ignore button of the Spell Check dialog window.
diff --git a/dev/langtool/meta/ckeditor.plugin-stylescombo/meta.txt b/dev/langtool/meta/ckeditor.plugin-stylescombo/meta.txt
index ee4c9e58..229ef8ec 100644
--- a/dev/langtool/meta/ckeditor.plugin-stylescombo/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-stylescombo/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 label = Label for the Styles drop-down menu.
diff --git a/dev/langtool/meta/ckeditor.plugin-table/meta.txt b/dev/langtool/meta/ckeditor.plugin-table/meta.txt
index fe1fbf23..dedd7022 100644
--- a/dev/langtool/meta/ckeditor.plugin-table/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-table/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 border = Label for the Border Size field of the Table Properties dialog window.
diff --git a/dev/langtool/meta/ckeditor.plugin-templates/meta.txt b/dev/langtool/meta/ckeditor.plugin-templates/meta.txt
index 5b820a97..18ba52e5 100644
--- a/dev/langtool/meta/ckeditor.plugin-templates/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-templates/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 button = Toolbar button tooltip for the Templates feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-toolbar/meta.txt b/dev/langtool/meta/ckeditor.plugin-toolbar/meta.txt
index fe9c5e8d..b721ddd3 100644
--- a/dev/langtool/meta/ckeditor.plugin-toolbar/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-toolbar/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 toolbarCollapse = Toolbar button tooltip for the Collapse Toolbar feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-uicolor/meta.txt b/dev/langtool/meta/ckeditor.plugin-uicolor/meta.txt
index 68976c37..4103343e 100644
--- a/dev/langtool/meta/ckeditor.plugin-uicolor/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-uicolor/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 title = The UI Color Picker toolbar button tooltip and dialog window title.
diff --git a/dev/langtool/meta/ckeditor.plugin-undo/meta.txt b/dev/langtool/meta/ckeditor.plugin-undo/meta.txt
index 19ee5aa7..a80b1afe 100644
--- a/dev/langtool/meta/ckeditor.plugin-undo/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-undo/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 redo = Toolbar button tooltip for the Redo feature.
diff --git a/dev/langtool/meta/ckeditor.plugin-uploadwidget/meta.txt b/dev/langtool/meta/ckeditor.plugin-uploadwidget/meta.txt
index a841c210..878cadbf 100644
--- a/dev/langtool/meta/ckeditor.plugin-uploadwidget/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-uploadwidget/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 abort = Message informing the user that the upload was aborted.
diff --git a/dev/langtool/meta/ckeditor.plugin-widget/meta.txt b/dev/langtool/meta/ckeditor.plugin-widget/meta.txt
index 5071692b..d4b934cd 100644
--- a/dev/langtool/meta/ckeditor.plugin-widget/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-widget/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 label = Generic template for a label, read by a screen reader once the widget gets focused. %1 sequence is replaced either with a widget path name or it's main element tag name.
diff --git a/dev/langtool/meta/ckeditor.plugin-wsc/meta.txt b/dev/langtool/meta/ckeditor.plugin-wsc/meta.txt
index 26c6817d..548e82e7 100644
--- a/dev/langtool/meta/ckeditor.plugin-wsc/meta.txt
+++ b/dev/langtool/meta/ckeditor.plugin-wsc/meta.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 btnIgnore = Label for the Ignore button of the Spell Check dialog window.
diff --git a/dev/langtool/update_meta_files.sh b/dev/langtool/update_meta_files.sh
index f089793d..268eea2e 100755
--- a/dev/langtool/update_meta_files.sh
+++ b/dev/langtool/update_meta_files.sh
@@ -1,5 +1,5 @@
 #!/bin/bash
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 # Updates meta files, which are used later to export language files to .po (gettext) format.
diff --git a/dev/license/updatelicense.js b/dev/license/updatelicense.js
index f90d5857..b6ecb14b 100755
--- a/dev/license/updatelicense.js
+++ b/dev/license/updatelicense.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -9,8 +9,8 @@ var fs = require( 'fs' ),
 	path = require( 'path' ),
 	execSync = require( 'child_process' ).execSync,
 	dirname = require( 'path' ).dirname,
-	OLD_COMPANY_NAME_REGEXP = /(\[|<a.+?>)?CKSource(\]\(.+?\)|<\/a>)?\s*?(?:-|&ndash;)? Frederico\s+Knabben/gi,
-	NEW_COMPANY_NAME_REPLACEMENT = '$1CKSource$2 Holding sp. z o.o',
+	OLD_COMPANY_NAME_REGEXP = /(\[|<a.+?>)?CKSource(\]\(.+?\)|<\/a>)?\s*?(?:-|&ndash;)? Holding/gi,
+	NEW_COMPANY_NAME_REPLACEMENT = '$1CKSource$2 Holding',
 	YEAR = new Date().getFullYear(),
 	ACCEPTED_FORMATS = [
 		'.css',
@@ -62,7 +62,7 @@ function updateLicenseBanner( filepath ) {
 		return;
 	}
 
-	console.log( 'Updating' + filepath );
+	console.log( 'Updating ' + filepath );
 
 	var data = fs.readFileSync( filepath, 'utf8' ),
 		bannerRegexp = /(Copyright.*\d{4}.*-.*)\d{4}(.*CKSource)/gi,
diff --git a/dev/pastetools/getclipboard.html b/dev/pastetools/getclipboard.html
index 862449e5..69ad75b1 100644
--- a/dev/pastetools/getclipboard.html
+++ b/dev/pastetools/getclipboard.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
diff --git a/dev/samplesvalidator/samplesvalidator.py b/dev/samplesvalidator/samplesvalidator.py
index dfb6f81e..027ecd83 100644
--- a/dev/samplesvalidator/samplesvalidator.py
+++ b/dev/samplesvalidator/samplesvalidator.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 # Validates HTML files in a directory with W3C validator.
diff --git a/dev/tasks/ckeditor-base-replace.js b/dev/tasks/ckeditor-base-replace.js
index 0da11b4e..6ddc15a5 100644
--- a/dev/tasks/ckeditor-base-replace.js
+++ b/dev/tasks/ckeditor-base-replace.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/dev/tasks/plugin.js b/dev/tasks/plugin.js
index bf719851..2fed70eb 100644
--- a/dev/tasks/plugin.js
+++ b/dev/tasks/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/dev/tasks/samples.js b/dev/tasks/samples.js
index 28a7ac79..ec9bbc18 100644
--- a/dev/tasks/samples.js
+++ b/dev/tasks/samples.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/dev/tasks/utils/tools.js b/dev/tasks/utils/tools.js
index 7a3d44ac..558a9f32 100644
--- a/dev/tasks/utils/tools.js
+++ b/dev/tasks/utils/tools.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/dev/travis/build.sh b/dev/travis/build.sh
index df352e07..c46831d3 100644
--- a/dev/travis/build.sh
+++ b/dev/travis/build.sh
@@ -1,5 +1,5 @@
 #!/bin/bash
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 # Build CKEditor on Travis CI for testing.
diff --git a/dev/travis/buildpath.sh b/dev/travis/buildpath.sh
index 5b6cdad5..cb9f5823 100755
--- a/dev/travis/buildpath.sh
+++ b/dev/travis/buildpath.sh
@@ -1,5 +1,5 @@
 #!/bin/bash
-# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 # For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 # Return CKEditor build path.
diff --git a/lang/_translationstatus.txt b/lang/_translationstatus.txt
index 6dca6947..db34d7f0 100644
--- a/lang/_translationstatus.txt
+++ b/lang/_translationstatus.txt
@@ -1,4 +1,4 @@
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 af.js      Found: 62 Missing: 4
diff --git a/lang/af.js b/lang/af.js
index 6fa2e935..d0b2aced 100644
--- a/lang/af.js
+++ b/lang/af.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/ar.js b/lang/ar.js
index 7b05307f..888d05ae 100644
--- a/lang/ar.js
+++ b/lang/ar.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/az.js b/lang/az.js
index 4c51e324..8fd775db 100644
--- a/lang/az.js
+++ b/lang/az.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/bg.js b/lang/bg.js
index fde29add..29c86944 100644
--- a/lang/bg.js
+++ b/lang/bg.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/bn.js b/lang/bn.js
index 705176a2..e1aa45a4 100644
--- a/lang/bn.js
+++ b/lang/bn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/bs.js b/lang/bs.js
index d4a5b493..f3bb0d60 100644
--- a/lang/bs.js
+++ b/lang/bs.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/ca.js b/lang/ca.js
index a72fb013..c7e963fb 100644
--- a/lang/ca.js
+++ b/lang/ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/cs.js b/lang/cs.js
index c651e0f8..0bc1268d 100644
--- a/lang/cs.js
+++ b/lang/cs.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/cy.js b/lang/cy.js
index 9f4684a0..719313cd 100644
--- a/lang/cy.js
+++ b/lang/cy.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/da.js b/lang/da.js
index a279ce46..54ec915f 100644
--- a/lang/da.js
+++ b/lang/da.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/de-ch.js b/lang/de-ch.js
index 69a26dc3..78581543 100644
--- a/lang/de-ch.js
+++ b/lang/de-ch.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/de.js b/lang/de.js
index c691c891..a74835c6 100644
--- a/lang/de.js
+++ b/lang/de.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/el.js b/lang/el.js
index 75abc965..909e6f29 100644
--- a/lang/el.js
+++ b/lang/el.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/en-au.js b/lang/en-au.js
index 1239f844..46c6f3a2 100644
--- a/lang/en-au.js
+++ b/lang/en-au.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -19,8 +19,8 @@
  */
 CKEDITOR.lang[ 'en-au' ] = {
 	// ARIA description.
-	application: 'Rich Text Editor', // MISSING
-	editor: 'Rich Text Editor',
+	application: 'Rich Text Editor',
+	editor: 'Editor',
 	editorPanel: 'Rich Text Editor panel',
 
 	// Common messages and labels.
diff --git a/lang/en-ca.js b/lang/en-ca.js
index 3e01e55f..44901bb2 100644
--- a/lang/en-ca.js
+++ b/lang/en-ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/en-gb.js b/lang/en-gb.js
index 2dfcde35..4b544b74 100644
--- a/lang/en-gb.js
+++ b/lang/en-gb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/en.js b/lang/en.js
index db71fc2e..be96ab6d 100644
--- a/lang/en.js
+++ b/lang/en.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/eo.js b/lang/eo.js
index 4e5523cc..ec30193f 100644
--- a/lang/eo.js
+++ b/lang/eo.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/es-mx.js b/lang/es-mx.js
index 94f88e1d..1a2e6e1a 100644
--- a/lang/es-mx.js
+++ b/lang/es-mx.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/es.js b/lang/es.js
index 76db5556..2948d302 100644
--- a/lang/es.js
+++ b/lang/es.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/et.js b/lang/et.js
index 86264235..82900c7d 100644
--- a/lang/et.js
+++ b/lang/et.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/eu.js b/lang/eu.js
index dc1209d0..e9f592bb 100644
--- a/lang/eu.js
+++ b/lang/eu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/fa.js b/lang/fa.js
index f0f75ca5..7f9f6097 100644
--- a/lang/fa.js
+++ b/lang/fa.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/fi.js b/lang/fi.js
index 31e37f1f..b471e9ad 100644
--- a/lang/fi.js
+++ b/lang/fi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/fo.js b/lang/fo.js
index 0f468d55..b8764288 100644
--- a/lang/fo.js
+++ b/lang/fo.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/fr-ca.js b/lang/fr-ca.js
index 0f56018e..084f8bb6 100644
--- a/lang/fr-ca.js
+++ b/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/fr.js b/lang/fr.js
index d3119f98..9bf6ab77 100644
--- a/lang/fr.js
+++ b/lang/fr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/gl.js b/lang/gl.js
index 9eea31d7..a34727ef 100644
--- a/lang/gl.js
+++ b/lang/gl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/gu.js b/lang/gu.js
index 468168dd..f8cfd317 100644
--- a/lang/gu.js
+++ b/lang/gu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/he.js b/lang/he.js
index 65e23e68..abff3bd6 100644
--- a/lang/he.js
+++ b/lang/he.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/hi.js b/lang/hi.js
index 10f3bedc..8c4c197b 100644
--- a/lang/hi.js
+++ b/lang/hi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/hr.js b/lang/hr.js
index 24203d50..ea8cbaa4 100644
--- a/lang/hr.js
+++ b/lang/hr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/hu.js b/lang/hu.js
index 3f4dd494..0572706b 100644
--- a/lang/hu.js
+++ b/lang/hu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/id.js b/lang/id.js
index c3dc5938..165d38df 100644
--- a/lang/id.js
+++ b/lang/id.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/is.js b/lang/is.js
index 4be3c90e..822598e5 100644
--- a/lang/is.js
+++ b/lang/is.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/it.js b/lang/it.js
index bbc7eb62..b4d5deec 100644
--- a/lang/it.js
+++ b/lang/it.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -19,8 +19,8 @@
  */
 CKEDITOR.lang[ 'it' ] = {
 	// ARIA description.
-	application: 'Rich Text Editor', // MISSING
-	editor: 'Rich Text Editor',
+	application: 'Rich Text Editor',
+	editor: 'Editor',
 	editorPanel: 'Pannello Rich Text Editor',
 
 	// Common messages and labels.
diff --git a/lang/ja.js b/lang/ja.js
index 72381a46..94ca09bf 100644
--- a/lang/ja.js
+++ b/lang/ja.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/ka.js b/lang/ka.js
index b682c056..dbe700cf 100644
--- a/lang/ka.js
+++ b/lang/ka.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/km.js b/lang/km.js
index 7ee2ae12..6be2b763 100644
--- a/lang/km.js
+++ b/lang/km.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/ko.js b/lang/ko.js
index 56a6d056..8d1d5a9e 100644
--- a/lang/ko.js
+++ b/lang/ko.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/ku.js b/lang/ku.js
index c6c33b80..fee70208 100644
--- a/lang/ku.js
+++ b/lang/ku.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/lt.js b/lang/lt.js
index 473ec798..cf0e922a 100644
--- a/lang/lt.js
+++ b/lang/lt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/lv.js b/lang/lv.js
index b52dbbfa..53acb324 100644
--- a/lang/lv.js
+++ b/lang/lv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/mk.js b/lang/mk.js
index 9845cce5..5a7d3f6c 100644
--- a/lang/mk.js
+++ b/lang/mk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/mn.js b/lang/mn.js
index 15dbf7ee..c53ea591 100644
--- a/lang/mn.js
+++ b/lang/mn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/ms.js b/lang/ms.js
index e1cc162b..ffa494f7 100644
--- a/lang/ms.js
+++ b/lang/ms.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/nb.js b/lang/nb.js
index 695453fe..107def29 100644
--- a/lang/nb.js
+++ b/lang/nb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/nl.js b/lang/nl.js
index ebd04a02..69e800c0 100644
--- a/lang/nl.js
+++ b/lang/nl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/no.js b/lang/no.js
index b38ddbe1..44b2c2e9 100644
--- a/lang/no.js
+++ b/lang/no.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/oc.js b/lang/oc.js
index 9767a001..c67078fa 100644
--- a/lang/oc.js
+++ b/lang/oc.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/pl.js b/lang/pl.js
index 4803a3af..32a4b567 100644
--- a/lang/pl.js
+++ b/lang/pl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/pt-br.js b/lang/pt-br.js
index f7fa4c25..50ea671d 100644
--- a/lang/pt-br.js
+++ b/lang/pt-br.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -18,8 +18,8 @@
  */
 CKEDITOR.lang[ 'pt-br' ] = {
 	// ARIA description.
-	application: 'Rich Text Editor', // MISSING
-	editor: 'Editor de Rich Text',
+	application: 'Editor de Rich Text',
+	editor: 'Editor',
 	editorPanel: 'Painel do editor de Rich Text',
 
 	// Common messages and labels.
diff --git a/lang/pt.js b/lang/pt.js
index 731faecd..1af33758 100644
--- a/lang/pt.js
+++ b/lang/pt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/ro.js b/lang/ro.js
index 6537651d..658d7c74 100644
--- a/lang/ro.js
+++ b/lang/ro.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/ru.js b/lang/ru.js
index c9e0e3f0..6679a3a7 100644
--- a/lang/ru.js
+++ b/lang/ru.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/si.js b/lang/si.js
index e8d60417..7ebfbe8d 100644
--- a/lang/si.js
+++ b/lang/si.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/sk.js b/lang/sk.js
index 1262fde7..e53f04ce 100644
--- a/lang/sk.js
+++ b/lang/sk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/sl.js b/lang/sl.js
index 5c16f0a4..ed64c2b6 100644
--- a/lang/sl.js
+++ b/lang/sl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/sq.js b/lang/sq.js
index 90baf334..31a0c398 100644
--- a/lang/sq.js
+++ b/lang/sq.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/sr-latn.js b/lang/sr-latn.js
index a1ebba6f..7b57a9cf 100644
--- a/lang/sr-latn.js
+++ b/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -19,8 +19,8 @@
  */
 CKEDITOR.lang[ 'sr-latn' ] = {
 	// ARIA description.
-	application: 'Rich Text Editor', // MISSING
-	editor: 'Bogati uređivač teksta',
+	application: 'Uređivač bogatog teksta',
+	editor: 'Uređivač ',
 	editorPanel: 'Bogati uređivač panel',
 
 	// Common messages and labels.
diff --git a/lang/sr.js b/lang/sr.js
index 77e8a37f..9848064d 100644
--- a/lang/sr.js
+++ b/lang/sr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -19,8 +19,8 @@
  */
 CKEDITOR.lang[ 'sr' ] = {
 	// ARIA description.
-	application: 'Rich Text Editor', // MISSING
-	editor: 'ХТМЛ уређивач текста',
+	application: 'Уређивач богатог текста',
+	editor: 'Уређивач',
 	editorPanel: 'ХТМЛ уређивач панел',
 
 	// Common messages and labels.
diff --git a/lang/sv.js b/lang/sv.js
index ebe0b6ee..1958ecac 100644
--- a/lang/sv.js
+++ b/lang/sv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/th.js b/lang/th.js
index 29f423ad..890d90aa 100644
--- a/lang/th.js
+++ b/lang/th.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/tr.js b/lang/tr.js
index 06ea8405..fbd53ad3 100644
--- a/lang/tr.js
+++ b/lang/tr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/tt.js b/lang/tt.js
index 4aa10dfe..4fa2f648 100644
--- a/lang/tt.js
+++ b/lang/tt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/ug.js b/lang/ug.js
index 3162cbdc..90538c00 100644
--- a/lang/ug.js
+++ b/lang/ug.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/uk.js b/lang/uk.js
index 5da95efb..646a788f 100644
--- a/lang/uk.js
+++ b/lang/uk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -19,8 +19,8 @@
  */
 CKEDITOR.lang[ 'uk' ] = {
 	// ARIA description.
-	application: 'Rich Text Editor', // MISSING
-	editor: 'Текстовий редактор',
+	application: 'Розширений текстовий редактор',
+	editor: 'Редактор',
 	editorPanel: 'Панель розширеного текстового редактора',
 
 	// Common messages and labels.
diff --git a/lang/vi.js b/lang/vi.js
index a6e02ad9..b4287f60 100644
--- a/lang/vi.js
+++ b/lang/vi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/zh-cn.js b/lang/zh-cn.js
index ce958635..7ed22670 100644
--- a/lang/zh-cn.js
+++ b/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/lang/zh.js b/lang/zh.js
index 4b514814..fa65dd69 100644
--- a/lang/zh.js
+++ b/lang/zh.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/package.json b/package.json
index 517b4a90..4124bbf1 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
 	"name": "ckeditor4-dev",
-	"version": "4.19.1",
+	"version": "4.20.2",
 	"description": "The development version of CKEditor - JavaScript WYSIWYG web text editor.",
 	"devDependencies": {
 		"benderjs": "^0.4.6",
@@ -10,7 +10,7 @@
 		"benderjs-yui": "^0.3.2",
 		"benderjs-yui-beautified": "0.1.2",
 		"cksource-samples-framework": "^1.0.1",
-		"grunt": "^1.5.2",
+		"grunt": "^1.6.1",
 		"grunt-contrib-concat": "^2.1.0",
 		"grunt-contrib-imagemin": "^4.0.0",
 		"grunt-contrib-jshint": "^3.2.0",
@@ -19,11 +19,11 @@
 		"grunt-githooks": "^0.6.0",
 		"grunt-jscs": "^3.0.1",
 		"grunt-jsduck": "^1.0.1",
-		"less": "^4.1.2",
+		"less": "^4.1.3",
 		"lesshat": "^4.1.0",
-		"replace-in-file": "^6.1.0",
+		"replace-in-file": "^6.3.5",
 		"shelljs": "^0.8.5",
-		"uglify-js": "^3.15.4"
+		"uglify-js": "^3.17.4"
 	},
 	"scripts": {
 		"test": "echo \"Error: no test specified\" && exit 1"
diff --git a/plugins/a11yhelp/dialogs/a11yhelp.js b/plugins/a11yhelp/dialogs/a11yhelp.js
index e1d44279..df824b88 100644
--- a/plugins/a11yhelp/dialogs/a11yhelp.js
+++ b/plugins/a11yhelp/dialogs/a11yhelp.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/_translationstatus.txt b/plugins/a11yhelp/dialogs/lang/_translationstatus.txt
index 4d0c9ffa..b3969ff1 100644
--- a/plugins/a11yhelp/dialogs/lang/_translationstatus.txt
+++ b/plugins/a11yhelp/dialogs/lang/_translationstatus.txt
@@ -1,4 +1,4 @@
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 cs.js      Found: 30 Missing: 0
diff --git a/plugins/a11yhelp/dialogs/lang/af.js b/plugins/a11yhelp/dialogs/lang/af.js
index 56b7b79e..9d887240 100644
--- a/plugins/a11yhelp/dialogs/lang/af.js
+++ b/plugins/a11yhelp/dialogs/lang/af.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/ar.js b/plugins/a11yhelp/dialogs/lang/ar.js
index bd1904e0..fcc0d40d 100644
--- a/plugins/a11yhelp/dialogs/lang/ar.js
+++ b/plugins/a11yhelp/dialogs/lang/ar.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/az.js b/plugins/a11yhelp/dialogs/lang/az.js
index ac5dcfac..fccaaa2f 100644
--- a/plugins/a11yhelp/dialogs/lang/az.js
+++ b/plugins/a11yhelp/dialogs/lang/az.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/bg.js b/plugins/a11yhelp/dialogs/lang/bg.js
index 318e087a..96f31e98 100644
--- a/plugins/a11yhelp/dialogs/lang/bg.js
+++ b/plugins/a11yhelp/dialogs/lang/bg.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/ca.js b/plugins/a11yhelp/dialogs/lang/ca.js
index 9fdfc09a..f9a02453 100644
--- a/plugins/a11yhelp/dialogs/lang/ca.js
+++ b/plugins/a11yhelp/dialogs/lang/ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/cs.js b/plugins/a11yhelp/dialogs/lang/cs.js
index b7332757..feab339e 100644
--- a/plugins/a11yhelp/dialogs/lang/cs.js
+++ b/plugins/a11yhelp/dialogs/lang/cs.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/cy.js b/plugins/a11yhelp/dialogs/lang/cy.js
index d4dd198b..24d520bd 100644
--- a/plugins/a11yhelp/dialogs/lang/cy.js
+++ b/plugins/a11yhelp/dialogs/lang/cy.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/da.js b/plugins/a11yhelp/dialogs/lang/da.js
index f6b680e0..d11e59b0 100644
--- a/plugins/a11yhelp/dialogs/lang/da.js
+++ b/plugins/a11yhelp/dialogs/lang/da.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/de-ch.js b/plugins/a11yhelp/dialogs/lang/de-ch.js
index e61594c0..4f43d172 100644
--- a/plugins/a11yhelp/dialogs/lang/de-ch.js
+++ b/plugins/a11yhelp/dialogs/lang/de-ch.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/de.js b/plugins/a11yhelp/dialogs/lang/de.js
index 19ffff7c..84c3f52f 100644
--- a/plugins/a11yhelp/dialogs/lang/de.js
+++ b/plugins/a11yhelp/dialogs/lang/de.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/el.js b/plugins/a11yhelp/dialogs/lang/el.js
index 814b24d5..7750a66c 100644
--- a/plugins/a11yhelp/dialogs/lang/el.js
+++ b/plugins/a11yhelp/dialogs/lang/el.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/en-au.js b/plugins/a11yhelp/dialogs/lang/en-au.js
index 18410e7d..99d7c2b5 100644
--- a/plugins/a11yhelp/dialogs/lang/en-au.js
+++ b/plugins/a11yhelp/dialogs/lang/en-au.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -18,7 +18,7 @@ CKEDITOR.plugins.setLang( 'a11yhelp', 'en-au', {
 			{
 			name: 'Editor Dialog',
 			legend:
-				'Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively.' 
+				'Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively. Press ESC to discard changes and close the dialog. The focus will be moved back to the editing area upon leaving the dialog.'  // MISSING
 		},
 
 			{
diff --git a/plugins/a11yhelp/dialogs/lang/en-gb.js b/plugins/a11yhelp/dialogs/lang/en-gb.js
index aae21ce8..121fe007 100644
--- a/plugins/a11yhelp/dialogs/lang/en-gb.js
+++ b/plugins/a11yhelp/dialogs/lang/en-gb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/en.js b/plugins/a11yhelp/dialogs/lang/en.js
index b75bdd42..c122e3ad 100644
--- a/plugins/a11yhelp/dialogs/lang/en.js
+++ b/plugins/a11yhelp/dialogs/lang/en.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/eo.js b/plugins/a11yhelp/dialogs/lang/eo.js
index cc5c6ef3..88470790 100644
--- a/plugins/a11yhelp/dialogs/lang/eo.js
+++ b/plugins/a11yhelp/dialogs/lang/eo.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/es-mx.js b/plugins/a11yhelp/dialogs/lang/es-mx.js
index 1b728d30..b1a05ac1 100644
--- a/plugins/a11yhelp/dialogs/lang/es-mx.js
+++ b/plugins/a11yhelp/dialogs/lang/es-mx.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/es.js b/plugins/a11yhelp/dialogs/lang/es.js
index c6975221..b9d95041 100644
--- a/plugins/a11yhelp/dialogs/lang/es.js
+++ b/plugins/a11yhelp/dialogs/lang/es.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/et.js b/plugins/a11yhelp/dialogs/lang/et.js
index c89bd766..8e3fc274 100644
--- a/plugins/a11yhelp/dialogs/lang/et.js
+++ b/plugins/a11yhelp/dialogs/lang/et.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/eu.js b/plugins/a11yhelp/dialogs/lang/eu.js
index 234105fa..094442c2 100644
--- a/plugins/a11yhelp/dialogs/lang/eu.js
+++ b/plugins/a11yhelp/dialogs/lang/eu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/fa.js b/plugins/a11yhelp/dialogs/lang/fa.js
index d1e8e11b..a57ed5ff 100644
--- a/plugins/a11yhelp/dialogs/lang/fa.js
+++ b/plugins/a11yhelp/dialogs/lang/fa.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/fi.js b/plugins/a11yhelp/dialogs/lang/fi.js
index 1c7d90dd..57e4086f 100644
--- a/plugins/a11yhelp/dialogs/lang/fi.js
+++ b/plugins/a11yhelp/dialogs/lang/fi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/fo.js b/plugins/a11yhelp/dialogs/lang/fo.js
index a97f5827..670dedc8 100644
--- a/plugins/a11yhelp/dialogs/lang/fo.js
+++ b/plugins/a11yhelp/dialogs/lang/fo.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/fr-ca.js b/plugins/a11yhelp/dialogs/lang/fr-ca.js
index 4f37a679..fcb57153 100644
--- a/plugins/a11yhelp/dialogs/lang/fr-ca.js
+++ b/plugins/a11yhelp/dialogs/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/fr.js b/plugins/a11yhelp/dialogs/lang/fr.js
index 70f1789f..5472a9db 100644
--- a/plugins/a11yhelp/dialogs/lang/fr.js
+++ b/plugins/a11yhelp/dialogs/lang/fr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/gl.js b/plugins/a11yhelp/dialogs/lang/gl.js
index d7f8934e..996fdfd1 100644
--- a/plugins/a11yhelp/dialogs/lang/gl.js
+++ b/plugins/a11yhelp/dialogs/lang/gl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -12,13 +12,13 @@ CKEDITOR.plugins.setLang( 'a11yhelp', 'gl', {
 		items: [
 			{
 			name: 'Barra de ferramentas do editor',
-			legend: 'Prema ${toolbarFocus} para navegar pola barra de ferramentas. Para moverse polos distintos grupos de ferramentas use as teclas TAB e MAIÚS+TAB. Para moverse polas distintas ferramentas use FRECHA DEREITA ou FRECHA ESQUERDA. Prema ESPAZO ou INTRO para activar o botón da barra de ferramentas.'
+			legend: 'Prema ${toolbarFocus} para navegar ata a barra de ferramentas. Movase ao grupo de barras de ferramentas seguinte e anterior con TAB e MAYÚS+TAB. Movase ao botón da barra de ferramentas seguinte e anterior coa frecha cara á dereita ou á esquerda. Prema ESPAZO ou INTRO para activar o botón da barra de ferramentas. O foco moverase de novo á área de edición ao activar o botón da barra de ferramentas.'
 		},
 
 			{
 			name: 'Editor de diálogo',
 			legend:
-				'Dentro do diálogo, prema TAB para navegar cara os seguintes elementos de diálogo, prema MAIÚS+TAB para moverse cara os anteriores elementos de diálogo, prema INTRO para enviar o diálogo, prema ESC para cancelar o diálogo. Cando o diálogo ten múltiples lapelas, a lista de lapelas pode cinguirse con ALT+F10 ou con TAB como parte da orde de lapelas do diálogo. Coa lapela en foco, pode moverse cara a seguinte ou a anterior lapela coas FRECHAS ESQUERDA e DEREICHA respectivamente.' 
+				'Dentro do diálogo, prema TAB para navegar cara os seguintes elementos de diálogo, prema MAIÚS+TAB para moverse cara os anteriores elementos de diálogo, prema INTRO para enviar o diálogo, prema ESC para cancelar o diálogo. Cando o diálogo ten múltiples lapelas, a lista de lapelas pode cinguirse con ALT+F10 ou con TAB como parte da orde de lapelas do diálogo. Coa lapela en foco, pode moverse cara a seguinte ou a anterior lapela coas FRECHAS ESQUERDA e DEREICHA respectivamente. Prema ESC para descartar os cambios e pechar o diálogo. O foco moverase de novo á área de edición ao saír do diálogo.' 
 		},
 
 			{
diff --git a/plugins/a11yhelp/dialogs/lang/gu.js b/plugins/a11yhelp/dialogs/lang/gu.js
index 2b90f2d0..6af58f54 100644
--- a/plugins/a11yhelp/dialogs/lang/gu.js
+++ b/plugins/a11yhelp/dialogs/lang/gu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/he.js b/plugins/a11yhelp/dialogs/lang/he.js
index 9df0f4c0..ec5d67b5 100644
--- a/plugins/a11yhelp/dialogs/lang/he.js
+++ b/plugins/a11yhelp/dialogs/lang/he.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/hi.js b/plugins/a11yhelp/dialogs/lang/hi.js
index e820b924..7c3a07c6 100644
--- a/plugins/a11yhelp/dialogs/lang/hi.js
+++ b/plugins/a11yhelp/dialogs/lang/hi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/hr.js b/plugins/a11yhelp/dialogs/lang/hr.js
index 26a4aeee..be6ce2ef 100644
--- a/plugins/a11yhelp/dialogs/lang/hr.js
+++ b/plugins/a11yhelp/dialogs/lang/hr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/hu.js b/plugins/a11yhelp/dialogs/lang/hu.js
index 3ec7a46b..c4669a20 100644
--- a/plugins/a11yhelp/dialogs/lang/hu.js
+++ b/plugins/a11yhelp/dialogs/lang/hu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/id.js b/plugins/a11yhelp/dialogs/lang/id.js
index 02aa25da..e883d429 100644
--- a/plugins/a11yhelp/dialogs/lang/id.js
+++ b/plugins/a11yhelp/dialogs/lang/id.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/it.js b/plugins/a11yhelp/dialogs/lang/it.js
index 0233a2f2..110bc459 100644
--- a/plugins/a11yhelp/dialogs/lang/it.js
+++ b/plugins/a11yhelp/dialogs/lang/it.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -12,13 +12,13 @@ CKEDITOR.plugins.setLang( 'a11yhelp', 'it', {
 		items: [
 			{
 			name: 'Barra degli strumenti Editor',
-			legend: 'Premere ${toolbarFocus} per passare alla barra degli strumenti. Usare TAB per spostarsi al gruppo successivo, MAIUSC+TAB per spostarsi a quello precedente. Usare FRECCIA DESTRA per spostarsi al pulsante successivo, FRECCIA SINISTRA per spostarsi a quello precedente. Premere SPAZIO o INVIO per attivare il pulsante della barra degli strumenti.'
+			legend: 'Premi ${toolbarFocus} per accedere alla barra degli strumenti. Passa al gruppo di barre degli strumenti successivo o precedente con TAB o MAIUSC+TAB. Passa al pulsante della barra degli strumenti successivo o precedente con FRECCIA DESTRA o FRECCIA SINISTRA. Premi SPAZIO o INVIO per attivare il pulsante della barra degli strumenti. Lo stato attivo verrà riportato all\'area di modifica dopo l\'attivazione del pulsante della barra degli strumenti.'
 		},
 
 			{
 			name: 'Finestra Editor',
 			legend:
-				'All\'interno di una finestra di dialogo, premi TAB per passare all\'elemento della finestra di dialogo successivo, premi MAIUSC+TAB per passare all\'elemento della finestra di dialogo precedente, premi INVIO per inviare la finestra di dialogo, premi ESC per annullare la finestra di dialogo. Quando una finestra di dialogo ha più schede, l\'elenco delle schede può essere raggiunto con ALT+F10 o con TAB come parte dell\'ordine di tabulazione della finestra di dialogo. Mentre l\'elenco delle schede è attivo, passa alla scheda successiva o precedente rispettivamente con FRECCIA DESTRA o SINISTRA. Premi ESC per annullare le modifiche e chiudere la finestra di dialogo. Lo stato attivo verrà spostato nuovamente all\'area di modifica dopo aver lasciato la finestra di dialogo.'
+				'All\'interno di una finestra di dialogo, premi TAB per passare all\'elemento della finestra di dialogo successivo, premi MAIUSC+TAB per passare all\'elemento della finestra di dialogo precedente, premi INVIO per inviare la finestra di dialogo, premi ESC per annullare la finestra di dialogo. Quando una finestra di dialogo ha più schede, l\'elenco delle schede può essere raggiunto con ALT+F10 o con TAB come parte dell\'ordine di tabulazione della finestra di dialogo. Mentre l\'elenco delle schede è attivo, passa alla scheda successiva o precedente rispettivamente con FRECCIA DESTRA o SINISTRA. Premi ESC per annullare le modifiche e chiudere la finestra di dialogo. Lo stato attivo verrà spostato nuovamente all\'area di modifica dopo aver lasciato la finestra di dialogo.' 
 		},
 
 			{
diff --git a/plugins/a11yhelp/dialogs/lang/ja.js b/plugins/a11yhelp/dialogs/lang/ja.js
index 4280c10f..6d9e809b 100644
--- a/plugins/a11yhelp/dialogs/lang/ja.js
+++ b/plugins/a11yhelp/dialogs/lang/ja.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/km.js b/plugins/a11yhelp/dialogs/lang/km.js
index d0b0dc79..4f83a7b9 100644
--- a/plugins/a11yhelp/dialogs/lang/km.js
+++ b/plugins/a11yhelp/dialogs/lang/km.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/ko.js b/plugins/a11yhelp/dialogs/lang/ko.js
index e2067cf2..250a9271 100644
--- a/plugins/a11yhelp/dialogs/lang/ko.js
+++ b/plugins/a11yhelp/dialogs/lang/ko.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/ku.js b/plugins/a11yhelp/dialogs/lang/ku.js
index 1cddeb1f..7023ae4e 100644
--- a/plugins/a11yhelp/dialogs/lang/ku.js
+++ b/plugins/a11yhelp/dialogs/lang/ku.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/lt.js b/plugins/a11yhelp/dialogs/lang/lt.js
index f680e988..72eaeab2 100644
--- a/plugins/a11yhelp/dialogs/lang/lt.js
+++ b/plugins/a11yhelp/dialogs/lang/lt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/lv.js b/plugins/a11yhelp/dialogs/lang/lv.js
index 8cd3d103..3fdef842 100644
--- a/plugins/a11yhelp/dialogs/lang/lv.js
+++ b/plugins/a11yhelp/dialogs/lang/lv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/mk.js b/plugins/a11yhelp/dialogs/lang/mk.js
index b971bb38..d5989e1c 100644
--- a/plugins/a11yhelp/dialogs/lang/mk.js
+++ b/plugins/a11yhelp/dialogs/lang/mk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/mn.js b/plugins/a11yhelp/dialogs/lang/mn.js
index 5309adc4..31f6f4e5 100644
--- a/plugins/a11yhelp/dialogs/lang/mn.js
+++ b/plugins/a11yhelp/dialogs/lang/mn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/nb.js b/plugins/a11yhelp/dialogs/lang/nb.js
index 7166cf04..e7dff23e 100644
--- a/plugins/a11yhelp/dialogs/lang/nb.js
+++ b/plugins/a11yhelp/dialogs/lang/nb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/nl.js b/plugins/a11yhelp/dialogs/lang/nl.js
index 0da640e3..f0cef217 100644
--- a/plugins/a11yhelp/dialogs/lang/nl.js
+++ b/plugins/a11yhelp/dialogs/lang/nl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/no.js b/plugins/a11yhelp/dialogs/lang/no.js
index 77106478..672d2285 100644
--- a/plugins/a11yhelp/dialogs/lang/no.js
+++ b/plugins/a11yhelp/dialogs/lang/no.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/oc.js b/plugins/a11yhelp/dialogs/lang/oc.js
index 1b7b4678..297ac5ba 100644
--- a/plugins/a11yhelp/dialogs/lang/oc.js
+++ b/plugins/a11yhelp/dialogs/lang/oc.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/pl.js b/plugins/a11yhelp/dialogs/lang/pl.js
index e546cf38..cd5b5165 100644
--- a/plugins/a11yhelp/dialogs/lang/pl.js
+++ b/plugins/a11yhelp/dialogs/lang/pl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/pt-br.js b/plugins/a11yhelp/dialogs/lang/pt-br.js
index 760952a3..0a0b94c9 100644
--- a/plugins/a11yhelp/dialogs/lang/pt-br.js
+++ b/plugins/a11yhelp/dialogs/lang/pt-br.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -12,13 +12,13 @@ CKEDITOR.plugins.setLang( 'a11yhelp', 'pt-br', {
 		items: [
 			{
 			name: 'Barra de Ferramentas do Editor',
-			legend: 'Pressione ${toolbarFocus} para navegar para a barra de ferramentas. Mova para o anterior ou próximo grupo de ferramentas com TAB e SHIFT+TAB. Mova para o anterior ou próximo botão com SETA PARA DIREITA or SETA PARA ESQUERDA. Pressione ESPAÇO ou ENTER para ativar o botão da barra de ferramentas.'
+			legend: 'Pressione ${toolbarFocus} para navegar para a barra de ferramentas. mova para a próxima barra de ferramentas ou a anterior com TAB e SHIFT+TAB. mova para o próximo botão ou o anterior com SETA DIREITA or SETA ESQUERDA. Pressione ESPAÇO ou ENTER para ativar o botão da barra de ferramentas. O foco será movido de volta para a área de edição ao ativar o botão da barra de ferramentas.'
 		},
 
 			{
 			name: 'Diálogo do Editor',
 			legend:
-				'Dentro de um diálogo, pressione TAB para navegar para o próximo elemento. Pressione SHIFT+TAB para mover para o elemento anterior. Pressione ENTER ara enviar o diálogo. pressione ESC para cancelar o diálogo. Quando um diálogo tem múltiplas abas, a lista de abas pode ser acessada com ALT+F10 ou TAB, como parte da ordem de tabulação do diálogo. Com a lista de abas em foco, mova para a próxima aba e para a aba anterior com a SETA DIREITA ou SETA ESQUERDA, respectivamente.' 
+				'Dentro de um diálogo, pressione TAB para navegar para o próximo elemento, pressione SHIFT+TAB para mover para o elemento anterior, pressione ENTER para enviar o diálogo, pressione ESC para cancelar o diálogo. Quando um diálogo tem múltiplas abas, a lista de abas pode ser acessada com ALT+F10 ou TAB, como parte da ordem de tabulação do diálogo. Com a lista de abas em foco, mova para a próxima aba e para a aba anterior com a SETA DIREITA ou SETA ESQUERDA, respectivamente. Pressione ESC para descartar as mudanças e fechar o diálogo. O foco irá mover de volta para a área de edição após deixar o diálogo.' 
 		},
 
 			{
diff --git a/plugins/a11yhelp/dialogs/lang/pt.js b/plugins/a11yhelp/dialogs/lang/pt.js
index 4912bda7..84d2fb37 100644
--- a/plugins/a11yhelp/dialogs/lang/pt.js
+++ b/plugins/a11yhelp/dialogs/lang/pt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/ro.js b/plugins/a11yhelp/dialogs/lang/ro.js
index 7bf441b6..321f4085 100644
--- a/plugins/a11yhelp/dialogs/lang/ro.js
+++ b/plugins/a11yhelp/dialogs/lang/ro.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/ru.js b/plugins/a11yhelp/dialogs/lang/ru.js
index 5fe13e70..18a704cc 100644
--- a/plugins/a11yhelp/dialogs/lang/ru.js
+++ b/plugins/a11yhelp/dialogs/lang/ru.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/si.js b/plugins/a11yhelp/dialogs/lang/si.js
index c2e02ea2..c5049b53 100644
--- a/plugins/a11yhelp/dialogs/lang/si.js
+++ b/plugins/a11yhelp/dialogs/lang/si.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/sk.js b/plugins/a11yhelp/dialogs/lang/sk.js
index 88283129..0566137a 100644
--- a/plugins/a11yhelp/dialogs/lang/sk.js
+++ b/plugins/a11yhelp/dialogs/lang/sk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/sl.js b/plugins/a11yhelp/dialogs/lang/sl.js
index 0c5ba544..8ffbb6f0 100644
--- a/plugins/a11yhelp/dialogs/lang/sl.js
+++ b/plugins/a11yhelp/dialogs/lang/sl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/sq.js b/plugins/a11yhelp/dialogs/lang/sq.js
index 982285e8..7940a3aa 100644
--- a/plugins/a11yhelp/dialogs/lang/sq.js
+++ b/plugins/a11yhelp/dialogs/lang/sq.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/sr-latn.js b/plugins/a11yhelp/dialogs/lang/sr-latn.js
index 345dd615..9b2c9af1 100644
--- a/plugins/a11yhelp/dialogs/lang/sr-latn.js
+++ b/plugins/a11yhelp/dialogs/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -12,13 +12,13 @@ CKEDITOR.plugins.setLang( 'a11yhelp', 'sr-latn', {
 		items: [
 			{
 			name: 'Alatke za uređivanje',
-			legend: 'Pritisnite ${toolbarFocus} da bi označili alatke. Do sledeće i prethodne grupe alatki možete doći sa tasterom  TAB i SHIFT+TAB. Do tastera sledeće i predthodne grupe alatki možete doći sa tasterima STRELICA LEVO i STRELICA DESNO. Pritisnite  SPACE ili ENTER da bi aktivirali taster alatki.'
+			legend: 'Pritisnite ${toolbarFocus} da biste prešli na traku sa alatkama. Pređite na sledeću i prethodnu grupu traka sa alatkama pomoću TAB i SHIFT+TAB. Pređite na sledeće i prethodno dugme na traci sa alatkama pomoću STRELICE NADESNO ili STRELICA NALEVO. Pritisnite SPACE ili ENTER da biste aktivirali dugme na traci sa alatkama. Nakon aktiviranja dugmeta na traci sa alatkama, fokus će biti pomeren nazad u oblast za uređivanje.'
 		},
 
 			{
 			name: 'Uređivač dijaloga',
 			legend:
-				'U prozoru dijalog pritisnite TAB da bi došli do sledećeg polja dijaloga, pritisnite ENTER za prihvatanje dijaloga, pritisnite ESC za odbijanje dijaloga. Kada dijalog ima više kartica, do njih možete doći pritiskom na ALT + F10 ili  TAB. Zatim sa TAB ili STRELICA  DESNO dolazite do naredne kartice.' 
+				'Unutar dijaloga pritisnite TAB da pređjete na sledeći element dijaloga, pritisnite SHIFT+TAB da pređjete na prethodni element dijaloga, pritisnite ENTER da pošaljete dijalog, pritisnite ESC da otkažete dijalog. Kada dijalog ima više kartica, do liste kartica se može doći ili sa ALT+F10 ili sa TAB kao deo redosleda tabulatora dijaloga. Sa fokusiranom listom kartica, pređjite na sledeću i prethodnu karticu pomoću STRELICE NADESNO, odnosno NALEVO. Pritisnite ESC da odbacite promene i zatvorite dijalog. Fokus će se vratiti na oblast za uređivanje nakon napuštanja dijaloga.' 
 		},
 
 			{
diff --git a/plugins/a11yhelp/dialogs/lang/sr.js b/plugins/a11yhelp/dialogs/lang/sr.js
index bf2e9803..5c94df52 100644
--- a/plugins/a11yhelp/dialogs/lang/sr.js
+++ b/plugins/a11yhelp/dialogs/lang/sr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -12,13 +12,13 @@ CKEDITOR.plugins.setLang( 'a11yhelp', 'sr', {
 		items: [
 			{
 			name: 'Алатке за преуређиванје',
-			legend: 'Притисните ${toolbarFocus} да би означили алатке. До следеће и претходне групе алатки можете дићи тастером  TAB и SHIFT+TAB. До тастера следеће и претходне групе алатки можете доћи са тастерима СТРЕЛИЦА ЛЕВО и СТРЕЛИЦА ДЕСНО. Притисните СПАЦЕ и ЕНТЕР да би активирали тастер алатки.'
+			legend: 'Притисните ${тоолбарФоцус} да бисте прешли на траку са алаткама. Пређите на следећу и претходну групу трака са алаткама помоћу ТАБ и СХИФТ+ТАБ. Пређите на следеће и претходно дугме на траци са алаткама помоћу СТРЕЛИЦЕ НАДЕСНО или СТРЕЛИЦА НАЛЕВО. Притисните СПАЦЕ или ЕНТЕР да бисте активирали дугме на траци са алаткама. Након активирања дугмета на траци са алаткама, фокус ће бити померен назад у област за уређивање.'
 		},
 
 			{
 			name: 'Уређивач дијалога',
 			legend:
-				'У прозору дијалог притисните ТАБ да би дошли до следећег поља дијалога, притисните ЕНТЕР за прихватање дијалога, притисните ЕСЦ за одбијање дијалога. Када дијалог има више картица, до њих можете доћи притиском на АЛТ+Ф10 или ТАБ. Затим са ТАБ или СТРЕЛИЦА ДЕСНО долазите до наредне картице.' 
+				'Унутар дијалога притисните ТАБ да пређете на следећи елемент дијалога, притисните СХИФТ+ТАБ да пређете на претходни елемент дијалога, притисните ЕНТЕР да пошаљете дијалог, притисните ЕСЦ да откажете дијалог. Када дијалог има више картица, до листе картица се може доћи или са АЛТ+Ф10 или са ТАБ као део редоследа табулатора дијалога. Са фокусираном листом картица, пређите на следећу и претходну картицу помоћу СТРЕЛИЦЕ НАДЕСНО, односно НАЛЕВО. Притисните ЕСЦ да одбаците промене и затворите дијалог. Фокус ће се вратити на област за уређивање након напуштања дијалога.' 
 		},
 
 			{
diff --git a/plugins/a11yhelp/dialogs/lang/sv.js b/plugins/a11yhelp/dialogs/lang/sv.js
index 40356f5d..b7baf97e 100644
--- a/plugins/a11yhelp/dialogs/lang/sv.js
+++ b/plugins/a11yhelp/dialogs/lang/sv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/th.js b/plugins/a11yhelp/dialogs/lang/th.js
index e9006e2c..bd6f9c6c 100644
--- a/plugins/a11yhelp/dialogs/lang/th.js
+++ b/plugins/a11yhelp/dialogs/lang/th.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/tr.js b/plugins/a11yhelp/dialogs/lang/tr.js
index 69aaf7ed..8d53afc9 100644
--- a/plugins/a11yhelp/dialogs/lang/tr.js
+++ b/plugins/a11yhelp/dialogs/lang/tr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/tt.js b/plugins/a11yhelp/dialogs/lang/tt.js
index e2edea81..7e175dd7 100644
--- a/plugins/a11yhelp/dialogs/lang/tt.js
+++ b/plugins/a11yhelp/dialogs/lang/tt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/ug.js b/plugins/a11yhelp/dialogs/lang/ug.js
index aa755990..d1d2a639 100644
--- a/plugins/a11yhelp/dialogs/lang/ug.js
+++ b/plugins/a11yhelp/dialogs/lang/ug.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/uk.js b/plugins/a11yhelp/dialogs/lang/uk.js
index cf7803f3..afd88dc7 100644
--- a/plugins/a11yhelp/dialogs/lang/uk.js
+++ b/plugins/a11yhelp/dialogs/lang/uk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/vi.js b/plugins/a11yhelp/dialogs/lang/vi.js
index 48d286d2..87778e7d 100644
--- a/plugins/a11yhelp/dialogs/lang/vi.js
+++ b/plugins/a11yhelp/dialogs/lang/vi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/zh-cn.js b/plugins/a11yhelp/dialogs/lang/zh-cn.js
index dffe98d3..127af74a 100644
--- a/plugins/a11yhelp/dialogs/lang/zh-cn.js
+++ b/plugins/a11yhelp/dialogs/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/dialogs/lang/zh.js b/plugins/a11yhelp/dialogs/lang/zh.js
index da505ac4..ffbddc1d 100644
--- a/plugins/a11yhelp/dialogs/lang/zh.js
+++ b/plugins/a11yhelp/dialogs/lang/zh.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/a11yhelp/plugin.js b/plugins/a11yhelp/plugin.js
index fff4c410..eac9f7da 100644
--- a/plugins/a11yhelp/plugin.js
+++ b/plugins/a11yhelp/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/about/dialogs/about.js b/plugins/about/dialogs/about.js
index 2d78ad6f..69c4f192 100644
--- a/plugins/about/dialogs/about.js
+++ b/plugins/about/dialogs/about.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/about/lang/af.js b/plugins/about/lang/af.js
index 581b2106..64ad0477 100644
--- a/plugins/about/lang/af.js
+++ b/plugins/about/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'af', {
diff --git a/plugins/about/lang/ar.js b/plugins/about/lang/ar.js
index d033a277..efaaa5a4 100644
--- a/plugins/about/lang/ar.js
+++ b/plugins/about/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'ar', {
diff --git a/plugins/about/lang/az.js b/plugins/about/lang/az.js
index 075627b6..94c07ac7 100644
--- a/plugins/about/lang/az.js
+++ b/plugins/about/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'az', {
diff --git a/plugins/about/lang/bg.js b/plugins/about/lang/bg.js
index 5cc3a289..ced3c04c 100644
--- a/plugins/about/lang/bg.js
+++ b/plugins/about/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'bg', {
diff --git a/plugins/about/lang/bn.js b/plugins/about/lang/bn.js
index 6db72007..e1e52495 100644
--- a/plugins/about/lang/bn.js
+++ b/plugins/about/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'bn', {
diff --git a/plugins/about/lang/bs.js b/plugins/about/lang/bs.js
index 7047d724..df1d3f40 100644
--- a/plugins/about/lang/bs.js
+++ b/plugins/about/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'bs', {
diff --git a/plugins/about/lang/ca.js b/plugins/about/lang/ca.js
index 3fcd43e2..a75bc7de 100644
--- a/plugins/about/lang/ca.js
+++ b/plugins/about/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'ca', {
diff --git a/plugins/about/lang/cs.js b/plugins/about/lang/cs.js
index 0d3eed68..a1e03d93 100644
--- a/plugins/about/lang/cs.js
+++ b/plugins/about/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'cs', {
diff --git a/plugins/about/lang/cy.js b/plugins/about/lang/cy.js
index 86062fa9..ccf6e36d 100644
--- a/plugins/about/lang/cy.js
+++ b/plugins/about/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'cy', {
diff --git a/plugins/about/lang/da.js b/plugins/about/lang/da.js
index 569f21f0..4ea69629 100644
--- a/plugins/about/lang/da.js
+++ b/plugins/about/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'da', {
diff --git a/plugins/about/lang/de-ch.js b/plugins/about/lang/de-ch.js
index 34c00f81..e4f09f0a 100644
--- a/plugins/about/lang/de-ch.js
+++ b/plugins/about/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'de-ch', {
diff --git a/plugins/about/lang/de.js b/plugins/about/lang/de.js
index 124a8ba5..34a97471 100644
--- a/plugins/about/lang/de.js
+++ b/plugins/about/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'de', {
diff --git a/plugins/about/lang/el.js b/plugins/about/lang/el.js
index 9d62eca0..c0abedb1 100644
--- a/plugins/about/lang/el.js
+++ b/plugins/about/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'el', {
diff --git a/plugins/about/lang/en-au.js b/plugins/about/lang/en-au.js
index 01e5e5c9..0bbcd341 100644
--- a/plugins/about/lang/en-au.js
+++ b/plugins/about/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'en-au', {
diff --git a/plugins/about/lang/en-ca.js b/plugins/about/lang/en-ca.js
index e81cf9d9..91782358 100644
--- a/plugins/about/lang/en-ca.js
+++ b/plugins/about/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'en-ca', {
diff --git a/plugins/about/lang/en-gb.js b/plugins/about/lang/en-gb.js
index 3b195c16..2061c9dd 100644
--- a/plugins/about/lang/en-gb.js
+++ b/plugins/about/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'en-gb', {
diff --git a/plugins/about/lang/en.js b/plugins/about/lang/en.js
index 733efd32..52574a12 100644
--- a/plugins/about/lang/en.js
+++ b/plugins/about/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'en', {
diff --git a/plugins/about/lang/eo.js b/plugins/about/lang/eo.js
index e4b7a7e5..24171222 100644
--- a/plugins/about/lang/eo.js
+++ b/plugins/about/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'eo', {
diff --git a/plugins/about/lang/es-mx.js b/plugins/about/lang/es-mx.js
index 3ba57409..7e5eddce 100644
--- a/plugins/about/lang/es-mx.js
+++ b/plugins/about/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'es-mx', {
diff --git a/plugins/about/lang/es.js b/plugins/about/lang/es.js
index 312b5872..1f44e241 100644
--- a/plugins/about/lang/es.js
+++ b/plugins/about/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'es', {
diff --git a/plugins/about/lang/et.js b/plugins/about/lang/et.js
index f1870833..307ca0cb 100644
--- a/plugins/about/lang/et.js
+++ b/plugins/about/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'et', {
diff --git a/plugins/about/lang/eu.js b/plugins/about/lang/eu.js
index f03ab96a..e4bb623d 100644
--- a/plugins/about/lang/eu.js
+++ b/plugins/about/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'eu', {
diff --git a/plugins/about/lang/fa.js b/plugins/about/lang/fa.js
index 69546d22..610ea9a3 100644
--- a/plugins/about/lang/fa.js
+++ b/plugins/about/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'fa', {
diff --git a/plugins/about/lang/fi.js b/plugins/about/lang/fi.js
index ec1d6a7d..32b32bc7 100644
--- a/plugins/about/lang/fi.js
+++ b/plugins/about/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'fi', {
diff --git a/plugins/about/lang/fo.js b/plugins/about/lang/fo.js
index 7c88142e..26ac7f44 100644
--- a/plugins/about/lang/fo.js
+++ b/plugins/about/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'fo', {
diff --git a/plugins/about/lang/fr-ca.js b/plugins/about/lang/fr-ca.js
index 541ff25f..a7b9146f 100644
--- a/plugins/about/lang/fr-ca.js
+++ b/plugins/about/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'fr-ca', {
diff --git a/plugins/about/lang/fr.js b/plugins/about/lang/fr.js
index 00c4611d..cf22336e 100644
--- a/plugins/about/lang/fr.js
+++ b/plugins/about/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'fr', {
diff --git a/plugins/about/lang/gl.js b/plugins/about/lang/gl.js
index 408c2f3a..d00ed51a 100644
--- a/plugins/about/lang/gl.js
+++ b/plugins/about/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'gl', {
diff --git a/plugins/about/lang/gu.js b/plugins/about/lang/gu.js
index d5cbadcc..aa29c229 100644
--- a/plugins/about/lang/gu.js
+++ b/plugins/about/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'gu', {
diff --git a/plugins/about/lang/he.js b/plugins/about/lang/he.js
index 053decdc..d3648c56 100644
--- a/plugins/about/lang/he.js
+++ b/plugins/about/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'he', {
diff --git a/plugins/about/lang/hi.js b/plugins/about/lang/hi.js
index 969973f8..eb48fe82 100644
--- a/plugins/about/lang/hi.js
+++ b/plugins/about/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'hi', {
diff --git a/plugins/about/lang/hr.js b/plugins/about/lang/hr.js
index 1a8dc0e5..f058d593 100644
--- a/plugins/about/lang/hr.js
+++ b/plugins/about/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'hr', {
diff --git a/plugins/about/lang/hu.js b/plugins/about/lang/hu.js
index 23216740..d7254601 100644
--- a/plugins/about/lang/hu.js
+++ b/plugins/about/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'hu', {
diff --git a/plugins/about/lang/id.js b/plugins/about/lang/id.js
index f1e2498e..ccce9bd4 100644
--- a/plugins/about/lang/id.js
+++ b/plugins/about/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'id', {
diff --git a/plugins/about/lang/is.js b/plugins/about/lang/is.js
index c62a402b..2240b489 100644
--- a/plugins/about/lang/is.js
+++ b/plugins/about/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'is', {
diff --git a/plugins/about/lang/it.js b/plugins/about/lang/it.js
index d69b225e..48f98502 100644
--- a/plugins/about/lang/it.js
+++ b/plugins/about/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'it', {
diff --git a/plugins/about/lang/ja.js b/plugins/about/lang/ja.js
index 51da6b92..e1a3e86d 100644
--- a/plugins/about/lang/ja.js
+++ b/plugins/about/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'ja', {
diff --git a/plugins/about/lang/ka.js b/plugins/about/lang/ka.js
index b02418c3..1aa148a5 100644
--- a/plugins/about/lang/ka.js
+++ b/plugins/about/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'ka', {
diff --git a/plugins/about/lang/km.js b/plugins/about/lang/km.js
index c955d3f2..a7a85e19 100644
--- a/plugins/about/lang/km.js
+++ b/plugins/about/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'km', {
diff --git a/plugins/about/lang/ko.js b/plugins/about/lang/ko.js
index 734f83c9..3f5abc77 100644
--- a/plugins/about/lang/ko.js
+++ b/plugins/about/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'ko', {
diff --git a/plugins/about/lang/ku.js b/plugins/about/lang/ku.js
index ec31014f..21b73a3f 100644
--- a/plugins/about/lang/ku.js
+++ b/plugins/about/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'ku', {
diff --git a/plugins/about/lang/lt.js b/plugins/about/lang/lt.js
index 72d8b7d7..6fe2a288 100644
--- a/plugins/about/lang/lt.js
+++ b/plugins/about/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'lt', {
diff --git a/plugins/about/lang/lv.js b/plugins/about/lang/lv.js
index 5475a756..165eab9d 100644
--- a/plugins/about/lang/lv.js
+++ b/plugins/about/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'lv', {
diff --git a/plugins/about/lang/mk.js b/plugins/about/lang/mk.js
index cef77185..e8cdec26 100644
--- a/plugins/about/lang/mk.js
+++ b/plugins/about/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'mk', {
diff --git a/plugins/about/lang/mn.js b/plugins/about/lang/mn.js
index 69ca1ff3..6cdb481a 100644
--- a/plugins/about/lang/mn.js
+++ b/plugins/about/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'mn', {
diff --git a/plugins/about/lang/ms.js b/plugins/about/lang/ms.js
index 3cba6b20..9210b0e7 100644
--- a/plugins/about/lang/ms.js
+++ b/plugins/about/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'ms', {
diff --git a/plugins/about/lang/nb.js b/plugins/about/lang/nb.js
index dd7bdb36..2de0d30a 100644
--- a/plugins/about/lang/nb.js
+++ b/plugins/about/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'nb', {
diff --git a/plugins/about/lang/nl.js b/plugins/about/lang/nl.js
index 1c40a062..abb52653 100644
--- a/plugins/about/lang/nl.js
+++ b/plugins/about/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'nl', {
diff --git a/plugins/about/lang/no.js b/plugins/about/lang/no.js
index 4686a294..dc5acacb 100644
--- a/plugins/about/lang/no.js
+++ b/plugins/about/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'no', {
diff --git a/plugins/about/lang/oc.js b/plugins/about/lang/oc.js
index cce7151e..c7aee9ba 100644
--- a/plugins/about/lang/oc.js
+++ b/plugins/about/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'oc', {
diff --git a/plugins/about/lang/pl.js b/plugins/about/lang/pl.js
index be983f08..2dd6eb85 100644
--- a/plugins/about/lang/pl.js
+++ b/plugins/about/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'pl', {
diff --git a/plugins/about/lang/pt-br.js b/plugins/about/lang/pt-br.js
index 529b8950..c5c075a6 100644
--- a/plugins/about/lang/pt-br.js
+++ b/plugins/about/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'pt-br', {
diff --git a/plugins/about/lang/pt.js b/plugins/about/lang/pt.js
index 48ec94a1..2753ebe9 100644
--- a/plugins/about/lang/pt.js
+++ b/plugins/about/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'pt', {
diff --git a/plugins/about/lang/ro.js b/plugins/about/lang/ro.js
index 56291c32..00a03a97 100644
--- a/plugins/about/lang/ro.js
+++ b/plugins/about/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'ro', {
diff --git a/plugins/about/lang/ru.js b/plugins/about/lang/ru.js
index a1905414..d486d57f 100644
--- a/plugins/about/lang/ru.js
+++ b/plugins/about/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'ru', {
diff --git a/plugins/about/lang/si.js b/plugins/about/lang/si.js
index 24d3d770..714b6def 100644
--- a/plugins/about/lang/si.js
+++ b/plugins/about/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'si', {
diff --git a/plugins/about/lang/sk.js b/plugins/about/lang/sk.js
index ff6edb7b..943fb291 100644
--- a/plugins/about/lang/sk.js
+++ b/plugins/about/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'sk', {
diff --git a/plugins/about/lang/sl.js b/plugins/about/lang/sl.js
index 0fed78bf..664b5547 100644
--- a/plugins/about/lang/sl.js
+++ b/plugins/about/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'sl', {
diff --git a/plugins/about/lang/sq.js b/plugins/about/lang/sq.js
index 4fb69558..7944e190 100644
--- a/plugins/about/lang/sq.js
+++ b/plugins/about/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'sq', {
diff --git a/plugins/about/lang/sr-latn.js b/plugins/about/lang/sr-latn.js
index 5b23c50a..f4fe6674 100644
--- a/plugins/about/lang/sr-latn.js
+++ b/plugins/about/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'sr-latn', {
diff --git a/plugins/about/lang/sr.js b/plugins/about/lang/sr.js
index 19c43091..d06bd801 100644
--- a/plugins/about/lang/sr.js
+++ b/plugins/about/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'sr', {
diff --git a/plugins/about/lang/sv.js b/plugins/about/lang/sv.js
index 8b18d44e..3bfd0321 100644
--- a/plugins/about/lang/sv.js
+++ b/plugins/about/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'sv', {
diff --git a/plugins/about/lang/th.js b/plugins/about/lang/th.js
index 4b24fd9b..dc282212 100644
--- a/plugins/about/lang/th.js
+++ b/plugins/about/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'th', {
diff --git a/plugins/about/lang/tr.js b/plugins/about/lang/tr.js
index 4c5488f7..2993f80e 100644
--- a/plugins/about/lang/tr.js
+++ b/plugins/about/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'tr', {
diff --git a/plugins/about/lang/tt.js b/plugins/about/lang/tt.js
index 5bd40c1f..4b20832e 100644
--- a/plugins/about/lang/tt.js
+++ b/plugins/about/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'tt', {
diff --git a/plugins/about/lang/ug.js b/plugins/about/lang/ug.js
index 2767368e..6960c5e2 100644
--- a/plugins/about/lang/ug.js
+++ b/plugins/about/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'ug', {
diff --git a/plugins/about/lang/uk.js b/plugins/about/lang/uk.js
index 300a1706..58419de6 100644
--- a/plugins/about/lang/uk.js
+++ b/plugins/about/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'uk', {
diff --git a/plugins/about/lang/vi.js b/plugins/about/lang/vi.js
index e169d36e..65218cdf 100644
--- a/plugins/about/lang/vi.js
+++ b/plugins/about/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'vi', {
diff --git a/plugins/about/lang/zh-cn.js b/plugins/about/lang/zh-cn.js
index 99631e25..b7cb0e69 100644
--- a/plugins/about/lang/zh-cn.js
+++ b/plugins/about/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'zh-cn', {
diff --git a/plugins/about/lang/zh.js b/plugins/about/lang/zh.js
index e7fe6c54..4a709caa 100644
--- a/plugins/about/lang/zh.js
+++ b/plugins/about/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'about', 'zh', {
diff --git a/plugins/about/plugin.js b/plugins/about/plugin.js
index 2a748e1a..1404eafd 100644
--- a/plugins/about/plugin.js
+++ b/plugins/about/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/adobeair/plugin.js b/plugins/adobeair/plugin.js
index 2a1a310b..20415481 100644
--- a/plugins/adobeair/plugin.js
+++ b/plugins/adobeair/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/ajax/plugin.js b/plugins/ajax/plugin.js
index 33ffdde0..13b886e7 100644
--- a/plugins/ajax/plugin.js
+++ b/plugins/ajax/plugin.js
@@ -1,6 +1,6 @@
 /* global ActiveXObject */
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/autocomplete/plugin.js b/plugins/autocomplete/plugin.js
index 8ca79011..50d8134a 100644
--- a/plugins/autocomplete/plugin.js
+++ b/plugins/autocomplete/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -174,6 +174,15 @@
 		 */
 		this.throttle = config.throttle !== undefined ? config.throttle : 20;
 
+		/**
+		 * Indicates if a following space should be added after inserted match into an editor.
+		 *
+		 * @since 4.20.0
+		 * @readonly
+		 * @property {Boolean} [followingSpace]
+		 */
+		this.followingSpace = config.followingSpace;
+
 		/**
 		 * The autocomplete view instance.
 		 *
@@ -424,11 +433,20 @@
 			}
 
 			var item = this.model.getItemById( itemId ),
-				editor = this.editor;
+				editor = this.editor,
+				html = this.getHtmlToInsert( item );
+
+			// Insert space after accepting match (#2008).
+			html += this.followingSpace ? '&nbsp;' : '';
 
 			editor.fire( 'saveSnapshot' );
 			editor.getSelection().selectRanges( [ this.model.range ] );
-			editor.insertHtml( this.getHtmlToInsert( item ), 'text' );
+			editor.insertHtml( html, 'text' );
+
+			if ( this.followingSpace ) {
+				removeLeadingSpace( editor );
+			}
+
 			editor.fire( 'saveSnapshot' );
 		},
 
@@ -1517,6 +1535,21 @@
 		}, {} );
 	}
 
+	function removeLeadingSpace( editor ) {
+		var selection = editor.getSelection(),
+			nextNode = selection.getRanges()[ 0 ].getNextNode( function( node ) {
+				return Boolean( node.type == CKEDITOR.NODE_TEXT && node.getText() );
+			} );
+
+		if ( nextNode && nextNode.getText().match( /^\s+/ ) ) {
+			var range = editor.createRange();
+
+			range.setStart( nextNode, 0 );
+			range.setEnd( nextNode, 1 );
+			range.deleteContents();
+		}
+	}
+
 	/**
 	 * Abstract class describing the definition of the [Autocomplete](https://ckeditor.com/cke4/addon/autocomplete) plugin configuration.
 	 *
@@ -1626,6 +1659,12 @@
 	 * @property {String} [outputTemplate]
 	 */
 
+	/**
+	 * @inheritdoc CKEDITOR.plugins.autocomplete#followingSpace
+	 * @since 4.20.0
+	 * @property {Boolean} [followingSpace]
+	 */
+
 	/**
 	 * Abstract class describing a set of properties that can be used to produce more adequate suggestion data based on the matched query.
 	 *
diff --git a/plugins/autocomplete/skins/default.css b/plugins/autocomplete/skins/default.css
index 2bbd9c80..a8fd236b 100644
--- a/plugins/autocomplete/skins/default.css
+++ b/plugins/autocomplete/skins/default.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/autoembed/lang/ar.js b/plugins/autoembed/lang/ar.js
index 7adb8244..5613fb11 100644
--- a/plugins/autoembed/lang/ar.js
+++ b/plugins/autoembed/lang/ar.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'ar', {
diff --git a/plugins/autoembed/lang/az.js b/plugins/autoembed/lang/az.js
index d36beddd..6a69e0b2 100644
--- a/plugins/autoembed/lang/az.js
+++ b/plugins/autoembed/lang/az.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'az', {
diff --git a/plugins/autoembed/lang/bg.js b/plugins/autoembed/lang/bg.js
index 514c64df..13f8f56f 100644
--- a/plugins/autoembed/lang/bg.js
+++ b/plugins/autoembed/lang/bg.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'bg', {
diff --git a/plugins/autoembed/lang/ca.js b/plugins/autoembed/lang/ca.js
index 4d5e69a3..8892c514 100644
--- a/plugins/autoembed/lang/ca.js
+++ b/plugins/autoembed/lang/ca.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'ca', {
diff --git a/plugins/autoembed/lang/cs.js b/plugins/autoembed/lang/cs.js
index 07f22644..f2e78fbd 100644
--- a/plugins/autoembed/lang/cs.js
+++ b/plugins/autoembed/lang/cs.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'cs', {
diff --git a/plugins/autoembed/lang/da.js b/plugins/autoembed/lang/da.js
index 7e656061..ad06fb69 100644
--- a/plugins/autoembed/lang/da.js
+++ b/plugins/autoembed/lang/da.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'da', {
diff --git a/plugins/autoembed/lang/de-ch.js b/plugins/autoembed/lang/de-ch.js
index 8a9fc770..710940cc 100644
--- a/plugins/autoembed/lang/de-ch.js
+++ b/plugins/autoembed/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'de-ch', {
diff --git a/plugins/autoembed/lang/de.js b/plugins/autoembed/lang/de.js
index ba678850..ba71d228 100644
--- a/plugins/autoembed/lang/de.js
+++ b/plugins/autoembed/lang/de.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'de', {
diff --git a/plugins/autoembed/lang/el.js b/plugins/autoembed/lang/el.js
index 7623d1b1..c6f768af 100644
--- a/plugins/autoembed/lang/el.js
+++ b/plugins/autoembed/lang/el.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'el', {
diff --git a/plugins/autoembed/lang/en-au.js b/plugins/autoembed/lang/en-au.js
index 8c23527b..4f590653 100644
--- a/plugins/autoembed/lang/en-au.js
+++ b/plugins/autoembed/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'en-au', {
diff --git a/plugins/autoembed/lang/en.js b/plugins/autoembed/lang/en.js
index baa146f9..4fc6c692 100644
--- a/plugins/autoembed/lang/en.js
+++ b/plugins/autoembed/lang/en.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'en', {
diff --git a/plugins/autoembed/lang/eo.js b/plugins/autoembed/lang/eo.js
index 68a8fde1..fbf4b1fd 100644
--- a/plugins/autoembed/lang/eo.js
+++ b/plugins/autoembed/lang/eo.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'eo', {
diff --git a/plugins/autoembed/lang/es-mx.js b/plugins/autoembed/lang/es-mx.js
index 7bc92028..8885f2fd 100644
--- a/plugins/autoembed/lang/es-mx.js
+++ b/plugins/autoembed/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'es-mx', {
diff --git a/plugins/autoembed/lang/es.js b/plugins/autoembed/lang/es.js
index 7e41ddcd..7cf2e398 100644
--- a/plugins/autoembed/lang/es.js
+++ b/plugins/autoembed/lang/es.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'es', {
diff --git a/plugins/autoembed/lang/et.js b/plugins/autoembed/lang/et.js
index 5e3030f5..8c5ba546 100644
--- a/plugins/autoembed/lang/et.js
+++ b/plugins/autoembed/lang/et.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'et', {
diff --git a/plugins/autoembed/lang/eu.js b/plugins/autoembed/lang/eu.js
index 113a55a7..9997af64 100644
--- a/plugins/autoembed/lang/eu.js
+++ b/plugins/autoembed/lang/eu.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'eu', {
diff --git a/plugins/autoembed/lang/fa.js b/plugins/autoembed/lang/fa.js
index a2886979..bd4f8e91 100644
--- a/plugins/autoembed/lang/fa.js
+++ b/plugins/autoembed/lang/fa.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'fa', {
diff --git a/plugins/autoembed/lang/fr.js b/plugins/autoembed/lang/fr.js
index 09821626..c91532f0 100644
--- a/plugins/autoembed/lang/fr.js
+++ b/plugins/autoembed/lang/fr.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'fr', {
diff --git a/plugins/autoembed/lang/gl.js b/plugins/autoembed/lang/gl.js
index 692be96f..9199b680 100644
--- a/plugins/autoembed/lang/gl.js
+++ b/plugins/autoembed/lang/gl.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'gl', {
diff --git a/plugins/autoembed/lang/hr.js b/plugins/autoembed/lang/hr.js
index fbaba4a9..d2e29da9 100644
--- a/plugins/autoembed/lang/hr.js
+++ b/plugins/autoembed/lang/hr.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'hr', {
diff --git a/plugins/autoembed/lang/hu.js b/plugins/autoembed/lang/hu.js
index 71ecfa7b..1984254d 100644
--- a/plugins/autoembed/lang/hu.js
+++ b/plugins/autoembed/lang/hu.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'hu', {
diff --git a/plugins/autoembed/lang/id.js b/plugins/autoembed/lang/id.js
index 197c5c50..0f047edd 100644
--- a/plugins/autoembed/lang/id.js
+++ b/plugins/autoembed/lang/id.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'id', {
diff --git a/plugins/autoembed/lang/it.js b/plugins/autoembed/lang/it.js
index 08eb45fd..47574f0c 100644
--- a/plugins/autoembed/lang/it.js
+++ b/plugins/autoembed/lang/it.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'it', {
diff --git a/plugins/autoembed/lang/ja.js b/plugins/autoembed/lang/ja.js
index c0c53d8c..4ca5bbe7 100644
--- a/plugins/autoembed/lang/ja.js
+++ b/plugins/autoembed/lang/ja.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'ja', {
diff --git a/plugins/autoembed/lang/km.js b/plugins/autoembed/lang/km.js
index 3d024769..598bf739 100644
--- a/plugins/autoembed/lang/km.js
+++ b/plugins/autoembed/lang/km.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'km', {
diff --git a/plugins/autoembed/lang/ko.js b/plugins/autoembed/lang/ko.js
index 3608d7f1..9dae2ea8 100644
--- a/plugins/autoembed/lang/ko.js
+++ b/plugins/autoembed/lang/ko.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'ko', {
diff --git a/plugins/autoembed/lang/ku.js b/plugins/autoembed/lang/ku.js
index cc6b074b..875831e8 100644
--- a/plugins/autoembed/lang/ku.js
+++ b/plugins/autoembed/lang/ku.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'ku', {
diff --git a/plugins/autoembed/lang/lt.js b/plugins/autoembed/lang/lt.js
index ccd9b08b..2a592704 100644
--- a/plugins/autoembed/lang/lt.js
+++ b/plugins/autoembed/lang/lt.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'lt', {
diff --git a/plugins/autoembed/lang/lv.js b/plugins/autoembed/lang/lv.js
index 0ca33a4f..b6ad1b80 100644
--- a/plugins/autoembed/lang/lv.js
+++ b/plugins/autoembed/lang/lv.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'lv', {
diff --git a/plugins/autoembed/lang/mk.js b/plugins/autoembed/lang/mk.js
index 9c5aea83..fa63c335 100644
--- a/plugins/autoembed/lang/mk.js
+++ b/plugins/autoembed/lang/mk.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'mk', {
diff --git a/plugins/autoembed/lang/nb.js b/plugins/autoembed/lang/nb.js
index cd7f543a..6f3806e7 100644
--- a/plugins/autoembed/lang/nb.js
+++ b/plugins/autoembed/lang/nb.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'nb', {
diff --git a/plugins/autoembed/lang/nl.js b/plugins/autoembed/lang/nl.js
index 67531bc2..450118ee 100644
--- a/plugins/autoembed/lang/nl.js
+++ b/plugins/autoembed/lang/nl.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'nl', {
diff --git a/plugins/autoembed/lang/oc.js b/plugins/autoembed/lang/oc.js
index 4b98d804..1bd1f72a 100644
--- a/plugins/autoembed/lang/oc.js
+++ b/plugins/autoembed/lang/oc.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'oc', {
diff --git a/plugins/autoembed/lang/pl.js b/plugins/autoembed/lang/pl.js
index 7c731f57..7ace6bd6 100644
--- a/plugins/autoembed/lang/pl.js
+++ b/plugins/autoembed/lang/pl.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'pl', {
diff --git a/plugins/autoembed/lang/pt-br.js b/plugins/autoembed/lang/pt-br.js
index d2086e64..4ff521c2 100644
--- a/plugins/autoembed/lang/pt-br.js
+++ b/plugins/autoembed/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'pt-br', {
diff --git a/plugins/autoembed/lang/pt.js b/plugins/autoembed/lang/pt.js
index cf6b54c5..43976d1a 100644
--- a/plugins/autoembed/lang/pt.js
+++ b/plugins/autoembed/lang/pt.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'pt', {
diff --git a/plugins/autoembed/lang/ro.js b/plugins/autoembed/lang/ro.js
index f196e190..4ce4bd83 100644
--- a/plugins/autoembed/lang/ro.js
+++ b/plugins/autoembed/lang/ro.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'ro', {
diff --git a/plugins/autoembed/lang/ru.js b/plugins/autoembed/lang/ru.js
index b4629f58..0b3e90fb 100644
--- a/plugins/autoembed/lang/ru.js
+++ b/plugins/autoembed/lang/ru.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'ru', {
diff --git a/plugins/autoembed/lang/sk.js b/plugins/autoembed/lang/sk.js
index 9d6b4afa..f2b9ed51 100644
--- a/plugins/autoembed/lang/sk.js
+++ b/plugins/autoembed/lang/sk.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'sk', {
diff --git a/plugins/autoembed/lang/sq.js b/plugins/autoembed/lang/sq.js
index ca2f831f..4f4cd7ab 100644
--- a/plugins/autoembed/lang/sq.js
+++ b/plugins/autoembed/lang/sq.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'sq', {
diff --git a/plugins/autoembed/lang/sr-latn.js b/plugins/autoembed/lang/sr-latn.js
index e45bdb06..310052e6 100644
--- a/plugins/autoembed/lang/sr-latn.js
+++ b/plugins/autoembed/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'sr-latn', {
diff --git a/plugins/autoembed/lang/sr.js b/plugins/autoembed/lang/sr.js
index 0952577e..dded0169 100644
--- a/plugins/autoembed/lang/sr.js
+++ b/plugins/autoembed/lang/sr.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'sr', {
diff --git a/plugins/autoembed/lang/sv.js b/plugins/autoembed/lang/sv.js
index edced1ae..056d911e 100644
--- a/plugins/autoembed/lang/sv.js
+++ b/plugins/autoembed/lang/sv.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'sv', {
diff --git a/plugins/autoembed/lang/tr.js b/plugins/autoembed/lang/tr.js
index dd6bb47f..599987ce 100644
--- a/plugins/autoembed/lang/tr.js
+++ b/plugins/autoembed/lang/tr.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'tr', {
diff --git a/plugins/autoembed/lang/ug.js b/plugins/autoembed/lang/ug.js
index d2594179..17b7181c 100644
--- a/plugins/autoembed/lang/ug.js
+++ b/plugins/autoembed/lang/ug.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'ug', {
diff --git a/plugins/autoembed/lang/uk.js b/plugins/autoembed/lang/uk.js
index 4fdae5e4..b2dc8406 100644
--- a/plugins/autoembed/lang/uk.js
+++ b/plugins/autoembed/lang/uk.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'uk', {
diff --git a/plugins/autoembed/lang/vi.js b/plugins/autoembed/lang/vi.js
index 822e90c1..5fd266e3 100644
--- a/plugins/autoembed/lang/vi.js
+++ b/plugins/autoembed/lang/vi.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'vi', {
diff --git a/plugins/autoembed/lang/zh-cn.js b/plugins/autoembed/lang/zh-cn.js
index 52104bdd..8bb4a3d8 100644
--- a/plugins/autoembed/lang/zh-cn.js
+++ b/plugins/autoembed/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'zh-cn', {
diff --git a/plugins/autoembed/lang/zh.js b/plugins/autoembed/lang/zh.js
index 52b1c7f8..ecdce1cd 100644
--- a/plugins/autoembed/lang/zh.js
+++ b/plugins/autoembed/lang/zh.js
@@ -1,5 +1,5 @@
 /*
- Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'autoembed', 'zh', {
diff --git a/plugins/autoembed/plugin.js b/plugins/autoembed/plugin.js
index f58dc7cf..a0cd1254 100644
--- a/plugins/autoembed/plugin.js
+++ b/plugins/autoembed/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/autogrow/plugin.js b/plugins/autogrow/plugin.js
index 322a8fda..f1cf83c1 100644
--- a/plugins/autogrow/plugin.js
+++ b/plugins/autogrow/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/autogrow/samples/autogrow.html b/plugins/autogrow/samples/autogrow.html
index 042cfffd..b635dcd4 100644
--- a/plugins/autogrow/samples/autogrow.html
+++ b/plugins/autogrow/samples/autogrow.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -95,7 +95,7 @@ CKEDITOR.replace( '<em>textarea_id</em>', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/autolink/plugin.js b/plugins/autolink/plugin.js
index 1c8e26ef..a9bb6da3 100644
--- a/plugins/autolink/plugin.js
+++ b/plugins/autolink/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -81,7 +81,7 @@
 				var link = new CKEDITOR.dom.element( 'a' ),
 					value = text.replace( /"/g, '%22' );
 
-				value = value.match( CKEDITOR.config.autolink_urlRegex ) ? value : 'mailto:' + value;
+				value = value.match( editor.config.autolink_urlRegex ) ? value : 'mailto:' + value;
 
 				link.setText( text );
 				link.setAttribute( 'href', value );
diff --git a/plugins/balloonpanel/plugin.js b/plugins/balloonpanel/plugin.js
index 5db26576..d7178740 100644
--- a/plugins/balloonpanel/plugin.js
+++ b/plugins/balloonpanel/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/balloonpanel/skins/kama/balloonpanel.css b/plugins/balloonpanel/skins/kama/balloonpanel.css
index eef6619e..516ac3e8 100644
--- a/plugins/balloonpanel/skins/kama/balloonpanel.css
+++ b/plugins/balloonpanel/skins/kama/balloonpanel.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/balloonpanel/skins/moono-lisa/balloonpanel.css b/plugins/balloonpanel/skins/moono-lisa/balloonpanel.css
index 47f4500b..793714b6 100644
--- a/plugins/balloonpanel/skins/moono-lisa/balloonpanel.css
+++ b/plugins/balloonpanel/skins/moono-lisa/balloonpanel.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/balloonpanel/skins/moono/balloonpanel.css b/plugins/balloonpanel/skins/moono/balloonpanel.css
index 1f1d85e3..ae640c91 100644
--- a/plugins/balloonpanel/skins/moono/balloonpanel.css
+++ b/plugins/balloonpanel/skins/moono/balloonpanel.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/balloontoolbar/plugin.js b/plugins/balloontoolbar/plugin.js
index 3d07ae24..477e8db5 100644
--- a/plugins/balloontoolbar/plugin.js
+++ b/plugins/balloontoolbar/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/balloontoolbar/skins/default.css b/plugins/balloontoolbar/skins/default.css
index ae7a55a6..320415e5 100644
--- a/plugins/balloontoolbar/skins/default.css
+++ b/plugins/balloontoolbar/skins/default.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/balloontoolbar/skins/kama/balloontoolbar.css b/plugins/balloontoolbar/skins/kama/balloontoolbar.css
index 35a67eb9..619a88a9 100644
--- a/plugins/balloontoolbar/skins/kama/balloontoolbar.css
+++ b/plugins/balloontoolbar/skins/kama/balloontoolbar.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/balloontoolbar/skins/moono-lisa/balloontoolbar.css b/plugins/balloontoolbar/skins/moono-lisa/balloontoolbar.css
index c36f7194..17e66889 100644
--- a/plugins/balloontoolbar/skins/moono-lisa/balloontoolbar.css
+++ b/plugins/balloontoolbar/skins/moono-lisa/balloontoolbar.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/balloontoolbar/skins/moono/balloontoolbar.css b/plugins/balloontoolbar/skins/moono/balloontoolbar.css
index 3461908d..5de0f08c 100644
--- a/plugins/balloontoolbar/skins/moono/balloontoolbar.css
+++ b/plugins/balloontoolbar/skins/moono/balloontoolbar.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/basicstyles/lang/af.js b/plugins/basicstyles/lang/af.js
index aa2002e1..39f3fe77 100644
--- a/plugins/basicstyles/lang/af.js
+++ b/plugins/basicstyles/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'af', {
diff --git a/plugins/basicstyles/lang/ar.js b/plugins/basicstyles/lang/ar.js
index 098c9eb3..72e55e79 100644
--- a/plugins/basicstyles/lang/ar.js
+++ b/plugins/basicstyles/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'ar', {
diff --git a/plugins/basicstyles/lang/az.js b/plugins/basicstyles/lang/az.js
index 33342c3e..74c35475 100644
--- a/plugins/basicstyles/lang/az.js
+++ b/plugins/basicstyles/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'az', {
diff --git a/plugins/basicstyles/lang/bg.js b/plugins/basicstyles/lang/bg.js
index 912ad359..464c8f17 100644
--- a/plugins/basicstyles/lang/bg.js
+++ b/plugins/basicstyles/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'bg', {
diff --git a/plugins/basicstyles/lang/bn.js b/plugins/basicstyles/lang/bn.js
index ad095ae8..209c8495 100644
--- a/plugins/basicstyles/lang/bn.js
+++ b/plugins/basicstyles/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'bn', {
diff --git a/plugins/basicstyles/lang/bs.js b/plugins/basicstyles/lang/bs.js
index a70c9147..b9ca87fc 100644
--- a/plugins/basicstyles/lang/bs.js
+++ b/plugins/basicstyles/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'bs', {
diff --git a/plugins/basicstyles/lang/ca.js b/plugins/basicstyles/lang/ca.js
index f01ed34b..9825e68c 100644
--- a/plugins/basicstyles/lang/ca.js
+++ b/plugins/basicstyles/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'ca', {
diff --git a/plugins/basicstyles/lang/cs.js b/plugins/basicstyles/lang/cs.js
index 0d490367..4be0cd92 100644
--- a/plugins/basicstyles/lang/cs.js
+++ b/plugins/basicstyles/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'cs', {
diff --git a/plugins/basicstyles/lang/cy.js b/plugins/basicstyles/lang/cy.js
index 4e574b13..7b3479a9 100644
--- a/plugins/basicstyles/lang/cy.js
+++ b/plugins/basicstyles/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'cy', {
diff --git a/plugins/basicstyles/lang/da.js b/plugins/basicstyles/lang/da.js
index 50c56985..af9cdd42 100644
--- a/plugins/basicstyles/lang/da.js
+++ b/plugins/basicstyles/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'da', {
diff --git a/plugins/basicstyles/lang/de-ch.js b/plugins/basicstyles/lang/de-ch.js
index 588504aa..c9c3da91 100644
--- a/plugins/basicstyles/lang/de-ch.js
+++ b/plugins/basicstyles/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'de-ch', {
diff --git a/plugins/basicstyles/lang/de.js b/plugins/basicstyles/lang/de.js
index ad0c7941..c38a3fc5 100644
--- a/plugins/basicstyles/lang/de.js
+++ b/plugins/basicstyles/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'de', {
diff --git a/plugins/basicstyles/lang/el.js b/plugins/basicstyles/lang/el.js
index 13590ecd..1330a725 100644
--- a/plugins/basicstyles/lang/el.js
+++ b/plugins/basicstyles/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'el', {
diff --git a/plugins/basicstyles/lang/en-au.js b/plugins/basicstyles/lang/en-au.js
index acddb040..4ec98ed4 100644
--- a/plugins/basicstyles/lang/en-au.js
+++ b/plugins/basicstyles/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'en-au', {
diff --git a/plugins/basicstyles/lang/en-ca.js b/plugins/basicstyles/lang/en-ca.js
index d532bf1e..5d477ada 100644
--- a/plugins/basicstyles/lang/en-ca.js
+++ b/plugins/basicstyles/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'en-ca', {
diff --git a/plugins/basicstyles/lang/en-gb.js b/plugins/basicstyles/lang/en-gb.js
index 7f9fd401..5af4b1ae 100644
--- a/plugins/basicstyles/lang/en-gb.js
+++ b/plugins/basicstyles/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'en-gb', {
diff --git a/plugins/basicstyles/lang/en.js b/plugins/basicstyles/lang/en.js
index 0dcd6730..06a7ca9f 100644
--- a/plugins/basicstyles/lang/en.js
+++ b/plugins/basicstyles/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'en', {
diff --git a/plugins/basicstyles/lang/eo.js b/plugins/basicstyles/lang/eo.js
index 6c252bff..56726372 100644
--- a/plugins/basicstyles/lang/eo.js
+++ b/plugins/basicstyles/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'eo', {
diff --git a/plugins/basicstyles/lang/es-mx.js b/plugins/basicstyles/lang/es-mx.js
index cc79f4f3..431960b6 100644
--- a/plugins/basicstyles/lang/es-mx.js
+++ b/plugins/basicstyles/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'es-mx', {
diff --git a/plugins/basicstyles/lang/es.js b/plugins/basicstyles/lang/es.js
index 0271ca9d..ec532f9e 100644
--- a/plugins/basicstyles/lang/es.js
+++ b/plugins/basicstyles/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'es', {
diff --git a/plugins/basicstyles/lang/et.js b/plugins/basicstyles/lang/et.js
index 183e36ef..3cd3da29 100644
--- a/plugins/basicstyles/lang/et.js
+++ b/plugins/basicstyles/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'et', {
diff --git a/plugins/basicstyles/lang/eu.js b/plugins/basicstyles/lang/eu.js
index d00872d1..4136fb1a 100644
--- a/plugins/basicstyles/lang/eu.js
+++ b/plugins/basicstyles/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'eu', {
diff --git a/plugins/basicstyles/lang/fa.js b/plugins/basicstyles/lang/fa.js
index d29c8653..22473ee3 100644
--- a/plugins/basicstyles/lang/fa.js
+++ b/plugins/basicstyles/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'fa', {
diff --git a/plugins/basicstyles/lang/fi.js b/plugins/basicstyles/lang/fi.js
index b0ac7b9c..0a52306d 100644
--- a/plugins/basicstyles/lang/fi.js
+++ b/plugins/basicstyles/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'fi', {
diff --git a/plugins/basicstyles/lang/fo.js b/plugins/basicstyles/lang/fo.js
index 251d554a..4ff573de 100644
--- a/plugins/basicstyles/lang/fo.js
+++ b/plugins/basicstyles/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'fo', {
diff --git a/plugins/basicstyles/lang/fr-ca.js b/plugins/basicstyles/lang/fr-ca.js
index 70f4abaf..5e1b7f15 100644
--- a/plugins/basicstyles/lang/fr-ca.js
+++ b/plugins/basicstyles/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'fr-ca', {
diff --git a/plugins/basicstyles/lang/fr.js b/plugins/basicstyles/lang/fr.js
index e9fe5c4a..be6075f2 100644
--- a/plugins/basicstyles/lang/fr.js
+++ b/plugins/basicstyles/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'fr', {
diff --git a/plugins/basicstyles/lang/gl.js b/plugins/basicstyles/lang/gl.js
index 3984295a..fa1578de 100644
--- a/plugins/basicstyles/lang/gl.js
+++ b/plugins/basicstyles/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'gl', {
diff --git a/plugins/basicstyles/lang/gu.js b/plugins/basicstyles/lang/gu.js
index a5be3dc2..94bedb8c 100644
--- a/plugins/basicstyles/lang/gu.js
+++ b/plugins/basicstyles/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'gu', {
diff --git a/plugins/basicstyles/lang/he.js b/plugins/basicstyles/lang/he.js
index 8065abcd..a449e5b7 100644
--- a/plugins/basicstyles/lang/he.js
+++ b/plugins/basicstyles/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'he', {
diff --git a/plugins/basicstyles/lang/hi.js b/plugins/basicstyles/lang/hi.js
index d3832e76..3ba3dac2 100644
--- a/plugins/basicstyles/lang/hi.js
+++ b/plugins/basicstyles/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'hi', {
diff --git a/plugins/basicstyles/lang/hr.js b/plugins/basicstyles/lang/hr.js
index 91b30c8b..0f232164 100644
--- a/plugins/basicstyles/lang/hr.js
+++ b/plugins/basicstyles/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'hr', {
diff --git a/plugins/basicstyles/lang/hu.js b/plugins/basicstyles/lang/hu.js
index c349d6e8..8f139532 100644
--- a/plugins/basicstyles/lang/hu.js
+++ b/plugins/basicstyles/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'hu', {
diff --git a/plugins/basicstyles/lang/id.js b/plugins/basicstyles/lang/id.js
index 2f1e6e80..89fa38e2 100644
--- a/plugins/basicstyles/lang/id.js
+++ b/plugins/basicstyles/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'id', {
diff --git a/plugins/basicstyles/lang/is.js b/plugins/basicstyles/lang/is.js
index 1ac3721e..f051ffe9 100644
--- a/plugins/basicstyles/lang/is.js
+++ b/plugins/basicstyles/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'is', {
diff --git a/plugins/basicstyles/lang/it.js b/plugins/basicstyles/lang/it.js
index 6ec70ebb..6914f907 100644
--- a/plugins/basicstyles/lang/it.js
+++ b/plugins/basicstyles/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'it', {
diff --git a/plugins/basicstyles/lang/ja.js b/plugins/basicstyles/lang/ja.js
index 8fc082f4..f029d6e5 100644
--- a/plugins/basicstyles/lang/ja.js
+++ b/plugins/basicstyles/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'ja', {
diff --git a/plugins/basicstyles/lang/ka.js b/plugins/basicstyles/lang/ka.js
index 0cc10797..cb77a44a 100644
--- a/plugins/basicstyles/lang/ka.js
+++ b/plugins/basicstyles/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'ka', {
diff --git a/plugins/basicstyles/lang/km.js b/plugins/basicstyles/lang/km.js
index b4c94bb8..3227d964 100644
--- a/plugins/basicstyles/lang/km.js
+++ b/plugins/basicstyles/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'km', {
diff --git a/plugins/basicstyles/lang/ko.js b/plugins/basicstyles/lang/ko.js
index 5583becb..e6549618 100644
--- a/plugins/basicstyles/lang/ko.js
+++ b/plugins/basicstyles/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'ko', {
diff --git a/plugins/basicstyles/lang/ku.js b/plugins/basicstyles/lang/ku.js
index b4ff8a37..dee7bcbd 100644
--- a/plugins/basicstyles/lang/ku.js
+++ b/plugins/basicstyles/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'ku', {
diff --git a/plugins/basicstyles/lang/lt.js b/plugins/basicstyles/lang/lt.js
index 26901a59..281d30d0 100644
--- a/plugins/basicstyles/lang/lt.js
+++ b/plugins/basicstyles/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'lt', {
diff --git a/plugins/basicstyles/lang/lv.js b/plugins/basicstyles/lang/lv.js
index 7deba371..75a88436 100644
--- a/plugins/basicstyles/lang/lv.js
+++ b/plugins/basicstyles/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'lv', {
diff --git a/plugins/basicstyles/lang/mk.js b/plugins/basicstyles/lang/mk.js
index 2215ba63..da7cb190 100644
--- a/plugins/basicstyles/lang/mk.js
+++ b/plugins/basicstyles/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'mk', {
diff --git a/plugins/basicstyles/lang/mn.js b/plugins/basicstyles/lang/mn.js
index b7895299..c501b797 100644
--- a/plugins/basicstyles/lang/mn.js
+++ b/plugins/basicstyles/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'mn', {
diff --git a/plugins/basicstyles/lang/ms.js b/plugins/basicstyles/lang/ms.js
index 705fa473..68078a48 100644
--- a/plugins/basicstyles/lang/ms.js
+++ b/plugins/basicstyles/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'ms', {
diff --git a/plugins/basicstyles/lang/nb.js b/plugins/basicstyles/lang/nb.js
index 8a678490..62d66889 100644
--- a/plugins/basicstyles/lang/nb.js
+++ b/plugins/basicstyles/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'nb', {
diff --git a/plugins/basicstyles/lang/nl.js b/plugins/basicstyles/lang/nl.js
index 6ff72667..0c844d2e 100644
--- a/plugins/basicstyles/lang/nl.js
+++ b/plugins/basicstyles/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'nl', {
diff --git a/plugins/basicstyles/lang/no.js b/plugins/basicstyles/lang/no.js
index d43b9b20..91205a00 100644
--- a/plugins/basicstyles/lang/no.js
+++ b/plugins/basicstyles/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'no', {
diff --git a/plugins/basicstyles/lang/oc.js b/plugins/basicstyles/lang/oc.js
index d0228a33..a623b418 100644
--- a/plugins/basicstyles/lang/oc.js
+++ b/plugins/basicstyles/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'oc', {
diff --git a/plugins/basicstyles/lang/pl.js b/plugins/basicstyles/lang/pl.js
index c2415b73..5ba9b849 100644
--- a/plugins/basicstyles/lang/pl.js
+++ b/plugins/basicstyles/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'pl', {
diff --git a/plugins/basicstyles/lang/pt-br.js b/plugins/basicstyles/lang/pt-br.js
index 32d909d2..ac695b0f 100644
--- a/plugins/basicstyles/lang/pt-br.js
+++ b/plugins/basicstyles/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'pt-br', {
diff --git a/plugins/basicstyles/lang/pt.js b/plugins/basicstyles/lang/pt.js
index d6dbbfbb..1dd3f9af 100644
--- a/plugins/basicstyles/lang/pt.js
+++ b/plugins/basicstyles/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'pt', {
diff --git a/plugins/basicstyles/lang/ro.js b/plugins/basicstyles/lang/ro.js
index 0b393643..25654a95 100644
--- a/plugins/basicstyles/lang/ro.js
+++ b/plugins/basicstyles/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'ro', {
diff --git a/plugins/basicstyles/lang/ru.js b/plugins/basicstyles/lang/ru.js
index b4de4d2d..eb31959a 100644
--- a/plugins/basicstyles/lang/ru.js
+++ b/plugins/basicstyles/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'ru', {
diff --git a/plugins/basicstyles/lang/si.js b/plugins/basicstyles/lang/si.js
index 44a28c8a..d16a8a2e 100644
--- a/plugins/basicstyles/lang/si.js
+++ b/plugins/basicstyles/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'si', {
diff --git a/plugins/basicstyles/lang/sk.js b/plugins/basicstyles/lang/sk.js
index cd117e22..7ebb06da 100644
--- a/plugins/basicstyles/lang/sk.js
+++ b/plugins/basicstyles/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'sk', {
diff --git a/plugins/basicstyles/lang/sl.js b/plugins/basicstyles/lang/sl.js
index 4cf9b3d3..ff6933c0 100644
--- a/plugins/basicstyles/lang/sl.js
+++ b/plugins/basicstyles/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'sl', {
diff --git a/plugins/basicstyles/lang/sq.js b/plugins/basicstyles/lang/sq.js
index e2d4e411..f7bfa716 100644
--- a/plugins/basicstyles/lang/sq.js
+++ b/plugins/basicstyles/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'sq', {
diff --git a/plugins/basicstyles/lang/sr-latn.js b/plugins/basicstyles/lang/sr-latn.js
index 38ff36c5..75b4a90b 100644
--- a/plugins/basicstyles/lang/sr-latn.js
+++ b/plugins/basicstyles/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'sr-latn', {
diff --git a/plugins/basicstyles/lang/sr.js b/plugins/basicstyles/lang/sr.js
index f1c6e652..d445f36d 100644
--- a/plugins/basicstyles/lang/sr.js
+++ b/plugins/basicstyles/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'sr', {
diff --git a/plugins/basicstyles/lang/sv.js b/plugins/basicstyles/lang/sv.js
index c387dcf1..d453ae38 100644
--- a/plugins/basicstyles/lang/sv.js
+++ b/plugins/basicstyles/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'sv', {
diff --git a/plugins/basicstyles/lang/th.js b/plugins/basicstyles/lang/th.js
index 9d981be7..43154c15 100644
--- a/plugins/basicstyles/lang/th.js
+++ b/plugins/basicstyles/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'th', {
diff --git a/plugins/basicstyles/lang/tr.js b/plugins/basicstyles/lang/tr.js
index 3560a55d..27131d4c 100644
--- a/plugins/basicstyles/lang/tr.js
+++ b/plugins/basicstyles/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'tr', {
diff --git a/plugins/basicstyles/lang/tt.js b/plugins/basicstyles/lang/tt.js
index 73939381..a4db71f2 100644
--- a/plugins/basicstyles/lang/tt.js
+++ b/plugins/basicstyles/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'tt', {
diff --git a/plugins/basicstyles/lang/ug.js b/plugins/basicstyles/lang/ug.js
index 7b954472..68283732 100644
--- a/plugins/basicstyles/lang/ug.js
+++ b/plugins/basicstyles/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'ug', {
diff --git a/plugins/basicstyles/lang/uk.js b/plugins/basicstyles/lang/uk.js
index bc29c7a6..136c5ac5 100644
--- a/plugins/basicstyles/lang/uk.js
+++ b/plugins/basicstyles/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'uk', {
diff --git a/plugins/basicstyles/lang/vi.js b/plugins/basicstyles/lang/vi.js
index d9ba7d34..e2a026c6 100644
--- a/plugins/basicstyles/lang/vi.js
+++ b/plugins/basicstyles/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'vi', {
diff --git a/plugins/basicstyles/lang/zh-cn.js b/plugins/basicstyles/lang/zh-cn.js
index 314dbbad..bcff0478 100644
--- a/plugins/basicstyles/lang/zh-cn.js
+++ b/plugins/basicstyles/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'zh-cn', {
diff --git a/plugins/basicstyles/lang/zh.js b/plugins/basicstyles/lang/zh.js
index 3ca6d773..35825eb8 100644
--- a/plugins/basicstyles/lang/zh.js
+++ b/plugins/basicstyles/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'basicstyles', 'zh', {
diff --git a/plugins/basicstyles/plugin.js b/plugins/basicstyles/plugin.js
index 43346226..ef7c2908 100644
--- a/plugins/basicstyles/plugin.js
+++ b/plugins/basicstyles/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -101,6 +101,40 @@ CKEDITOR.plugins.add( 'basicstyles', {
 			[ CKEDITOR.CTRL + 73 /*I*/, 'italic' ],
 			[ CKEDITOR.CTRL + 85 /*U*/, 'underline' ]
 		] );
+	},
+
+	afterInit: function( editor ) {
+		// If disabled, sub and sub scripts can be applied to element simoultaneously.
+		// The rest of that code takes care of toggling both elements (#5215).
+		if ( !editor.config.coreStyles_toggleSubSup ) {
+			return;
+		}
+
+		var subscriptCommand = editor.getCommand( 'subscript' ),
+			superscriptCommand = editor.getCommand( 'superscript' );
+
+		// Both commands are required for toggle operation.
+		if ( !subscriptCommand || !superscriptCommand ) {
+			return;
+		}
+
+		editor.on( 'afterCommandExec', function( evt ) {
+			var commandName = evt.data.name;
+
+			if ( commandName !== 'subscript' && commandName !== 'superscript' ) {
+				return;
+			}
+
+			var executedCommand = commandName === 'subscript' ? subscriptCommand : superscriptCommand,
+				otherCommand = commandName === 'subscript' ? superscriptCommand : subscriptCommand;
+
+			// Disable the other command if both are enabled.
+			if ( executedCommand.state === CKEDITOR.TRISTATE_ON && otherCommand.state === CKEDITOR.TRISTATE_ON ) {
+				otherCommand.exec( editor );
+				// Merge undo images, so toggle operation is treated as a single undo step.
+				editor.fire( 'updateSnapshot' );
+			}
+		} );
 	}
 } );
 
@@ -119,7 +153,7 @@ CKEDITOR.plugins.add( 'basicstyles', {
  *			attributes: { 'class': 'Bold' }
  *		};
  *
- * @cfg
+ * @cfg {Object} [coreStyles_bold={ element: 'strong', overrides: 'b' }]
  * @member CKEDITOR.config
  */
 CKEDITOR.config.coreStyles_bold = { element: 'strong', overrides: 'b' };
@@ -137,7 +171,7 @@ CKEDITOR.config.coreStyles_bold = { element: 'strong', overrides: 'b' };
  *			attributes: { 'class': 'Italic' }
  *		};
  *
- * @cfg
+ * @cfg {Object} [coreStyles_italic={ element: 'em', overrides: 'i' }]
  * @member CKEDITOR.config
  */
 CKEDITOR.config.coreStyles_italic = { element: 'em', overrides: 'i' };
@@ -153,7 +187,7 @@ CKEDITOR.config.coreStyles_italic = { element: 'em', overrides: 'i' };
  *			attributes: { 'class': 'Underline' }
  *		};
  *
- * @cfg
+ * @cfg {Object} [coreStyles_underline={ element: 'u' }]
  * @member CKEDITOR.config
  */
 CKEDITOR.config.coreStyles_underline = { element: 'u' };
@@ -170,7 +204,7 @@ CKEDITOR.config.coreStyles_underline = { element: 'u' };
  *			overrides: 'strike'
  *		};
  *
- * @cfg
+ * @cfg {Object} [coreStyles_strike={ element: 's', overrides: 'strike' }]
  * @member CKEDITOR.config
  */
 CKEDITOR.config.coreStyles_strike = { element: 's', overrides: 'strike' };
@@ -187,7 +221,7 @@ CKEDITOR.config.coreStyles_strike = { element: 's', overrides: 'strike' };
  *			overrides: 'sub'
  *		};
  *
- * @cfg
+ * @cfg {Object} [coreStyles_subscript={ element: 'sub' }]
  * @member CKEDITOR.config
  */
 CKEDITOR.config.coreStyles_subscript = { element: 'sub' };
@@ -204,7 +238,20 @@ CKEDITOR.config.coreStyles_subscript = { element: 'sub' };
  *			overrides: 'sup'
  *		};
  *
- * @cfg
+ * @cfg {Object} [coreStyles_superscript={ element: 'sup' }]
  * @member CKEDITOR.config
  */
 CKEDITOR.config.coreStyles_superscript = { element: 'sup' };
+
+/**
+ * Disallow setting subscript and superscript simultaneously on the same element using UI buttons.
+ *
+ * By default, you can apply subscript and superscript styles to the same element. Enabling that option
+ * will remove the superscript style when the subscript button is pressed and vice versa.
+ *
+ * @cfg {Boolean} [coreStyles_toggleSubSup=false]
+ * @since 4.20.0
+ * @member CKEDITOR.config
+ */
+
+CKEDITOR.config.coreStyles_toggleSubSup = false;
diff --git a/plugins/bbcode/dev/bbcode.html b/plugins/bbcode/dev/bbcode.html
index 1945130b..c2cc93fc 100644
--- a/plugins/bbcode/dev/bbcode.html
+++ b/plugins/bbcode/dev/bbcode.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
@@ -103,7 +103,7 @@ The above version most widely known today is based on the [url=http://en.wikiped
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 	<script>
diff --git a/plugins/bbcode/plugin.js b/plugins/bbcode/plugin.js
index 783bf6ad..359354f5 100644
--- a/plugins/bbcode/plugin.js
+++ b/plugins/bbcode/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/bbcode/samples/bbcode.html b/plugins/bbcode/samples/bbcode.html
index 4e2abd61..3eaacb62 100644
--- a/plugins/bbcode/samples/bbcode.html
+++ b/plugins/bbcode/samples/bbcode.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -107,7 +107,7 @@ CKEDITOR.replace( 'editor1', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/bidi/lang/af.js b/plugins/bidi/lang/af.js
index 605ff541..32d8a8b5 100644
--- a/plugins/bidi/lang/af.js
+++ b/plugins/bidi/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'af', {
diff --git a/plugins/bidi/lang/ar.js b/plugins/bidi/lang/ar.js
index ed489622..aaa1d013 100644
--- a/plugins/bidi/lang/ar.js
+++ b/plugins/bidi/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'ar', {
diff --git a/plugins/bidi/lang/az.js b/plugins/bidi/lang/az.js
index 2994833a..9e6e31b2 100644
--- a/plugins/bidi/lang/az.js
+++ b/plugins/bidi/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'az', {
diff --git a/plugins/bidi/lang/bg.js b/plugins/bidi/lang/bg.js
index aa5747d0..626aa75c 100644
--- a/plugins/bidi/lang/bg.js
+++ b/plugins/bidi/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'bg', {
diff --git a/plugins/bidi/lang/bn.js b/plugins/bidi/lang/bn.js
index 3d9166a9..98703d45 100644
--- a/plugins/bidi/lang/bn.js
+++ b/plugins/bidi/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'bn', {
diff --git a/plugins/bidi/lang/bs.js b/plugins/bidi/lang/bs.js
index be62284e..c7234c92 100644
--- a/plugins/bidi/lang/bs.js
+++ b/plugins/bidi/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'bs', {
diff --git a/plugins/bidi/lang/ca.js b/plugins/bidi/lang/ca.js
index ef046118..fecd5f65 100644
--- a/plugins/bidi/lang/ca.js
+++ b/plugins/bidi/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'ca', {
diff --git a/plugins/bidi/lang/cs.js b/plugins/bidi/lang/cs.js
index b270c10b..ca1921f3 100644
--- a/plugins/bidi/lang/cs.js
+++ b/plugins/bidi/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'cs', {
diff --git a/plugins/bidi/lang/cy.js b/plugins/bidi/lang/cy.js
index 3c8de0e5..9e2118b2 100644
--- a/plugins/bidi/lang/cy.js
+++ b/plugins/bidi/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'cy', {
diff --git a/plugins/bidi/lang/da.js b/plugins/bidi/lang/da.js
index f55c2d9e..88de707a 100644
--- a/plugins/bidi/lang/da.js
+++ b/plugins/bidi/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'da', {
diff --git a/plugins/bidi/lang/de-ch.js b/plugins/bidi/lang/de-ch.js
index 9cb1b877..997c4981 100644
--- a/plugins/bidi/lang/de-ch.js
+++ b/plugins/bidi/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'de-ch', {
diff --git a/plugins/bidi/lang/de.js b/plugins/bidi/lang/de.js
index 04bf6cb1..3afdc2ad 100644
--- a/plugins/bidi/lang/de.js
+++ b/plugins/bidi/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'de', {
diff --git a/plugins/bidi/lang/el.js b/plugins/bidi/lang/el.js
index b85ca741..c2a3eadf 100644
--- a/plugins/bidi/lang/el.js
+++ b/plugins/bidi/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'el', {
diff --git a/plugins/bidi/lang/en-au.js b/plugins/bidi/lang/en-au.js
index 083c1f35..b70c9175 100644
--- a/plugins/bidi/lang/en-au.js
+++ b/plugins/bidi/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'en-au', {
diff --git a/plugins/bidi/lang/en-ca.js b/plugins/bidi/lang/en-ca.js
index 37208a65..a0047b31 100644
--- a/plugins/bidi/lang/en-ca.js
+++ b/plugins/bidi/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'en-ca', {
diff --git a/plugins/bidi/lang/en-gb.js b/plugins/bidi/lang/en-gb.js
index 9cb34acc..bf4c1136 100644
--- a/plugins/bidi/lang/en-gb.js
+++ b/plugins/bidi/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'en-gb', {
diff --git a/plugins/bidi/lang/en.js b/plugins/bidi/lang/en.js
index e96e5ee6..328e7a47 100644
--- a/plugins/bidi/lang/en.js
+++ b/plugins/bidi/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'en', {
diff --git a/plugins/bidi/lang/eo.js b/plugins/bidi/lang/eo.js
index 6af7220e..91703d7d 100644
--- a/plugins/bidi/lang/eo.js
+++ b/plugins/bidi/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'eo', {
diff --git a/plugins/bidi/lang/es-mx.js b/plugins/bidi/lang/es-mx.js
index 746fb4a2..eb6df81c 100644
--- a/plugins/bidi/lang/es-mx.js
+++ b/plugins/bidi/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'es-mx', {
diff --git a/plugins/bidi/lang/es.js b/plugins/bidi/lang/es.js
index 184bb012..af3cccfa 100644
--- a/plugins/bidi/lang/es.js
+++ b/plugins/bidi/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'es', {
diff --git a/plugins/bidi/lang/et.js b/plugins/bidi/lang/et.js
index 6006ddfc..74f64cff 100644
--- a/plugins/bidi/lang/et.js
+++ b/plugins/bidi/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'et', {
diff --git a/plugins/bidi/lang/eu.js b/plugins/bidi/lang/eu.js
index ff9f52de..8847dbd8 100644
--- a/plugins/bidi/lang/eu.js
+++ b/plugins/bidi/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'eu', {
diff --git a/plugins/bidi/lang/fa.js b/plugins/bidi/lang/fa.js
index e06613d1..cb44e54f 100644
--- a/plugins/bidi/lang/fa.js
+++ b/plugins/bidi/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'fa', {
diff --git a/plugins/bidi/lang/fi.js b/plugins/bidi/lang/fi.js
index d71f8ef6..81fc2072 100644
--- a/plugins/bidi/lang/fi.js
+++ b/plugins/bidi/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'fi', {
diff --git a/plugins/bidi/lang/fo.js b/plugins/bidi/lang/fo.js
index d8ff59f9..cb85766c 100644
--- a/plugins/bidi/lang/fo.js
+++ b/plugins/bidi/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'fo', {
diff --git a/plugins/bidi/lang/fr-ca.js b/plugins/bidi/lang/fr-ca.js
index 177ec6c1..1ca2caaa 100644
--- a/plugins/bidi/lang/fr-ca.js
+++ b/plugins/bidi/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'fr-ca', {
diff --git a/plugins/bidi/lang/fr.js b/plugins/bidi/lang/fr.js
index e4057db8..71daefd6 100644
--- a/plugins/bidi/lang/fr.js
+++ b/plugins/bidi/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'fr', {
diff --git a/plugins/bidi/lang/gl.js b/plugins/bidi/lang/gl.js
index db5bee07..8f4ff976 100644
--- a/plugins/bidi/lang/gl.js
+++ b/plugins/bidi/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'gl', {
diff --git a/plugins/bidi/lang/gu.js b/plugins/bidi/lang/gu.js
index 546671ea..8137161a 100644
--- a/plugins/bidi/lang/gu.js
+++ b/plugins/bidi/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'gu', {
diff --git a/plugins/bidi/lang/he.js b/plugins/bidi/lang/he.js
index 6497bdd4..fea51825 100644
--- a/plugins/bidi/lang/he.js
+++ b/plugins/bidi/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'he', {
diff --git a/plugins/bidi/lang/hi.js b/plugins/bidi/lang/hi.js
index 2a74d32b..3dd078a3 100644
--- a/plugins/bidi/lang/hi.js
+++ b/plugins/bidi/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'hi', {
diff --git a/plugins/bidi/lang/hr.js b/plugins/bidi/lang/hr.js
index 229d0f81..401041ff 100644
--- a/plugins/bidi/lang/hr.js
+++ b/plugins/bidi/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'hr', {
diff --git a/plugins/bidi/lang/hu.js b/plugins/bidi/lang/hu.js
index 6662f081..05429f32 100644
--- a/plugins/bidi/lang/hu.js
+++ b/plugins/bidi/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'hu', {
diff --git a/plugins/bidi/lang/id.js b/plugins/bidi/lang/id.js
index 05e945ab..421d663f 100644
--- a/plugins/bidi/lang/id.js
+++ b/plugins/bidi/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'id', {
diff --git a/plugins/bidi/lang/is.js b/plugins/bidi/lang/is.js
index ad49fd6c..4ea6dccc 100644
--- a/plugins/bidi/lang/is.js
+++ b/plugins/bidi/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'is', {
diff --git a/plugins/bidi/lang/it.js b/plugins/bidi/lang/it.js
index 2e4a3faf..3aff1d85 100644
--- a/plugins/bidi/lang/it.js
+++ b/plugins/bidi/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'it', {
diff --git a/plugins/bidi/lang/ja.js b/plugins/bidi/lang/ja.js
index b19c24c7..90ada721 100644
--- a/plugins/bidi/lang/ja.js
+++ b/plugins/bidi/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'ja', {
diff --git a/plugins/bidi/lang/ka.js b/plugins/bidi/lang/ka.js
index 97a9bb25..3079ac58 100644
--- a/plugins/bidi/lang/ka.js
+++ b/plugins/bidi/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'ka', {
diff --git a/plugins/bidi/lang/km.js b/plugins/bidi/lang/km.js
index 72b4b103..9541fb5b 100644
--- a/plugins/bidi/lang/km.js
+++ b/plugins/bidi/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'km', {
diff --git a/plugins/bidi/lang/ko.js b/plugins/bidi/lang/ko.js
index 7b11d8be..c5b6a687 100644
--- a/plugins/bidi/lang/ko.js
+++ b/plugins/bidi/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'ko', {
diff --git a/plugins/bidi/lang/ku.js b/plugins/bidi/lang/ku.js
index 423d8cbc..31f101f8 100644
--- a/plugins/bidi/lang/ku.js
+++ b/plugins/bidi/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'ku', {
diff --git a/plugins/bidi/lang/lt.js b/plugins/bidi/lang/lt.js
index 230e2e1f..d59ce368 100644
--- a/plugins/bidi/lang/lt.js
+++ b/plugins/bidi/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'lt', {
diff --git a/plugins/bidi/lang/lv.js b/plugins/bidi/lang/lv.js
index b1afd51a..f5d3c69f 100644
--- a/plugins/bidi/lang/lv.js
+++ b/plugins/bidi/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'lv', {
diff --git a/plugins/bidi/lang/mk.js b/plugins/bidi/lang/mk.js
index 4516fc98..34509fac 100644
--- a/plugins/bidi/lang/mk.js
+++ b/plugins/bidi/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'mk', {
diff --git a/plugins/bidi/lang/mn.js b/plugins/bidi/lang/mn.js
index d641ba1d..3414b90e 100644
--- a/plugins/bidi/lang/mn.js
+++ b/plugins/bidi/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'mn', {
diff --git a/plugins/bidi/lang/ms.js b/plugins/bidi/lang/ms.js
index ab5a4f0e..688ac835 100644
--- a/plugins/bidi/lang/ms.js
+++ b/plugins/bidi/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'ms', {
diff --git a/plugins/bidi/lang/nb.js b/plugins/bidi/lang/nb.js
index 7cb3416a..d82ae318 100644
--- a/plugins/bidi/lang/nb.js
+++ b/plugins/bidi/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'nb', {
diff --git a/plugins/bidi/lang/nl.js b/plugins/bidi/lang/nl.js
index 2c11d587..15a780fb 100644
--- a/plugins/bidi/lang/nl.js
+++ b/plugins/bidi/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'nl', {
diff --git a/plugins/bidi/lang/no.js b/plugins/bidi/lang/no.js
index 4cb5083b..0e756cf4 100644
--- a/plugins/bidi/lang/no.js
+++ b/plugins/bidi/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'no', {
diff --git a/plugins/bidi/lang/oc.js b/plugins/bidi/lang/oc.js
index 969cf8a1..25cec769 100644
--- a/plugins/bidi/lang/oc.js
+++ b/plugins/bidi/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'oc', {
diff --git a/plugins/bidi/lang/pl.js b/plugins/bidi/lang/pl.js
index 9efffa68..49efe383 100644
--- a/plugins/bidi/lang/pl.js
+++ b/plugins/bidi/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'pl', {
diff --git a/plugins/bidi/lang/pt-br.js b/plugins/bidi/lang/pt-br.js
index ad00c742..1b1ad971 100644
--- a/plugins/bidi/lang/pt-br.js
+++ b/plugins/bidi/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'pt-br', {
diff --git a/plugins/bidi/lang/pt.js b/plugins/bidi/lang/pt.js
index d418b30c..50a2521e 100644
--- a/plugins/bidi/lang/pt.js
+++ b/plugins/bidi/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'pt', {
diff --git a/plugins/bidi/lang/ro.js b/plugins/bidi/lang/ro.js
index bc35f763..5301849a 100644
--- a/plugins/bidi/lang/ro.js
+++ b/plugins/bidi/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'ro', {
diff --git a/plugins/bidi/lang/ru.js b/plugins/bidi/lang/ru.js
index 7710cf23..e34a2707 100644
--- a/plugins/bidi/lang/ru.js
+++ b/plugins/bidi/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'ru', {
diff --git a/plugins/bidi/lang/si.js b/plugins/bidi/lang/si.js
index 343560b0..299272c2 100644
--- a/plugins/bidi/lang/si.js
+++ b/plugins/bidi/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'si', {
diff --git a/plugins/bidi/lang/sk.js b/plugins/bidi/lang/sk.js
index 9a481faf..7f2d1d17 100644
--- a/plugins/bidi/lang/sk.js
+++ b/plugins/bidi/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'sk', {
diff --git a/plugins/bidi/lang/sl.js b/plugins/bidi/lang/sl.js
index 002f064e..3ba6f9e9 100644
--- a/plugins/bidi/lang/sl.js
+++ b/plugins/bidi/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'sl', {
diff --git a/plugins/bidi/lang/sq.js b/plugins/bidi/lang/sq.js
index 50b8768e..f0d8dded 100644
--- a/plugins/bidi/lang/sq.js
+++ b/plugins/bidi/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'sq', {
diff --git a/plugins/bidi/lang/sr-latn.js b/plugins/bidi/lang/sr-latn.js
index 38b1a34d..c0db354c 100644
--- a/plugins/bidi/lang/sr-latn.js
+++ b/plugins/bidi/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'sr-latn', {
diff --git a/plugins/bidi/lang/sr.js b/plugins/bidi/lang/sr.js
index ab8676e4..3de2a6d4 100644
--- a/plugins/bidi/lang/sr.js
+++ b/plugins/bidi/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'sr', {
diff --git a/plugins/bidi/lang/sv.js b/plugins/bidi/lang/sv.js
index 652b2d7d..3116d2e8 100644
--- a/plugins/bidi/lang/sv.js
+++ b/plugins/bidi/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'sv', {
diff --git a/plugins/bidi/lang/th.js b/plugins/bidi/lang/th.js
index 2ebc6078..a2b26725 100644
--- a/plugins/bidi/lang/th.js
+++ b/plugins/bidi/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'th', {
diff --git a/plugins/bidi/lang/tr.js b/plugins/bidi/lang/tr.js
index bd544823..a307c9aa 100644
--- a/plugins/bidi/lang/tr.js
+++ b/plugins/bidi/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'tr', {
diff --git a/plugins/bidi/lang/tt.js b/plugins/bidi/lang/tt.js
index 62eb56e8..cc7f8029 100644
--- a/plugins/bidi/lang/tt.js
+++ b/plugins/bidi/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'tt', {
diff --git a/plugins/bidi/lang/ug.js b/plugins/bidi/lang/ug.js
index 564f2160..dea8d236 100644
--- a/plugins/bidi/lang/ug.js
+++ b/plugins/bidi/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'ug', {
diff --git a/plugins/bidi/lang/uk.js b/plugins/bidi/lang/uk.js
index 0b4c9ad6..5e2cfa97 100644
--- a/plugins/bidi/lang/uk.js
+++ b/plugins/bidi/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'uk', {
diff --git a/plugins/bidi/lang/vi.js b/plugins/bidi/lang/vi.js
index 9245f1ac..376f94c6 100644
--- a/plugins/bidi/lang/vi.js
+++ b/plugins/bidi/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'vi', {
diff --git a/plugins/bidi/lang/zh-cn.js b/plugins/bidi/lang/zh-cn.js
index e16fbdb0..bacdd894 100644
--- a/plugins/bidi/lang/zh-cn.js
+++ b/plugins/bidi/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'zh-cn', {
diff --git a/plugins/bidi/lang/zh.js b/plugins/bidi/lang/zh.js
index 6245ad62..2a7e8de2 100644
--- a/plugins/bidi/lang/zh.js
+++ b/plugins/bidi/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'bidi', 'zh', {
diff --git a/plugins/bidi/plugin.js b/plugins/bidi/plugin.js
index f3a1138c..2766ab1c 100644
--- a/plugins/bidi/plugin.js
+++ b/plugins/bidi/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/blockquote/lang/af.js b/plugins/blockquote/lang/af.js
index 1a36f989..1f60be0e 100644
--- a/plugins/blockquote/lang/af.js
+++ b/plugins/blockquote/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'af', {
diff --git a/plugins/blockquote/lang/ar.js b/plugins/blockquote/lang/ar.js
index 959e1442..b9c589db 100644
--- a/plugins/blockquote/lang/ar.js
+++ b/plugins/blockquote/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'ar', {
diff --git a/plugins/blockquote/lang/az.js b/plugins/blockquote/lang/az.js
index d576758c..357cb217 100644
--- a/plugins/blockquote/lang/az.js
+++ b/plugins/blockquote/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'az', {
diff --git a/plugins/blockquote/lang/bg.js b/plugins/blockquote/lang/bg.js
index 5da859f2..c294b3c8 100644
--- a/plugins/blockquote/lang/bg.js
+++ b/plugins/blockquote/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'bg', {
diff --git a/plugins/blockquote/lang/bn.js b/plugins/blockquote/lang/bn.js
index e5e1ecb6..c8acfaf7 100644
--- a/plugins/blockquote/lang/bn.js
+++ b/plugins/blockquote/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'bn', {
diff --git a/plugins/blockquote/lang/bs.js b/plugins/blockquote/lang/bs.js
index 5a43cb66..b7444e89 100644
--- a/plugins/blockquote/lang/bs.js
+++ b/plugins/blockquote/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'bs', {
diff --git a/plugins/blockquote/lang/ca.js b/plugins/blockquote/lang/ca.js
index de224756..d4b68301 100644
--- a/plugins/blockquote/lang/ca.js
+++ b/plugins/blockquote/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'ca', {
diff --git a/plugins/blockquote/lang/cs.js b/plugins/blockquote/lang/cs.js
index 4aa1ee68..e9a1beb3 100644
--- a/plugins/blockquote/lang/cs.js
+++ b/plugins/blockquote/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'cs', {
diff --git a/plugins/blockquote/lang/cy.js b/plugins/blockquote/lang/cy.js
index 5fd7bf69..3d6f85e2 100644
--- a/plugins/blockquote/lang/cy.js
+++ b/plugins/blockquote/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'cy', {
diff --git a/plugins/blockquote/lang/da.js b/plugins/blockquote/lang/da.js
index c74d945d..ad84f264 100644
--- a/plugins/blockquote/lang/da.js
+++ b/plugins/blockquote/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'da', {
diff --git a/plugins/blockquote/lang/de-ch.js b/plugins/blockquote/lang/de-ch.js
index a6cf0f93..cd906e55 100644
--- a/plugins/blockquote/lang/de-ch.js
+++ b/plugins/blockquote/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'de-ch', {
diff --git a/plugins/blockquote/lang/de.js b/plugins/blockquote/lang/de.js
index fed2c47b..d98e34bc 100644
--- a/plugins/blockquote/lang/de.js
+++ b/plugins/blockquote/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'de', {
diff --git a/plugins/blockquote/lang/el.js b/plugins/blockquote/lang/el.js
index b4fa0495..e8b5f248 100644
--- a/plugins/blockquote/lang/el.js
+++ b/plugins/blockquote/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'el', {
diff --git a/plugins/blockquote/lang/en-au.js b/plugins/blockquote/lang/en-au.js
index 1e98bb11..072053fd 100644
--- a/plugins/blockquote/lang/en-au.js
+++ b/plugins/blockquote/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'en-au', {
diff --git a/plugins/blockquote/lang/en-ca.js b/plugins/blockquote/lang/en-ca.js
index 0edf3a49..02479bbe 100644
--- a/plugins/blockquote/lang/en-ca.js
+++ b/plugins/blockquote/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'en-ca', {
diff --git a/plugins/blockquote/lang/en-gb.js b/plugins/blockquote/lang/en-gb.js
index b2a508f7..b9af3a29 100644
--- a/plugins/blockquote/lang/en-gb.js
+++ b/plugins/blockquote/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'en-gb', {
diff --git a/plugins/blockquote/lang/en.js b/plugins/blockquote/lang/en.js
index f1927c1e..3c3f2a47 100644
--- a/plugins/blockquote/lang/en.js
+++ b/plugins/blockquote/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'en', {
diff --git a/plugins/blockquote/lang/eo.js b/plugins/blockquote/lang/eo.js
index ca07933d..6814499e 100644
--- a/plugins/blockquote/lang/eo.js
+++ b/plugins/blockquote/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'eo', {
diff --git a/plugins/blockquote/lang/es-mx.js b/plugins/blockquote/lang/es-mx.js
index 754e6e45..7f62cd64 100644
--- a/plugins/blockquote/lang/es-mx.js
+++ b/plugins/blockquote/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'es-mx', {
diff --git a/plugins/blockquote/lang/es.js b/plugins/blockquote/lang/es.js
index 031c6200..486b28de 100644
--- a/plugins/blockquote/lang/es.js
+++ b/plugins/blockquote/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'es', {
diff --git a/plugins/blockquote/lang/et.js b/plugins/blockquote/lang/et.js
index 8561c77d..92070111 100644
--- a/plugins/blockquote/lang/et.js
+++ b/plugins/blockquote/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'et', {
diff --git a/plugins/blockquote/lang/eu.js b/plugins/blockquote/lang/eu.js
index b61e2410..d7a4a60b 100644
--- a/plugins/blockquote/lang/eu.js
+++ b/plugins/blockquote/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'eu', {
diff --git a/plugins/blockquote/lang/fa.js b/plugins/blockquote/lang/fa.js
index 26f23ca4..a63b54a4 100644
--- a/plugins/blockquote/lang/fa.js
+++ b/plugins/blockquote/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'fa', {
diff --git a/plugins/blockquote/lang/fi.js b/plugins/blockquote/lang/fi.js
index bac0e490..0ed8ab95 100644
--- a/plugins/blockquote/lang/fi.js
+++ b/plugins/blockquote/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'fi', {
diff --git a/plugins/blockquote/lang/fo.js b/plugins/blockquote/lang/fo.js
index 117ef496..f75eb6f4 100644
--- a/plugins/blockquote/lang/fo.js
+++ b/plugins/blockquote/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'fo', {
diff --git a/plugins/blockquote/lang/fr-ca.js b/plugins/blockquote/lang/fr-ca.js
index 6ed25947..e675193e 100644
--- a/plugins/blockquote/lang/fr-ca.js
+++ b/plugins/blockquote/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'fr-ca', {
diff --git a/plugins/blockquote/lang/fr.js b/plugins/blockquote/lang/fr.js
index 517893da..cb5b7f96 100644
--- a/plugins/blockquote/lang/fr.js
+++ b/plugins/blockquote/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'fr', {
diff --git a/plugins/blockquote/lang/gl.js b/plugins/blockquote/lang/gl.js
index 27bc639e..344b0f0d 100644
--- a/plugins/blockquote/lang/gl.js
+++ b/plugins/blockquote/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'gl', {
diff --git a/plugins/blockquote/lang/gu.js b/plugins/blockquote/lang/gu.js
index 2215a9b2..a5f3fcda 100644
--- a/plugins/blockquote/lang/gu.js
+++ b/plugins/blockquote/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'gu', {
diff --git a/plugins/blockquote/lang/he.js b/plugins/blockquote/lang/he.js
index cf5a88ff..042b2172 100644
--- a/plugins/blockquote/lang/he.js
+++ b/plugins/blockquote/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'he', {
diff --git a/plugins/blockquote/lang/hi.js b/plugins/blockquote/lang/hi.js
index 9dde7689..440ec74a 100644
--- a/plugins/blockquote/lang/hi.js
+++ b/plugins/blockquote/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'hi', {
diff --git a/plugins/blockquote/lang/hr.js b/plugins/blockquote/lang/hr.js
index 428edb20..515a1721 100644
--- a/plugins/blockquote/lang/hr.js
+++ b/plugins/blockquote/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'hr', {
diff --git a/plugins/blockquote/lang/hu.js b/plugins/blockquote/lang/hu.js
index 8cd144d6..b4d176be 100644
--- a/plugins/blockquote/lang/hu.js
+++ b/plugins/blockquote/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'hu', {
diff --git a/plugins/blockquote/lang/id.js b/plugins/blockquote/lang/id.js
index 0de59838..cda48331 100644
--- a/plugins/blockquote/lang/id.js
+++ b/plugins/blockquote/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'id', {
diff --git a/plugins/blockquote/lang/is.js b/plugins/blockquote/lang/is.js
index 0c50e9f7..2cc900bd 100644
--- a/plugins/blockquote/lang/is.js
+++ b/plugins/blockquote/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'is', {
diff --git a/plugins/blockquote/lang/it.js b/plugins/blockquote/lang/it.js
index 2dc7ba0b..20466f9c 100644
--- a/plugins/blockquote/lang/it.js
+++ b/plugins/blockquote/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'it', {
diff --git a/plugins/blockquote/lang/ja.js b/plugins/blockquote/lang/ja.js
index e5760ff9..e785aa5b 100644
--- a/plugins/blockquote/lang/ja.js
+++ b/plugins/blockquote/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'ja', {
diff --git a/plugins/blockquote/lang/ka.js b/plugins/blockquote/lang/ka.js
index 642517d4..c43aef15 100644
--- a/plugins/blockquote/lang/ka.js
+++ b/plugins/blockquote/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'ka', {
diff --git a/plugins/blockquote/lang/km.js b/plugins/blockquote/lang/km.js
index 092b5553..17cb2d8f 100644
--- a/plugins/blockquote/lang/km.js
+++ b/plugins/blockquote/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'km', {
diff --git a/plugins/blockquote/lang/ko.js b/plugins/blockquote/lang/ko.js
index 465c681f..0c2eca99 100644
--- a/plugins/blockquote/lang/ko.js
+++ b/plugins/blockquote/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'ko', {
diff --git a/plugins/blockquote/lang/ku.js b/plugins/blockquote/lang/ku.js
index c2ab9257..ea8e3d0d 100644
--- a/plugins/blockquote/lang/ku.js
+++ b/plugins/blockquote/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'ku', {
diff --git a/plugins/blockquote/lang/lt.js b/plugins/blockquote/lang/lt.js
index 345fb932..7424d3dd 100644
--- a/plugins/blockquote/lang/lt.js
+++ b/plugins/blockquote/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'lt', {
diff --git a/plugins/blockquote/lang/lv.js b/plugins/blockquote/lang/lv.js
index 329207e4..0487f32c 100644
--- a/plugins/blockquote/lang/lv.js
+++ b/plugins/blockquote/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'lv', {
diff --git a/plugins/blockquote/lang/mk.js b/plugins/blockquote/lang/mk.js
index abf0d0b5..b8549dce 100644
--- a/plugins/blockquote/lang/mk.js
+++ b/plugins/blockquote/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'mk', {
diff --git a/plugins/blockquote/lang/mn.js b/plugins/blockquote/lang/mn.js
index 771bf81b..1c900ac2 100644
--- a/plugins/blockquote/lang/mn.js
+++ b/plugins/blockquote/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'mn', {
diff --git a/plugins/blockquote/lang/ms.js b/plugins/blockquote/lang/ms.js
index a184d872..19745ddc 100644
--- a/plugins/blockquote/lang/ms.js
+++ b/plugins/blockquote/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'ms', {
diff --git a/plugins/blockquote/lang/nb.js b/plugins/blockquote/lang/nb.js
index dd4fb3a2..9c6ac955 100644
--- a/plugins/blockquote/lang/nb.js
+++ b/plugins/blockquote/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'nb', {
diff --git a/plugins/blockquote/lang/nl.js b/plugins/blockquote/lang/nl.js
index 3bb26a9f..992bad38 100644
--- a/plugins/blockquote/lang/nl.js
+++ b/plugins/blockquote/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'nl', {
diff --git a/plugins/blockquote/lang/no.js b/plugins/blockquote/lang/no.js
index 7339cca5..cf5a284e 100644
--- a/plugins/blockquote/lang/no.js
+++ b/plugins/blockquote/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'no', {
diff --git a/plugins/blockquote/lang/oc.js b/plugins/blockquote/lang/oc.js
index 006765f9..52577e1a 100644
--- a/plugins/blockquote/lang/oc.js
+++ b/plugins/blockquote/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'oc', {
diff --git a/plugins/blockquote/lang/pl.js b/plugins/blockquote/lang/pl.js
index c58cacdc..fd85b56e 100644
--- a/plugins/blockquote/lang/pl.js
+++ b/plugins/blockquote/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'pl', {
diff --git a/plugins/blockquote/lang/pt-br.js b/plugins/blockquote/lang/pt-br.js
index 1e3c8b44..ccd9ebb5 100644
--- a/plugins/blockquote/lang/pt-br.js
+++ b/plugins/blockquote/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'pt-br', {
diff --git a/plugins/blockquote/lang/pt.js b/plugins/blockquote/lang/pt.js
index b9da9a9e..fef5c8d4 100644
--- a/plugins/blockquote/lang/pt.js
+++ b/plugins/blockquote/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'pt', {
diff --git a/plugins/blockquote/lang/ro.js b/plugins/blockquote/lang/ro.js
index 8effb68e..3e78090a 100644
--- a/plugins/blockquote/lang/ro.js
+++ b/plugins/blockquote/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'ro', {
diff --git a/plugins/blockquote/lang/ru.js b/plugins/blockquote/lang/ru.js
index 48fdecfb..f9578b53 100644
--- a/plugins/blockquote/lang/ru.js
+++ b/plugins/blockquote/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'ru', {
diff --git a/plugins/blockquote/lang/si.js b/plugins/blockquote/lang/si.js
index a92880df..34358fdb 100644
--- a/plugins/blockquote/lang/si.js
+++ b/plugins/blockquote/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'si', {
diff --git a/plugins/blockquote/lang/sk.js b/plugins/blockquote/lang/sk.js
index 520c9885..dc9e079c 100644
--- a/plugins/blockquote/lang/sk.js
+++ b/plugins/blockquote/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'sk', {
diff --git a/plugins/blockquote/lang/sl.js b/plugins/blockquote/lang/sl.js
index 31a53766..12cc0158 100644
--- a/plugins/blockquote/lang/sl.js
+++ b/plugins/blockquote/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'sl', {
diff --git a/plugins/blockquote/lang/sq.js b/plugins/blockquote/lang/sq.js
index d67138b3..9c54388f 100644
--- a/plugins/blockquote/lang/sq.js
+++ b/plugins/blockquote/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'sq', {
diff --git a/plugins/blockquote/lang/sr-latn.js b/plugins/blockquote/lang/sr-latn.js
index b850198a..e78486ca 100644
--- a/plugins/blockquote/lang/sr-latn.js
+++ b/plugins/blockquote/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'sr-latn', {
diff --git a/plugins/blockquote/lang/sr.js b/plugins/blockquote/lang/sr.js
index d5aef24f..99ead1aa 100644
--- a/plugins/blockquote/lang/sr.js
+++ b/plugins/blockquote/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'sr', {
diff --git a/plugins/blockquote/lang/sv.js b/plugins/blockquote/lang/sv.js
index 552ec3c1..c63d1c5a 100644
--- a/plugins/blockquote/lang/sv.js
+++ b/plugins/blockquote/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'sv', {
diff --git a/plugins/blockquote/lang/th.js b/plugins/blockquote/lang/th.js
index 870216d7..bb0e97b3 100644
--- a/plugins/blockquote/lang/th.js
+++ b/plugins/blockquote/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'th', {
diff --git a/plugins/blockquote/lang/tr.js b/plugins/blockquote/lang/tr.js
index 22584aa9..f8c1daee 100644
--- a/plugins/blockquote/lang/tr.js
+++ b/plugins/blockquote/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'tr', {
diff --git a/plugins/blockquote/lang/tt.js b/plugins/blockquote/lang/tt.js
index 7357f413..fad84e8a 100644
--- a/plugins/blockquote/lang/tt.js
+++ b/plugins/blockquote/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'tt', {
diff --git a/plugins/blockquote/lang/ug.js b/plugins/blockquote/lang/ug.js
index e75c799b..068385a1 100644
--- a/plugins/blockquote/lang/ug.js
+++ b/plugins/blockquote/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'ug', {
diff --git a/plugins/blockquote/lang/uk.js b/plugins/blockquote/lang/uk.js
index 690609bc..a5ca0a14 100644
--- a/plugins/blockquote/lang/uk.js
+++ b/plugins/blockquote/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'uk', {
diff --git a/plugins/blockquote/lang/vi.js b/plugins/blockquote/lang/vi.js
index abe6d24c..a6dff49c 100644
--- a/plugins/blockquote/lang/vi.js
+++ b/plugins/blockquote/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'vi', {
diff --git a/plugins/blockquote/lang/zh-cn.js b/plugins/blockquote/lang/zh-cn.js
index b7b5c65b..18021a63 100644
--- a/plugins/blockquote/lang/zh-cn.js
+++ b/plugins/blockquote/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'zh-cn', {
diff --git a/plugins/blockquote/lang/zh.js b/plugins/blockquote/lang/zh.js
index 89a06e67..4c6c79c5 100644
--- a/plugins/blockquote/lang/zh.js
+++ b/plugins/blockquote/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'blockquote', 'zh', {
diff --git a/plugins/blockquote/plugin.js b/plugins/blockquote/plugin.js
index a2eb719f..2d2adb21 100755
--- a/plugins/blockquote/plugin.js
+++ b/plugins/blockquote/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/button/plugin.js b/plugins/button/plugin.js
index 5ce68c9e..19ece842 100644
--- a/plugins/button/plugin.js
+++ b/plugins/button/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/clipboard/dev/clipboard.html b/plugins/clipboard/dev/clipboard.html
index 3366d668..d65218df 100644
--- a/plugins/clipboard/dev/clipboard.html
+++ b/plugins/clipboard/dev/clipboard.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
diff --git a/plugins/clipboard/dev/console.js b/plugins/clipboard/dev/console.js
index 0e8a2fed..f3359b0b 100644
--- a/plugins/clipboard/dev/console.js
+++ b/plugins/clipboard/dev/console.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/clipboard/dev/dnd.html b/plugins/clipboard/dev/dnd.html
index 9698c137..b90a4197 100644
--- a/plugins/clipboard/dev/dnd.html
+++ b/plugins/clipboard/dev/dnd.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
diff --git a/plugins/clipboard/dialogs/paste.js b/plugins/clipboard/dialogs/paste.js
index 9509fb51..7dfc067a 100644
--- a/plugins/clipboard/dialogs/paste.js
+++ b/plugins/clipboard/dialogs/paste.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/clipboard/lang/af.js b/plugins/clipboard/lang/af.js
index 94c3ef35..9eed13da 100644
--- a/plugins/clipboard/lang/af.js
+++ b/plugins/clipboard/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'af', {
diff --git a/plugins/clipboard/lang/ar.js b/plugins/clipboard/lang/ar.js
index 8a5b7355..7e9bb4c2 100644
--- a/plugins/clipboard/lang/ar.js
+++ b/plugins/clipboard/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'ar', {
diff --git a/plugins/clipboard/lang/az.js b/plugins/clipboard/lang/az.js
index 79b0601f..634aa0db 100644
--- a/plugins/clipboard/lang/az.js
+++ b/plugins/clipboard/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'az', {
diff --git a/plugins/clipboard/lang/bg.js b/plugins/clipboard/lang/bg.js
index 1968ebed..1e80e545 100644
--- a/plugins/clipboard/lang/bg.js
+++ b/plugins/clipboard/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'bg', {
diff --git a/plugins/clipboard/lang/bn.js b/plugins/clipboard/lang/bn.js
index 63201224..edbca740 100644
--- a/plugins/clipboard/lang/bn.js
+++ b/plugins/clipboard/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'bn', {
diff --git a/plugins/clipboard/lang/bs.js b/plugins/clipboard/lang/bs.js
index 258c22d4..12b2141d 100644
--- a/plugins/clipboard/lang/bs.js
+++ b/plugins/clipboard/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'bs', {
diff --git a/plugins/clipboard/lang/ca.js b/plugins/clipboard/lang/ca.js
index 39626ca0..906efe40 100644
--- a/plugins/clipboard/lang/ca.js
+++ b/plugins/clipboard/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'ca', {
diff --git a/plugins/clipboard/lang/cs.js b/plugins/clipboard/lang/cs.js
index 0df93332..27cc5581 100644
--- a/plugins/clipboard/lang/cs.js
+++ b/plugins/clipboard/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'cs', {
diff --git a/plugins/clipboard/lang/cy.js b/plugins/clipboard/lang/cy.js
index 483c7e7c..079efe91 100644
--- a/plugins/clipboard/lang/cy.js
+++ b/plugins/clipboard/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'cy', {
diff --git a/plugins/clipboard/lang/da.js b/plugins/clipboard/lang/da.js
index 121b52c8..49cb35cf 100644
--- a/plugins/clipboard/lang/da.js
+++ b/plugins/clipboard/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'da', {
diff --git a/plugins/clipboard/lang/de-ch.js b/plugins/clipboard/lang/de-ch.js
index ce0dfe5e..66c4c0dc 100644
--- a/plugins/clipboard/lang/de-ch.js
+++ b/plugins/clipboard/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'de-ch', {
diff --git a/plugins/clipboard/lang/de.js b/plugins/clipboard/lang/de.js
index 8a941733..519b3226 100644
--- a/plugins/clipboard/lang/de.js
+++ b/plugins/clipboard/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'de', {
diff --git a/plugins/clipboard/lang/el.js b/plugins/clipboard/lang/el.js
index 5907458f..87cc3404 100644
--- a/plugins/clipboard/lang/el.js
+++ b/plugins/clipboard/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'el', {
diff --git a/plugins/clipboard/lang/en-au.js b/plugins/clipboard/lang/en-au.js
index e7a79ac9..1b521105 100644
--- a/plugins/clipboard/lang/en-au.js
+++ b/plugins/clipboard/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'en-au', {
diff --git a/plugins/clipboard/lang/en-ca.js b/plugins/clipboard/lang/en-ca.js
index a1309ded..b6f16ee0 100644
--- a/plugins/clipboard/lang/en-ca.js
+++ b/plugins/clipboard/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'en-ca', {
diff --git a/plugins/clipboard/lang/en-gb.js b/plugins/clipboard/lang/en-gb.js
index 503189bf..47e1c972 100644
--- a/plugins/clipboard/lang/en-gb.js
+++ b/plugins/clipboard/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'en-gb', {
diff --git a/plugins/clipboard/lang/en.js b/plugins/clipboard/lang/en.js
index 7cb1dbc7..b09df810 100644
--- a/plugins/clipboard/lang/en.js
+++ b/plugins/clipboard/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'en', {
diff --git a/plugins/clipboard/lang/eo.js b/plugins/clipboard/lang/eo.js
index dc78496d..edbbeb4e 100644
--- a/plugins/clipboard/lang/eo.js
+++ b/plugins/clipboard/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'eo', {
diff --git a/plugins/clipboard/lang/es-mx.js b/plugins/clipboard/lang/es-mx.js
index 6663ba1c..543c9877 100644
--- a/plugins/clipboard/lang/es-mx.js
+++ b/plugins/clipboard/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'es-mx', {
diff --git a/plugins/clipboard/lang/es.js b/plugins/clipboard/lang/es.js
index aeaea39a..8855b41e 100644
--- a/plugins/clipboard/lang/es.js
+++ b/plugins/clipboard/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'es', {
diff --git a/plugins/clipboard/lang/et.js b/plugins/clipboard/lang/et.js
index a9f997be..2941ed63 100644
--- a/plugins/clipboard/lang/et.js
+++ b/plugins/clipboard/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'et', {
diff --git a/plugins/clipboard/lang/eu.js b/plugins/clipboard/lang/eu.js
index 039868a3..1efe334b 100644
--- a/plugins/clipboard/lang/eu.js
+++ b/plugins/clipboard/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'eu', {
diff --git a/plugins/clipboard/lang/fa.js b/plugins/clipboard/lang/fa.js
index b45dea73..53f1686f 100644
--- a/plugins/clipboard/lang/fa.js
+++ b/plugins/clipboard/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'fa', {
diff --git a/plugins/clipboard/lang/fi.js b/plugins/clipboard/lang/fi.js
index dabed856..4684c4ea 100644
--- a/plugins/clipboard/lang/fi.js
+++ b/plugins/clipboard/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'fi', {
diff --git a/plugins/clipboard/lang/fo.js b/plugins/clipboard/lang/fo.js
index bba335d2..ca703e9a 100644
--- a/plugins/clipboard/lang/fo.js
+++ b/plugins/clipboard/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'fo', {
diff --git a/plugins/clipboard/lang/fr-ca.js b/plugins/clipboard/lang/fr-ca.js
index 4fd53bef..2d908a80 100644
--- a/plugins/clipboard/lang/fr-ca.js
+++ b/plugins/clipboard/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'fr-ca', {
diff --git a/plugins/clipboard/lang/fr.js b/plugins/clipboard/lang/fr.js
index fd69e6d9..0563971f 100644
--- a/plugins/clipboard/lang/fr.js
+++ b/plugins/clipboard/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'fr', {
diff --git a/plugins/clipboard/lang/gl.js b/plugins/clipboard/lang/gl.js
index 41f8f1a1..6a5b4023 100644
--- a/plugins/clipboard/lang/gl.js
+++ b/plugins/clipboard/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'gl', {
diff --git a/plugins/clipboard/lang/gu.js b/plugins/clipboard/lang/gu.js
index 11e1408f..72c4dd45 100644
--- a/plugins/clipboard/lang/gu.js
+++ b/plugins/clipboard/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'gu', {
diff --git a/plugins/clipboard/lang/he.js b/plugins/clipboard/lang/he.js
index 31f20156..42040d7a 100644
--- a/plugins/clipboard/lang/he.js
+++ b/plugins/clipboard/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'he', {
diff --git a/plugins/clipboard/lang/hi.js b/plugins/clipboard/lang/hi.js
index fb0587c6..7372a10c 100644
--- a/plugins/clipboard/lang/hi.js
+++ b/plugins/clipboard/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'hi', {
diff --git a/plugins/clipboard/lang/hr.js b/plugins/clipboard/lang/hr.js
index d404d857..20777863 100644
--- a/plugins/clipboard/lang/hr.js
+++ b/plugins/clipboard/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'hr', {
diff --git a/plugins/clipboard/lang/hu.js b/plugins/clipboard/lang/hu.js
index 370a2570..9a9617fa 100644
--- a/plugins/clipboard/lang/hu.js
+++ b/plugins/clipboard/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'hu', {
diff --git a/plugins/clipboard/lang/id.js b/plugins/clipboard/lang/id.js
index eabe78c5..a95a854b 100644
--- a/plugins/clipboard/lang/id.js
+++ b/plugins/clipboard/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'id', {
diff --git a/plugins/clipboard/lang/is.js b/plugins/clipboard/lang/is.js
index 44f98832..7e11f26a 100644
--- a/plugins/clipboard/lang/is.js
+++ b/plugins/clipboard/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'is', {
diff --git a/plugins/clipboard/lang/it.js b/plugins/clipboard/lang/it.js
index ff5732cf..df472947 100644
--- a/plugins/clipboard/lang/it.js
+++ b/plugins/clipboard/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'it', {
diff --git a/plugins/clipboard/lang/ja.js b/plugins/clipboard/lang/ja.js
index e6a7240c..675f1cda 100644
--- a/plugins/clipboard/lang/ja.js
+++ b/plugins/clipboard/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'ja', {
diff --git a/plugins/clipboard/lang/ka.js b/plugins/clipboard/lang/ka.js
index b3fd03d3..e593554c 100644
--- a/plugins/clipboard/lang/ka.js
+++ b/plugins/clipboard/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'ka', {
diff --git a/plugins/clipboard/lang/km.js b/plugins/clipboard/lang/km.js
index 4cb5dd8f..ea3490e8 100644
--- a/plugins/clipboard/lang/km.js
+++ b/plugins/clipboard/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'km', {
diff --git a/plugins/clipboard/lang/ko.js b/plugins/clipboard/lang/ko.js
index 3a7858d7..ffcbd8d9 100644
--- a/plugins/clipboard/lang/ko.js
+++ b/plugins/clipboard/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'ko', {
diff --git a/plugins/clipboard/lang/ku.js b/plugins/clipboard/lang/ku.js
index 165f9458..dbaf67ab 100644
--- a/plugins/clipboard/lang/ku.js
+++ b/plugins/clipboard/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'ku', {
diff --git a/plugins/clipboard/lang/lt.js b/plugins/clipboard/lang/lt.js
index 787378c4..df71bbeb 100644
--- a/plugins/clipboard/lang/lt.js
+++ b/plugins/clipboard/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'lt', {
diff --git a/plugins/clipboard/lang/lv.js b/plugins/clipboard/lang/lv.js
index f28b5908..b63ccaee 100644
--- a/plugins/clipboard/lang/lv.js
+++ b/plugins/clipboard/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'lv', {
diff --git a/plugins/clipboard/lang/mk.js b/plugins/clipboard/lang/mk.js
index e077be0a..c06eec88 100644
--- a/plugins/clipboard/lang/mk.js
+++ b/plugins/clipboard/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'mk', {
diff --git a/plugins/clipboard/lang/mn.js b/plugins/clipboard/lang/mn.js
index 327cfa88..cc0cab8e 100644
--- a/plugins/clipboard/lang/mn.js
+++ b/plugins/clipboard/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'mn', {
diff --git a/plugins/clipboard/lang/ms.js b/plugins/clipboard/lang/ms.js
index a00e05d0..abd68a3b 100644
--- a/plugins/clipboard/lang/ms.js
+++ b/plugins/clipboard/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'ms', {
diff --git a/plugins/clipboard/lang/nb.js b/plugins/clipboard/lang/nb.js
index d3d44bf6..2203b36b 100644
--- a/plugins/clipboard/lang/nb.js
+++ b/plugins/clipboard/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'nb', {
diff --git a/plugins/clipboard/lang/nl.js b/plugins/clipboard/lang/nl.js
index d7ac98ea..177891d9 100644
--- a/plugins/clipboard/lang/nl.js
+++ b/plugins/clipboard/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'nl', {
diff --git a/plugins/clipboard/lang/no.js b/plugins/clipboard/lang/no.js
index 4c7eec1a..7b129b96 100644
--- a/plugins/clipboard/lang/no.js
+++ b/plugins/clipboard/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'no', {
diff --git a/plugins/clipboard/lang/oc.js b/plugins/clipboard/lang/oc.js
index 7a1b71e3..520023ce 100644
--- a/plugins/clipboard/lang/oc.js
+++ b/plugins/clipboard/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'oc', {
diff --git a/plugins/clipboard/lang/pl.js b/plugins/clipboard/lang/pl.js
index fa60c424..46a40b9d 100644
--- a/plugins/clipboard/lang/pl.js
+++ b/plugins/clipboard/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'pl', {
diff --git a/plugins/clipboard/lang/pt-br.js b/plugins/clipboard/lang/pt-br.js
index 0ee3365c..1291236e 100644
--- a/plugins/clipboard/lang/pt-br.js
+++ b/plugins/clipboard/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'pt-br', {
@@ -11,6 +11,6 @@ CKEDITOR.plugins.setLang( 'clipboard', 'pt-br', {
 	pasteNotification: 'Pressione %1 para colar. Seu navegador não permite colar pelos botões da barra de tarefas ou pelo menu de contexto.',
 	pasteArea: 'Área para Colar',
 	pasteMsg: 'Cole o conteúdo na área abaixo e pressione OK.',
-	fileFormatNotSupportedNotification: 'The ${formats} file format(s) are not supported.', // MISSING
-	fileWithoutFormatNotSupportedNotification: 'The file format is not supported.' // MISSING
+	fileFormatNotSupportedNotification: 'Os formatos de arquivo ${formats} não são suportados.',
+	fileWithoutFormatNotSupportedNotification: 'Formato de arquivo não suportado.'
 } );
diff --git a/plugins/clipboard/lang/pt.js b/plugins/clipboard/lang/pt.js
index 54ea6c15..2949bbfc 100644
--- a/plugins/clipboard/lang/pt.js
+++ b/plugins/clipboard/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'pt', {
diff --git a/plugins/clipboard/lang/ro.js b/plugins/clipboard/lang/ro.js
index 067b599c..5ebd972f 100644
--- a/plugins/clipboard/lang/ro.js
+++ b/plugins/clipboard/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'ro', {
diff --git a/plugins/clipboard/lang/ru.js b/plugins/clipboard/lang/ru.js
index 519260f5..1d909c01 100644
--- a/plugins/clipboard/lang/ru.js
+++ b/plugins/clipboard/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'ru', {
diff --git a/plugins/clipboard/lang/si.js b/plugins/clipboard/lang/si.js
index b258930f..1d7bef8d 100644
--- a/plugins/clipboard/lang/si.js
+++ b/plugins/clipboard/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'si', {
diff --git a/plugins/clipboard/lang/sk.js b/plugins/clipboard/lang/sk.js
index cfbe4e6e..2947e77c 100644
--- a/plugins/clipboard/lang/sk.js
+++ b/plugins/clipboard/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'sk', {
diff --git a/plugins/clipboard/lang/sl.js b/plugins/clipboard/lang/sl.js
index ce54d70a..8f8e3e93 100644
--- a/plugins/clipboard/lang/sl.js
+++ b/plugins/clipboard/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'sl', {
diff --git a/plugins/clipboard/lang/sq.js b/plugins/clipboard/lang/sq.js
index 6ef23553..65aa89cc 100644
--- a/plugins/clipboard/lang/sq.js
+++ b/plugins/clipboard/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'sq', {
diff --git a/plugins/clipboard/lang/sr-latn.js b/plugins/clipboard/lang/sr-latn.js
index d8110001..4f3219ad 100644
--- a/plugins/clipboard/lang/sr-latn.js
+++ b/plugins/clipboard/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'sr-latn', {
@@ -11,6 +11,6 @@ CKEDITOR.plugins.setLang( 'clipboard', 'sr-latn', {
 	pasteNotification: '"Pritisnite taster %1 za lepljenje. Vaš pretraživač ne dozvoljava lepljenje iz alatne trake ili menia.',
 	pasteArea: 'Prostor za lepljenje',
 	pasteMsg: 'Nalepite sadržaj u sledeći prostor i pritisnite taster OK.',
-	fileFormatNotSupportedNotification: 'The ${formats} file format(s) are not supported.', // MISSING
-	fileWithoutFormatNotSupportedNotification: 'The file format is not supported.' // MISSING
+	fileFormatNotSupportedNotification: 'Formati datoteke ${formats} nisu podržani.',
+	fileWithoutFormatNotSupportedNotification: 'Format datoteke nije podržan.'
 } );
diff --git a/plugins/clipboard/lang/sr.js b/plugins/clipboard/lang/sr.js
index ab972665..bb5c5ee2 100644
--- a/plugins/clipboard/lang/sr.js
+++ b/plugins/clipboard/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'sr', {
@@ -11,6 +11,6 @@ CKEDITOR.plugins.setLang( 'clipboard', 'sr', {
 	pasteNotification: 'Притисните тастер %1 за лепљење. Ваш ретраживач не дозвољаба лепљење из алатне траке или мениа.',
 	pasteArea: 'Залепи зону',
 	pasteMsg: 'Налепите садржај у следећи простор и притисните тастер OK.',
-	fileFormatNotSupportedNotification: 'The ${formats} file format(s) are not supported.', // MISSING
-	fileWithoutFormatNotSupportedNotification: 'The file format is not supported.' // MISSING
+	fileFormatNotSupportedNotification: 'Формати датотеке ${форматс} нису подржани.',
+	fileWithoutFormatNotSupportedNotification: 'Формат датотеке није подржан.'
 } );
diff --git a/plugins/clipboard/lang/sv.js b/plugins/clipboard/lang/sv.js
index f77ea98c..4059829a 100644
--- a/plugins/clipboard/lang/sv.js
+++ b/plugins/clipboard/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'sv', {
diff --git a/plugins/clipboard/lang/th.js b/plugins/clipboard/lang/th.js
index cdb42fa3..74fbf8df 100644
--- a/plugins/clipboard/lang/th.js
+++ b/plugins/clipboard/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'th', {
diff --git a/plugins/clipboard/lang/tr.js b/plugins/clipboard/lang/tr.js
index 1fd4054c..1363c3a1 100644
--- a/plugins/clipboard/lang/tr.js
+++ b/plugins/clipboard/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'tr', {
diff --git a/plugins/clipboard/lang/tt.js b/plugins/clipboard/lang/tt.js
index bc36fa2f..30f9251d 100644
--- a/plugins/clipboard/lang/tt.js
+++ b/plugins/clipboard/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'tt', {
diff --git a/plugins/clipboard/lang/ug.js b/plugins/clipboard/lang/ug.js
index 1c7685af..6868a322 100644
--- a/plugins/clipboard/lang/ug.js
+++ b/plugins/clipboard/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'ug', {
diff --git a/plugins/clipboard/lang/uk.js b/plugins/clipboard/lang/uk.js
index f1aeec1f..e0e7bd4e 100644
--- a/plugins/clipboard/lang/uk.js
+++ b/plugins/clipboard/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'uk', {
diff --git a/plugins/clipboard/lang/vi.js b/plugins/clipboard/lang/vi.js
index 050b4b4e..fd2dc05f 100644
--- a/plugins/clipboard/lang/vi.js
+++ b/plugins/clipboard/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'vi', {
diff --git a/plugins/clipboard/lang/zh-cn.js b/plugins/clipboard/lang/zh-cn.js
index e0977f50..7719e1db 100644
--- a/plugins/clipboard/lang/zh-cn.js
+++ b/plugins/clipboard/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'zh-cn', {
diff --git a/plugins/clipboard/lang/zh.js b/plugins/clipboard/lang/zh.js
index 7e9e0d55..4be11142 100644
--- a/plugins/clipboard/lang/zh.js
+++ b/plugins/clipboard/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'clipboard', 'zh', {
diff --git a/plugins/clipboard/plugin.js b/plugins/clipboard/plugin.js
index 45b1a36d..2bc5813c 100644
--- a/plugins/clipboard/plugin.js
+++ b/plugins/clipboard/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/cloudservices/plugin.js b/plugins/cloudservices/plugin.js
index 8c1e09b0..8a75bf57 100644
--- a/plugins/cloudservices/plugin.js
+++ b/plugins/cloudservices/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/dialogs/codesnippet.js b/plugins/codesnippet/dialogs/codesnippet.js
index 88a55602..84dd7129 100644
--- a/plugins/codesnippet/dialogs/codesnippet.js
+++ b/plugins/codesnippet/dialogs/codesnippet.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/ar.js b/plugins/codesnippet/lang/ar.js
index bb5b490b..6cc5fe55 100644
--- a/plugins/codesnippet/lang/ar.js
+++ b/plugins/codesnippet/lang/ar.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/az.js b/plugins/codesnippet/lang/az.js
index 58c702cc..42b63f0b 100644
--- a/plugins/codesnippet/lang/az.js
+++ b/plugins/codesnippet/lang/az.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/bg.js b/plugins/codesnippet/lang/bg.js
index 7655acf2..fdaa92ab 100644
--- a/plugins/codesnippet/lang/bg.js
+++ b/plugins/codesnippet/lang/bg.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/ca.js b/plugins/codesnippet/lang/ca.js
index 53e4f2fb..d61ac50d 100644
--- a/plugins/codesnippet/lang/ca.js
+++ b/plugins/codesnippet/lang/ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/cs.js b/plugins/codesnippet/lang/cs.js
index dc800961..e0ff87e8 100644
--- a/plugins/codesnippet/lang/cs.js
+++ b/plugins/codesnippet/lang/cs.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/da.js b/plugins/codesnippet/lang/da.js
index 3fac8542..db6555b4 100644
--- a/plugins/codesnippet/lang/da.js
+++ b/plugins/codesnippet/lang/da.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/de-ch.js b/plugins/codesnippet/lang/de-ch.js
index 0da590d8..92ecdc89 100644
--- a/plugins/codesnippet/lang/de-ch.js
+++ b/plugins/codesnippet/lang/de-ch.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/de.js b/plugins/codesnippet/lang/de.js
index d5c5e18b..81b60a96 100644
--- a/plugins/codesnippet/lang/de.js
+++ b/plugins/codesnippet/lang/de.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/el.js b/plugins/codesnippet/lang/el.js
index a7542ce5..eb9723ff 100644
--- a/plugins/codesnippet/lang/el.js
+++ b/plugins/codesnippet/lang/el.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/en-au.js b/plugins/codesnippet/lang/en-au.js
index ad1d5d35..b8d965d7 100644
--- a/plugins/codesnippet/lang/en-au.js
+++ b/plugins/codesnippet/lang/en-au.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/en-gb.js b/plugins/codesnippet/lang/en-gb.js
index 99271ce3..d8277690 100644
--- a/plugins/codesnippet/lang/en-gb.js
+++ b/plugins/codesnippet/lang/en-gb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/en.js b/plugins/codesnippet/lang/en.js
index f48f7dea..b91856f4 100644
--- a/plugins/codesnippet/lang/en.js
+++ b/plugins/codesnippet/lang/en.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/eo.js b/plugins/codesnippet/lang/eo.js
index 047964a4..7c524c52 100644
--- a/plugins/codesnippet/lang/eo.js
+++ b/plugins/codesnippet/lang/eo.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/es-mx.js b/plugins/codesnippet/lang/es-mx.js
index abe20624..57beaa14 100644
--- a/plugins/codesnippet/lang/es-mx.js
+++ b/plugins/codesnippet/lang/es-mx.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/es.js b/plugins/codesnippet/lang/es.js
index eb613a6f..a86b56c9 100644
--- a/plugins/codesnippet/lang/es.js
+++ b/plugins/codesnippet/lang/es.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/et.js b/plugins/codesnippet/lang/et.js
index da384fd7..4338fcde 100644
--- a/plugins/codesnippet/lang/et.js
+++ b/plugins/codesnippet/lang/et.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/eu.js b/plugins/codesnippet/lang/eu.js
index 62314e51..3762fbfe 100644
--- a/plugins/codesnippet/lang/eu.js
+++ b/plugins/codesnippet/lang/eu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/fa.js b/plugins/codesnippet/lang/fa.js
index fecc12ca..7ef2c9aa 100644
--- a/plugins/codesnippet/lang/fa.js
+++ b/plugins/codesnippet/lang/fa.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/fi.js b/plugins/codesnippet/lang/fi.js
index db5dcd6e..8edbd151 100644
--- a/plugins/codesnippet/lang/fi.js
+++ b/plugins/codesnippet/lang/fi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/fr-ca.js b/plugins/codesnippet/lang/fr-ca.js
index d5eacf9e..ede6ab5b 100644
--- a/plugins/codesnippet/lang/fr-ca.js
+++ b/plugins/codesnippet/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/fr.js b/plugins/codesnippet/lang/fr.js
index c1bd5048..9d18aaa0 100644
--- a/plugins/codesnippet/lang/fr.js
+++ b/plugins/codesnippet/lang/fr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/gl.js b/plugins/codesnippet/lang/gl.js
index 669c16b2..2655f17c 100644
--- a/plugins/codesnippet/lang/gl.js
+++ b/plugins/codesnippet/lang/gl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/he.js b/plugins/codesnippet/lang/he.js
index 7e07fcdf..84c7bd16 100644
--- a/plugins/codesnippet/lang/he.js
+++ b/plugins/codesnippet/lang/he.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/hr.js b/plugins/codesnippet/lang/hr.js
index 658257ec..26eebc1b 100644
--- a/plugins/codesnippet/lang/hr.js
+++ b/plugins/codesnippet/lang/hr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/hu.js b/plugins/codesnippet/lang/hu.js
index e4c3a061..e7456ad0 100644
--- a/plugins/codesnippet/lang/hu.js
+++ b/plugins/codesnippet/lang/hu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/id.js b/plugins/codesnippet/lang/id.js
index 009bf1f2..99346f93 100644
--- a/plugins/codesnippet/lang/id.js
+++ b/plugins/codesnippet/lang/id.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/it.js b/plugins/codesnippet/lang/it.js
index 13655d98..64969224 100644
--- a/plugins/codesnippet/lang/it.js
+++ b/plugins/codesnippet/lang/it.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/ja.js b/plugins/codesnippet/lang/ja.js
index 69dae33d..360eb0bc 100644
--- a/plugins/codesnippet/lang/ja.js
+++ b/plugins/codesnippet/lang/ja.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/km.js b/plugins/codesnippet/lang/km.js
index cee9e66f..f47639fc 100644
--- a/plugins/codesnippet/lang/km.js
+++ b/plugins/codesnippet/lang/km.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/ko.js b/plugins/codesnippet/lang/ko.js
index cf81caeb..96f7e36e 100644
--- a/plugins/codesnippet/lang/ko.js
+++ b/plugins/codesnippet/lang/ko.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/ku.js b/plugins/codesnippet/lang/ku.js
index eefdc536..0180a0bf 100644
--- a/plugins/codesnippet/lang/ku.js
+++ b/plugins/codesnippet/lang/ku.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/lt.js b/plugins/codesnippet/lang/lt.js
index 5af0d7bb..16ae4f07 100644
--- a/plugins/codesnippet/lang/lt.js
+++ b/plugins/codesnippet/lang/lt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/lv.js b/plugins/codesnippet/lang/lv.js
index 2971f072..286926a0 100644
--- a/plugins/codesnippet/lang/lv.js
+++ b/plugins/codesnippet/lang/lv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/nb.js b/plugins/codesnippet/lang/nb.js
index d736dd89..27419331 100644
--- a/plugins/codesnippet/lang/nb.js
+++ b/plugins/codesnippet/lang/nb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/nl.js b/plugins/codesnippet/lang/nl.js
index b7abd942..bf31901b 100644
--- a/plugins/codesnippet/lang/nl.js
+++ b/plugins/codesnippet/lang/nl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/no.js b/plugins/codesnippet/lang/no.js
index eebc9075..7da35a90 100644
--- a/plugins/codesnippet/lang/no.js
+++ b/plugins/codesnippet/lang/no.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/oc.js b/plugins/codesnippet/lang/oc.js
index 860bf51a..14cb80d6 100644
--- a/plugins/codesnippet/lang/oc.js
+++ b/plugins/codesnippet/lang/oc.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/pl.js b/plugins/codesnippet/lang/pl.js
index 9f443826..0aea4b1c 100644
--- a/plugins/codesnippet/lang/pl.js
+++ b/plugins/codesnippet/lang/pl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/pt-br.js b/plugins/codesnippet/lang/pt-br.js
index 886c6075..1fd39a4f 100644
--- a/plugins/codesnippet/lang/pt-br.js
+++ b/plugins/codesnippet/lang/pt-br.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/pt.js b/plugins/codesnippet/lang/pt.js
index aa0b526e..f98f3966 100644
--- a/plugins/codesnippet/lang/pt.js
+++ b/plugins/codesnippet/lang/pt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/ro.js b/plugins/codesnippet/lang/ro.js
index 7f550da9..50cdf498 100644
--- a/plugins/codesnippet/lang/ro.js
+++ b/plugins/codesnippet/lang/ro.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/ru.js b/plugins/codesnippet/lang/ru.js
index 4016e881..5141a23e 100644
--- a/plugins/codesnippet/lang/ru.js
+++ b/plugins/codesnippet/lang/ru.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/sk.js b/plugins/codesnippet/lang/sk.js
index 8699acf6..cc011bb8 100644
--- a/plugins/codesnippet/lang/sk.js
+++ b/plugins/codesnippet/lang/sk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/sl.js b/plugins/codesnippet/lang/sl.js
index 27c2cc65..ba9e68fa 100644
--- a/plugins/codesnippet/lang/sl.js
+++ b/plugins/codesnippet/lang/sl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/sq.js b/plugins/codesnippet/lang/sq.js
index 31990f09..67cef10e 100644
--- a/plugins/codesnippet/lang/sq.js
+++ b/plugins/codesnippet/lang/sq.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/sr-latn.js b/plugins/codesnippet/lang/sr-latn.js
index 7c3ae386..129007a4 100644
--- a/plugins/codesnippet/lang/sr-latn.js
+++ b/plugins/codesnippet/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/sr.js b/plugins/codesnippet/lang/sr.js
index d76eb8ca..e98996cf 100644
--- a/plugins/codesnippet/lang/sr.js
+++ b/plugins/codesnippet/lang/sr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/sv.js b/plugins/codesnippet/lang/sv.js
index a525a107..6deceb9a 100644
--- a/plugins/codesnippet/lang/sv.js
+++ b/plugins/codesnippet/lang/sv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/th.js b/plugins/codesnippet/lang/th.js
index 8dda1721..827b2973 100644
--- a/plugins/codesnippet/lang/th.js
+++ b/plugins/codesnippet/lang/th.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/tr.js b/plugins/codesnippet/lang/tr.js
index c618d2ca..5ce01179 100644
--- a/plugins/codesnippet/lang/tr.js
+++ b/plugins/codesnippet/lang/tr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/tt.js b/plugins/codesnippet/lang/tt.js
index db7956a2..8a791e09 100644
--- a/plugins/codesnippet/lang/tt.js
+++ b/plugins/codesnippet/lang/tt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/ug.js b/plugins/codesnippet/lang/ug.js
index ea564b5b..bf608c5a 100644
--- a/plugins/codesnippet/lang/ug.js
+++ b/plugins/codesnippet/lang/ug.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/uk.js b/plugins/codesnippet/lang/uk.js
index e5651798..a597a4e0 100644
--- a/plugins/codesnippet/lang/uk.js
+++ b/plugins/codesnippet/lang/uk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/vi.js b/plugins/codesnippet/lang/vi.js
index f0713be1..869d2eb9 100644
--- a/plugins/codesnippet/lang/vi.js
+++ b/plugins/codesnippet/lang/vi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/zh-cn.js b/plugins/codesnippet/lang/zh-cn.js
index 6fc56cb7..fe4ddf6a 100644
--- a/plugins/codesnippet/lang/zh-cn.js
+++ b/plugins/codesnippet/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/lang/zh.js b/plugins/codesnippet/lang/zh.js
index 0ad41fe1..f6597f50 100644
--- a/plugins/codesnippet/lang/zh.js
+++ b/plugins/codesnippet/lang/zh.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/plugin.js b/plugins/codesnippet/plugin.js
index 07580a8e..ef79fe99 100644
--- a/plugins/codesnippet/plugin.js
+++ b/plugins/codesnippet/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/codesnippet/samples/codesnippet.html b/plugins/codesnippet/samples/codesnippet.html
index 9d22b7ce..f1f9d3f3 100644
--- a/plugins/codesnippet/samples/codesnippet.html
+++ b/plugins/codesnippet/samples/codesnippet.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -232,7 +232,7 @@ CKEDITOR.inline( 'editable', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/codesnippetgeshi/plugin.js b/plugins/codesnippetgeshi/plugin.js
index cc1ebfbc..c5bd72ee 100644
--- a/plugins/codesnippetgeshi/plugin.js
+++ b/plugins/codesnippetgeshi/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/colorbutton/lang/af.js b/plugins/colorbutton/lang/af.js
index 6854bfee..9c7ac630 100644
--- a/plugins/colorbutton/lang/af.js
+++ b/plugins/colorbutton/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'af', {
diff --git a/plugins/colorbutton/lang/ar.js b/plugins/colorbutton/lang/ar.js
index 6f310dfb..f547d63b 100644
--- a/plugins/colorbutton/lang/ar.js
+++ b/plugins/colorbutton/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'ar', {
diff --git a/plugins/colorbutton/lang/az.js b/plugins/colorbutton/lang/az.js
index 92c8ee63..ad1f61d3 100644
--- a/plugins/colorbutton/lang/az.js
+++ b/plugins/colorbutton/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'az', {
diff --git a/plugins/colorbutton/lang/bg.js b/plugins/colorbutton/lang/bg.js
index 8e78e73f..d2c69000 100644
--- a/plugins/colorbutton/lang/bg.js
+++ b/plugins/colorbutton/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'bg', {
diff --git a/plugins/colorbutton/lang/bn.js b/plugins/colorbutton/lang/bn.js
index 5bb7d956..9224096a 100644
--- a/plugins/colorbutton/lang/bn.js
+++ b/plugins/colorbutton/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'bn', {
diff --git a/plugins/colorbutton/lang/bs.js b/plugins/colorbutton/lang/bs.js
index 215f3e32..5a0b1334 100644
--- a/plugins/colorbutton/lang/bs.js
+++ b/plugins/colorbutton/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'bs', {
diff --git a/plugins/colorbutton/lang/ca.js b/plugins/colorbutton/lang/ca.js
index 144f2246..51878c3e 100644
--- a/plugins/colorbutton/lang/ca.js
+++ b/plugins/colorbutton/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'ca', {
diff --git a/plugins/colorbutton/lang/cs.js b/plugins/colorbutton/lang/cs.js
index 75abe144..9f7873cf 100644
--- a/plugins/colorbutton/lang/cs.js
+++ b/plugins/colorbutton/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'cs', {
diff --git a/plugins/colorbutton/lang/cy.js b/plugins/colorbutton/lang/cy.js
index a12e8864..5e9cfb14 100644
--- a/plugins/colorbutton/lang/cy.js
+++ b/plugins/colorbutton/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'cy', {
diff --git a/plugins/colorbutton/lang/da.js b/plugins/colorbutton/lang/da.js
index 29bb7c56..29f4d676 100644
--- a/plugins/colorbutton/lang/da.js
+++ b/plugins/colorbutton/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'da', {
diff --git a/plugins/colorbutton/lang/de-ch.js b/plugins/colorbutton/lang/de-ch.js
index 3bd76081..7ba7ed83 100644
--- a/plugins/colorbutton/lang/de-ch.js
+++ b/plugins/colorbutton/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'de-ch', {
diff --git a/plugins/colorbutton/lang/de.js b/plugins/colorbutton/lang/de.js
index 14aec2a7..07c3699a 100644
--- a/plugins/colorbutton/lang/de.js
+++ b/plugins/colorbutton/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'de', {
diff --git a/plugins/colorbutton/lang/el.js b/plugins/colorbutton/lang/el.js
index 5a743350..5cbc95d5 100644
--- a/plugins/colorbutton/lang/el.js
+++ b/plugins/colorbutton/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'el', {
diff --git a/plugins/colorbutton/lang/en-au.js b/plugins/colorbutton/lang/en-au.js
index 5d22719a..4b193fba 100644
--- a/plugins/colorbutton/lang/en-au.js
+++ b/plugins/colorbutton/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'en-au', {
diff --git a/plugins/colorbutton/lang/en-ca.js b/plugins/colorbutton/lang/en-ca.js
index f3166a32..4f75614b 100644
--- a/plugins/colorbutton/lang/en-ca.js
+++ b/plugins/colorbutton/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'en-ca', {
diff --git a/plugins/colorbutton/lang/en-gb.js b/plugins/colorbutton/lang/en-gb.js
index 3abfb235..9121ecfa 100644
--- a/plugins/colorbutton/lang/en-gb.js
+++ b/plugins/colorbutton/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'en-gb', {
diff --git a/plugins/colorbutton/lang/en.js b/plugins/colorbutton/lang/en.js
index 9ceabbfc..dea587ca 100644
--- a/plugins/colorbutton/lang/en.js
+++ b/plugins/colorbutton/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'en', {
diff --git a/plugins/colorbutton/lang/eo.js b/plugins/colorbutton/lang/eo.js
index 0ebc0dbf..0c0017a6 100644
--- a/plugins/colorbutton/lang/eo.js
+++ b/plugins/colorbutton/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'eo', {
diff --git a/plugins/colorbutton/lang/es-mx.js b/plugins/colorbutton/lang/es-mx.js
index 067eba0b..667849da 100644
--- a/plugins/colorbutton/lang/es-mx.js
+++ b/plugins/colorbutton/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'es-mx', {
diff --git a/plugins/colorbutton/lang/es.js b/plugins/colorbutton/lang/es.js
index a0bfeb86..e0d0313b 100644
--- a/plugins/colorbutton/lang/es.js
+++ b/plugins/colorbutton/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'es', {
diff --git a/plugins/colorbutton/lang/et.js b/plugins/colorbutton/lang/et.js
index 755998ea..c6838700 100644
--- a/plugins/colorbutton/lang/et.js
+++ b/plugins/colorbutton/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'et', {
diff --git a/plugins/colorbutton/lang/eu.js b/plugins/colorbutton/lang/eu.js
index a906845e..bdc126d6 100644
--- a/plugins/colorbutton/lang/eu.js
+++ b/plugins/colorbutton/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'eu', {
diff --git a/plugins/colorbutton/lang/fa.js b/plugins/colorbutton/lang/fa.js
index b1bc5b06..e699cbce 100644
--- a/plugins/colorbutton/lang/fa.js
+++ b/plugins/colorbutton/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'fa', {
diff --git a/plugins/colorbutton/lang/fi.js b/plugins/colorbutton/lang/fi.js
index 80ac825b..aebd6d92 100644
--- a/plugins/colorbutton/lang/fi.js
+++ b/plugins/colorbutton/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'fi', {
diff --git a/plugins/colorbutton/lang/fo.js b/plugins/colorbutton/lang/fo.js
index f3dc2f56..e71ddf5e 100644
--- a/plugins/colorbutton/lang/fo.js
+++ b/plugins/colorbutton/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'fo', {
diff --git a/plugins/colorbutton/lang/fr-ca.js b/plugins/colorbutton/lang/fr-ca.js
index 962c6188..a09b9675 100644
--- a/plugins/colorbutton/lang/fr-ca.js
+++ b/plugins/colorbutton/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'fr-ca', {
diff --git a/plugins/colorbutton/lang/fr.js b/plugins/colorbutton/lang/fr.js
index 789b0073..52e753fc 100644
--- a/plugins/colorbutton/lang/fr.js
+++ b/plugins/colorbutton/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'fr', {
diff --git a/plugins/colorbutton/lang/gl.js b/plugins/colorbutton/lang/gl.js
index 59a98d92..3fbe8a57 100644
--- a/plugins/colorbutton/lang/gl.js
+++ b/plugins/colorbutton/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'gl', {
diff --git a/plugins/colorbutton/lang/gu.js b/plugins/colorbutton/lang/gu.js
index af730869..adbbd3b5 100644
--- a/plugins/colorbutton/lang/gu.js
+++ b/plugins/colorbutton/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'gu', {
diff --git a/plugins/colorbutton/lang/he.js b/plugins/colorbutton/lang/he.js
index 12b6c96e..6e673f57 100644
--- a/plugins/colorbutton/lang/he.js
+++ b/plugins/colorbutton/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'he', {
diff --git a/plugins/colorbutton/lang/hi.js b/plugins/colorbutton/lang/hi.js
index ba55a348..c32b5953 100644
--- a/plugins/colorbutton/lang/hi.js
+++ b/plugins/colorbutton/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'hi', {
diff --git a/plugins/colorbutton/lang/hr.js b/plugins/colorbutton/lang/hr.js
index d57f65b8..d2252326 100644
--- a/plugins/colorbutton/lang/hr.js
+++ b/plugins/colorbutton/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'hr', {
diff --git a/plugins/colorbutton/lang/hu.js b/plugins/colorbutton/lang/hu.js
index 4c8df37f..aa8e3b9a 100644
--- a/plugins/colorbutton/lang/hu.js
+++ b/plugins/colorbutton/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'hu', {
diff --git a/plugins/colorbutton/lang/id.js b/plugins/colorbutton/lang/id.js
index ac0474b2..cd6a465d 100644
--- a/plugins/colorbutton/lang/id.js
+++ b/plugins/colorbutton/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'id', {
diff --git a/plugins/colorbutton/lang/is.js b/plugins/colorbutton/lang/is.js
index 1b181ca2..c496fc57 100644
--- a/plugins/colorbutton/lang/is.js
+++ b/plugins/colorbutton/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'is', {
diff --git a/plugins/colorbutton/lang/it.js b/plugins/colorbutton/lang/it.js
index cad941b1..404b1cf6 100644
--- a/plugins/colorbutton/lang/it.js
+++ b/plugins/colorbutton/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'it', {
diff --git a/plugins/colorbutton/lang/ja.js b/plugins/colorbutton/lang/ja.js
index 67697a9f..0645a7a4 100644
--- a/plugins/colorbutton/lang/ja.js
+++ b/plugins/colorbutton/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'ja', {
diff --git a/plugins/colorbutton/lang/ka.js b/plugins/colorbutton/lang/ka.js
index 568068a3..635648d9 100644
--- a/plugins/colorbutton/lang/ka.js
+++ b/plugins/colorbutton/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'ka', {
diff --git a/plugins/colorbutton/lang/km.js b/plugins/colorbutton/lang/km.js
index f22d4bf8..32633916 100644
--- a/plugins/colorbutton/lang/km.js
+++ b/plugins/colorbutton/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'km', {
diff --git a/plugins/colorbutton/lang/ko.js b/plugins/colorbutton/lang/ko.js
index c736a8e0..e0162ddb 100644
--- a/plugins/colorbutton/lang/ko.js
+++ b/plugins/colorbutton/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'ko', {
diff --git a/plugins/colorbutton/lang/ku.js b/plugins/colorbutton/lang/ku.js
index 520af567..f0a02487 100644
--- a/plugins/colorbutton/lang/ku.js
+++ b/plugins/colorbutton/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'ku', {
diff --git a/plugins/colorbutton/lang/lt.js b/plugins/colorbutton/lang/lt.js
index 4219350d..f2fb09a0 100644
--- a/plugins/colorbutton/lang/lt.js
+++ b/plugins/colorbutton/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'lt', {
diff --git a/plugins/colorbutton/lang/lv.js b/plugins/colorbutton/lang/lv.js
index 1c5923ad..e31068aa 100644
--- a/plugins/colorbutton/lang/lv.js
+++ b/plugins/colorbutton/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'lv', {
diff --git a/plugins/colorbutton/lang/mk.js b/plugins/colorbutton/lang/mk.js
index 79790949..f9a590c3 100644
--- a/plugins/colorbutton/lang/mk.js
+++ b/plugins/colorbutton/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'mk', {
diff --git a/plugins/colorbutton/lang/mn.js b/plugins/colorbutton/lang/mn.js
index 826fa03b..e12a09bb 100644
--- a/plugins/colorbutton/lang/mn.js
+++ b/plugins/colorbutton/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'mn', {
diff --git a/plugins/colorbutton/lang/ms.js b/plugins/colorbutton/lang/ms.js
index de24e117..e75a8fe1 100644
--- a/plugins/colorbutton/lang/ms.js
+++ b/plugins/colorbutton/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'ms', {
diff --git a/plugins/colorbutton/lang/nb.js b/plugins/colorbutton/lang/nb.js
index ca92c763..9419a257 100644
--- a/plugins/colorbutton/lang/nb.js
+++ b/plugins/colorbutton/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'nb', {
diff --git a/plugins/colorbutton/lang/nl.js b/plugins/colorbutton/lang/nl.js
index 7586d21c..4f6ef813 100644
--- a/plugins/colorbutton/lang/nl.js
+++ b/plugins/colorbutton/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'nl', {
diff --git a/plugins/colorbutton/lang/no.js b/plugins/colorbutton/lang/no.js
index 6cc6c27f..bb7764d3 100644
--- a/plugins/colorbutton/lang/no.js
+++ b/plugins/colorbutton/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'no', {
diff --git a/plugins/colorbutton/lang/oc.js b/plugins/colorbutton/lang/oc.js
index a94ca998..f6cb38c6 100644
--- a/plugins/colorbutton/lang/oc.js
+++ b/plugins/colorbutton/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'oc', {
diff --git a/plugins/colorbutton/lang/pl.js b/plugins/colorbutton/lang/pl.js
index 5a3a80db..7dac4cbd 100644
--- a/plugins/colorbutton/lang/pl.js
+++ b/plugins/colorbutton/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'pl', {
diff --git a/plugins/colorbutton/lang/pt-br.js b/plugins/colorbutton/lang/pt-br.js
index 8fb3f619..e48071ed 100644
--- a/plugins/colorbutton/lang/pt-br.js
+++ b/plugins/colorbutton/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'pt-br', {
diff --git a/plugins/colorbutton/lang/pt.js b/plugins/colorbutton/lang/pt.js
index 3ceccd57..6f5cf5b4 100644
--- a/plugins/colorbutton/lang/pt.js
+++ b/plugins/colorbutton/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'pt', {
diff --git a/plugins/colorbutton/lang/ro.js b/plugins/colorbutton/lang/ro.js
index a7102227..3546ea35 100644
--- a/plugins/colorbutton/lang/ro.js
+++ b/plugins/colorbutton/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'ro', {
diff --git a/plugins/colorbutton/lang/ru.js b/plugins/colorbutton/lang/ru.js
index e684af17..8399b954 100644
--- a/plugins/colorbutton/lang/ru.js
+++ b/plugins/colorbutton/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'ru', {
diff --git a/plugins/colorbutton/lang/si.js b/plugins/colorbutton/lang/si.js
index e5ebafd0..14457d5e 100644
--- a/plugins/colorbutton/lang/si.js
+++ b/plugins/colorbutton/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'si', {
diff --git a/plugins/colorbutton/lang/sk.js b/plugins/colorbutton/lang/sk.js
index f2635fa4..5aeb1c7f 100644
--- a/plugins/colorbutton/lang/sk.js
+++ b/plugins/colorbutton/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'sk', {
diff --git a/plugins/colorbutton/lang/sl.js b/plugins/colorbutton/lang/sl.js
index 4724ad49..1df52de5 100644
--- a/plugins/colorbutton/lang/sl.js
+++ b/plugins/colorbutton/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'sl', {
diff --git a/plugins/colorbutton/lang/sq.js b/plugins/colorbutton/lang/sq.js
index f082aca6..31f04fff 100644
--- a/plugins/colorbutton/lang/sq.js
+++ b/plugins/colorbutton/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'sq', {
diff --git a/plugins/colorbutton/lang/sr-latn.js b/plugins/colorbutton/lang/sr-latn.js
index df61b468..14a8f19d 100644
--- a/plugins/colorbutton/lang/sr-latn.js
+++ b/plugins/colorbutton/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'sr-latn', {
diff --git a/plugins/colorbutton/lang/sr.js b/plugins/colorbutton/lang/sr.js
index 32ec0ad1..49991fc7 100644
--- a/plugins/colorbutton/lang/sr.js
+++ b/plugins/colorbutton/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'sr', {
diff --git a/plugins/colorbutton/lang/sv.js b/plugins/colorbutton/lang/sv.js
index 1647c986..9ba99705 100644
--- a/plugins/colorbutton/lang/sv.js
+++ b/plugins/colorbutton/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'sv', {
diff --git a/plugins/colorbutton/lang/th.js b/plugins/colorbutton/lang/th.js
index 17e01671..f5d33a2f 100644
--- a/plugins/colorbutton/lang/th.js
+++ b/plugins/colorbutton/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'th', {
diff --git a/plugins/colorbutton/lang/tr.js b/plugins/colorbutton/lang/tr.js
index 533a7d7c..55e11543 100644
--- a/plugins/colorbutton/lang/tr.js
+++ b/plugins/colorbutton/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'tr', {
diff --git a/plugins/colorbutton/lang/tt.js b/plugins/colorbutton/lang/tt.js
index 725248c1..a5103280 100644
--- a/plugins/colorbutton/lang/tt.js
+++ b/plugins/colorbutton/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'tt', {
diff --git a/plugins/colorbutton/lang/ug.js b/plugins/colorbutton/lang/ug.js
index 94bdbdd8..1b95dad6 100644
--- a/plugins/colorbutton/lang/ug.js
+++ b/plugins/colorbutton/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'ug', {
diff --git a/plugins/colorbutton/lang/uk.js b/plugins/colorbutton/lang/uk.js
index 249ce80d..120dded6 100644
--- a/plugins/colorbutton/lang/uk.js
+++ b/plugins/colorbutton/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'uk', {
diff --git a/plugins/colorbutton/lang/vi.js b/plugins/colorbutton/lang/vi.js
index 652ea8c3..eafe67cf 100644
--- a/plugins/colorbutton/lang/vi.js
+++ b/plugins/colorbutton/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'vi', {
diff --git a/plugins/colorbutton/lang/zh-cn.js b/plugins/colorbutton/lang/zh-cn.js
index 19754f27..efeb9507 100644
--- a/plugins/colorbutton/lang/zh-cn.js
+++ b/plugins/colorbutton/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'zh-cn', {
diff --git a/plugins/colorbutton/lang/zh.js b/plugins/colorbutton/lang/zh.js
index d9905fa5..55e46d15 100644
--- a/plugins/colorbutton/lang/zh.js
+++ b/plugins/colorbutton/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colorbutton', 'zh', {
diff --git a/plugins/colorbutton/plugin.js b/plugins/colorbutton/plugin.js
index 5cf96d04..c7103c39 100644
--- a/plugins/colorbutton/plugin.js
+++ b/plugins/colorbutton/plugin.js
@@ -1,5 +1,5 @@
-/**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+/**
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -158,7 +158,7 @@
 					contentTransformations: contentTransformations,
 
 					panel: {
-						css: CKEDITOR.skin.getPath( 'editor' ),
+						css: [ CKEDITOR.skin.getPath( 'editor' ) ].concat( config.colorButton_contentsCss ),
 						attributes: { role: 'listbox', 'aria-label': lang.panelTitle }
 					},
 
@@ -1007,3 +1007,17 @@ CKEDITOR.config.colorButton_historyRowLimit = 1;
  * @member CKEDITOR.config
  */
 CKEDITOR.config.colorButton_renderContentColors = true;
+
+/**
+ * The CSS file(s) to be used to apply the style to the color button menu content.
+ *
+ * ```javascript
+ * config.colorButton_contentsCss = '/css/myfile.css';
+ * config.colorButton_contentsCss = [ '/css/myfile.css', '/css/anotherfile.css' ];
+ * ```
+ *
+ * @since 4.20.2
+ * @cfg {String/String[]} [colorButton_contentsCss]
+ * @member CKEDITOR.config
+ */
+CKEDITOR.config.colorButton_contentsCss = [];
diff --git a/plugins/colordialog/dialogs/colordialog.css b/plugins/colordialog/dialogs/colordialog.css
index 20654499..d5eeb2fb 100644
--- a/plugins/colordialog/dialogs/colordialog.css
+++ b/plugins/colordialog/dialogs/colordialog.css
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/colordialog/dialogs/colordialog.js b/plugins/colordialog/dialogs/colordialog.js
index 8ab3089a..d6cac0a1 100644
--- a/plugins/colordialog/dialogs/colordialog.js
+++ b/plugins/colordialog/dialogs/colordialog.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/colordialog/lang/af.js b/plugins/colordialog/lang/af.js
index 5d78e30c..4903dc44 100644
--- a/plugins/colordialog/lang/af.js
+++ b/plugins/colordialog/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'af', {
diff --git a/plugins/colordialog/lang/ar.js b/plugins/colordialog/lang/ar.js
index 8276f2e9..9a38492d 100644
--- a/plugins/colordialog/lang/ar.js
+++ b/plugins/colordialog/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'ar', {
diff --git a/plugins/colordialog/lang/az.js b/plugins/colordialog/lang/az.js
index 6cb71418..ea3846f5 100644
--- a/plugins/colordialog/lang/az.js
+++ b/plugins/colordialog/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'az', {
diff --git a/plugins/colordialog/lang/bg.js b/plugins/colordialog/lang/bg.js
index 0c69af59..c626064d 100644
--- a/plugins/colordialog/lang/bg.js
+++ b/plugins/colordialog/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'bg', {
diff --git a/plugins/colordialog/lang/bn.js b/plugins/colordialog/lang/bn.js
index 7f475194..1dda4c4e 100644
--- a/plugins/colordialog/lang/bn.js
+++ b/plugins/colordialog/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'bn', {
diff --git a/plugins/colordialog/lang/bs.js b/plugins/colordialog/lang/bs.js
index f60d3a99..eb6ca470 100644
--- a/plugins/colordialog/lang/bs.js
+++ b/plugins/colordialog/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'bs', {
diff --git a/plugins/colordialog/lang/ca.js b/plugins/colordialog/lang/ca.js
index 85b65538..d1d72b96 100644
--- a/plugins/colordialog/lang/ca.js
+++ b/plugins/colordialog/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'ca', {
diff --git a/plugins/colordialog/lang/cs.js b/plugins/colordialog/lang/cs.js
index 2c15479d..c54a539c 100644
--- a/plugins/colordialog/lang/cs.js
+++ b/plugins/colordialog/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'cs', {
diff --git a/plugins/colordialog/lang/cy.js b/plugins/colordialog/lang/cy.js
index e784acb3..081b2806 100644
--- a/plugins/colordialog/lang/cy.js
+++ b/plugins/colordialog/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'cy', {
diff --git a/plugins/colordialog/lang/da.js b/plugins/colordialog/lang/da.js
index bfcaf964..1212be8f 100644
--- a/plugins/colordialog/lang/da.js
+++ b/plugins/colordialog/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'da', {
diff --git a/plugins/colordialog/lang/de-ch.js b/plugins/colordialog/lang/de-ch.js
index ba5985a6..2f1497e2 100644
--- a/plugins/colordialog/lang/de-ch.js
+++ b/plugins/colordialog/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'de-ch', {
diff --git a/plugins/colordialog/lang/de.js b/plugins/colordialog/lang/de.js
index ccaadbcd..426b35a4 100644
--- a/plugins/colordialog/lang/de.js
+++ b/plugins/colordialog/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'de', {
diff --git a/plugins/colordialog/lang/el.js b/plugins/colordialog/lang/el.js
index a3bf53a5..b0ff23c9 100644
--- a/plugins/colordialog/lang/el.js
+++ b/plugins/colordialog/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'el', {
diff --git a/plugins/colordialog/lang/en-au.js b/plugins/colordialog/lang/en-au.js
index 17b477a4..58a2a49b 100644
--- a/plugins/colordialog/lang/en-au.js
+++ b/plugins/colordialog/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'en-au', {
diff --git a/plugins/colordialog/lang/en-ca.js b/plugins/colordialog/lang/en-ca.js
index 847b8f08..3c917628 100644
--- a/plugins/colordialog/lang/en-ca.js
+++ b/plugins/colordialog/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'en-ca', {
diff --git a/plugins/colordialog/lang/en-gb.js b/plugins/colordialog/lang/en-gb.js
index 49f5f64b..b8eb21a0 100644
--- a/plugins/colordialog/lang/en-gb.js
+++ b/plugins/colordialog/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'en-gb', {
diff --git a/plugins/colordialog/lang/en.js b/plugins/colordialog/lang/en.js
index 0cf0a3e7..8b31709e 100644
--- a/plugins/colordialog/lang/en.js
+++ b/plugins/colordialog/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'en', {
diff --git a/plugins/colordialog/lang/eo.js b/plugins/colordialog/lang/eo.js
index d38f296a..9d1e9351 100644
--- a/plugins/colordialog/lang/eo.js
+++ b/plugins/colordialog/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'eo', {
diff --git a/plugins/colordialog/lang/es-mx.js b/plugins/colordialog/lang/es-mx.js
index 95ca6e2b..5428270f 100644
--- a/plugins/colordialog/lang/es-mx.js
+++ b/plugins/colordialog/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'es-mx', {
diff --git a/plugins/colordialog/lang/es.js b/plugins/colordialog/lang/es.js
index 2fb952eb..2bbd80b3 100644
--- a/plugins/colordialog/lang/es.js
+++ b/plugins/colordialog/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'es', {
diff --git a/plugins/colordialog/lang/et.js b/plugins/colordialog/lang/et.js
index 7ffe089a..8155d306 100644
--- a/plugins/colordialog/lang/et.js
+++ b/plugins/colordialog/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'et', {
diff --git a/plugins/colordialog/lang/eu.js b/plugins/colordialog/lang/eu.js
index 38bd95f9..bde79530 100644
--- a/plugins/colordialog/lang/eu.js
+++ b/plugins/colordialog/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'eu', {
diff --git a/plugins/colordialog/lang/fa.js b/plugins/colordialog/lang/fa.js
index 653252d6..098c2bc4 100644
--- a/plugins/colordialog/lang/fa.js
+++ b/plugins/colordialog/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'fa', {
diff --git a/plugins/colordialog/lang/fi.js b/plugins/colordialog/lang/fi.js
index 7fec624f..56ca2896 100644
--- a/plugins/colordialog/lang/fi.js
+++ b/plugins/colordialog/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'fi', {
diff --git a/plugins/colordialog/lang/fo.js b/plugins/colordialog/lang/fo.js
index 60e3c310..ea665293 100644
--- a/plugins/colordialog/lang/fo.js
+++ b/plugins/colordialog/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'fo', {
diff --git a/plugins/colordialog/lang/fr-ca.js b/plugins/colordialog/lang/fr-ca.js
index bfd39b50..9ab8ec74 100644
--- a/plugins/colordialog/lang/fr-ca.js
+++ b/plugins/colordialog/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'fr-ca', {
diff --git a/plugins/colordialog/lang/fr.js b/plugins/colordialog/lang/fr.js
index 81694ff8..f4088893 100644
--- a/plugins/colordialog/lang/fr.js
+++ b/plugins/colordialog/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'fr', {
diff --git a/plugins/colordialog/lang/gl.js b/plugins/colordialog/lang/gl.js
index c6dbbce0..456f7f54 100644
--- a/plugins/colordialog/lang/gl.js
+++ b/plugins/colordialog/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'gl', {
diff --git a/plugins/colordialog/lang/gu.js b/plugins/colordialog/lang/gu.js
index ffda315a..6dfcec87 100644
--- a/plugins/colordialog/lang/gu.js
+++ b/plugins/colordialog/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'gu', {
diff --git a/plugins/colordialog/lang/he.js b/plugins/colordialog/lang/he.js
index 2ffdc5a0..2e0d3a2a 100644
--- a/plugins/colordialog/lang/he.js
+++ b/plugins/colordialog/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'he', {
diff --git a/plugins/colordialog/lang/hi.js b/plugins/colordialog/lang/hi.js
index 8422e58a..3e3e07e0 100644
--- a/plugins/colordialog/lang/hi.js
+++ b/plugins/colordialog/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'hi', {
diff --git a/plugins/colordialog/lang/hr.js b/plugins/colordialog/lang/hr.js
index c16f021b..655eee03 100644
--- a/plugins/colordialog/lang/hr.js
+++ b/plugins/colordialog/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'hr', {
diff --git a/plugins/colordialog/lang/hu.js b/plugins/colordialog/lang/hu.js
index 2a05890f..8248c110 100644
--- a/plugins/colordialog/lang/hu.js
+++ b/plugins/colordialog/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'hu', {
diff --git a/plugins/colordialog/lang/id.js b/plugins/colordialog/lang/id.js
index de5f2138..628a0144 100644
--- a/plugins/colordialog/lang/id.js
+++ b/plugins/colordialog/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'id', {
diff --git a/plugins/colordialog/lang/is.js b/plugins/colordialog/lang/is.js
index 61eb8de6..8960bc12 100644
--- a/plugins/colordialog/lang/is.js
+++ b/plugins/colordialog/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'is', {
diff --git a/plugins/colordialog/lang/it.js b/plugins/colordialog/lang/it.js
index 3f520231..92de1580 100644
--- a/plugins/colordialog/lang/it.js
+++ b/plugins/colordialog/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'it', {
diff --git a/plugins/colordialog/lang/ja.js b/plugins/colordialog/lang/ja.js
index 1d04faf2..985a22e5 100644
--- a/plugins/colordialog/lang/ja.js
+++ b/plugins/colordialog/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'ja', {
diff --git a/plugins/colordialog/lang/ka.js b/plugins/colordialog/lang/ka.js
index c70281d9..7450da88 100644
--- a/plugins/colordialog/lang/ka.js
+++ b/plugins/colordialog/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'ka', {
diff --git a/plugins/colordialog/lang/km.js b/plugins/colordialog/lang/km.js
index afe5dd87..afdd55f7 100644
--- a/plugins/colordialog/lang/km.js
+++ b/plugins/colordialog/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'km', {
diff --git a/plugins/colordialog/lang/ko.js b/plugins/colordialog/lang/ko.js
index c9946409..d3ab537c 100644
--- a/plugins/colordialog/lang/ko.js
+++ b/plugins/colordialog/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'ko', {
diff --git a/plugins/colordialog/lang/ku.js b/plugins/colordialog/lang/ku.js
index b79a475d..323fd6f6 100644
--- a/plugins/colordialog/lang/ku.js
+++ b/plugins/colordialog/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'ku', {
diff --git a/plugins/colordialog/lang/lt.js b/plugins/colordialog/lang/lt.js
index 31e5576d..7a587348 100644
--- a/plugins/colordialog/lang/lt.js
+++ b/plugins/colordialog/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'lt', {
diff --git a/plugins/colordialog/lang/lv.js b/plugins/colordialog/lang/lv.js
index addedbfe..70241245 100644
--- a/plugins/colordialog/lang/lv.js
+++ b/plugins/colordialog/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'lv', {
diff --git a/plugins/colordialog/lang/mk.js b/plugins/colordialog/lang/mk.js
index af3e0c2e..5c45b50d 100644
--- a/plugins/colordialog/lang/mk.js
+++ b/plugins/colordialog/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'mk', {
diff --git a/plugins/colordialog/lang/mn.js b/plugins/colordialog/lang/mn.js
index 49bd6cc2..969448da 100644
--- a/plugins/colordialog/lang/mn.js
+++ b/plugins/colordialog/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'mn', {
diff --git a/plugins/colordialog/lang/ms.js b/plugins/colordialog/lang/ms.js
index 924c17cd..1e6034bf 100644
--- a/plugins/colordialog/lang/ms.js
+++ b/plugins/colordialog/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'ms', {
diff --git a/plugins/colordialog/lang/nb.js b/plugins/colordialog/lang/nb.js
index 5241bbc6..c488ea43 100644
--- a/plugins/colordialog/lang/nb.js
+++ b/plugins/colordialog/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'nb', {
diff --git a/plugins/colordialog/lang/nl.js b/plugins/colordialog/lang/nl.js
index 655c8850..ea224df2 100644
--- a/plugins/colordialog/lang/nl.js
+++ b/plugins/colordialog/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'nl', {
diff --git a/plugins/colordialog/lang/no.js b/plugins/colordialog/lang/no.js
index 731e7b4d..8c44ed19 100644
--- a/plugins/colordialog/lang/no.js
+++ b/plugins/colordialog/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'no', {
diff --git a/plugins/colordialog/lang/oc.js b/plugins/colordialog/lang/oc.js
index e5739e81..daa9b550 100644
--- a/plugins/colordialog/lang/oc.js
+++ b/plugins/colordialog/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'oc', {
diff --git a/plugins/colordialog/lang/pl.js b/plugins/colordialog/lang/pl.js
index 074ace71..9822c53a 100644
--- a/plugins/colordialog/lang/pl.js
+++ b/plugins/colordialog/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'pl', {
diff --git a/plugins/colordialog/lang/pt-br.js b/plugins/colordialog/lang/pt-br.js
index 27f014d5..9232607e 100644
--- a/plugins/colordialog/lang/pt-br.js
+++ b/plugins/colordialog/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'pt-br', {
diff --git a/plugins/colordialog/lang/pt.js b/plugins/colordialog/lang/pt.js
index da44358e..e5939f85 100644
--- a/plugins/colordialog/lang/pt.js
+++ b/plugins/colordialog/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'pt', {
diff --git a/plugins/colordialog/lang/ro.js b/plugins/colordialog/lang/ro.js
index c6b9bb04..018d6bb9 100644
--- a/plugins/colordialog/lang/ro.js
+++ b/plugins/colordialog/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'ro', {
diff --git a/plugins/colordialog/lang/ru.js b/plugins/colordialog/lang/ru.js
index d32b8c1c..c886752b 100644
--- a/plugins/colordialog/lang/ru.js
+++ b/plugins/colordialog/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'ru', {
diff --git a/plugins/colordialog/lang/si.js b/plugins/colordialog/lang/si.js
index 9289ac16..25a4db2e 100644
--- a/plugins/colordialog/lang/si.js
+++ b/plugins/colordialog/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'si', {
diff --git a/plugins/colordialog/lang/sk.js b/plugins/colordialog/lang/sk.js
index c81ec2bc..7fdfa86a 100644
--- a/plugins/colordialog/lang/sk.js
+++ b/plugins/colordialog/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'sk', {
diff --git a/plugins/colordialog/lang/sl.js b/plugins/colordialog/lang/sl.js
index c81d8599..b1fd1ac6 100644
--- a/plugins/colordialog/lang/sl.js
+++ b/plugins/colordialog/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'sl', {
diff --git a/plugins/colordialog/lang/sq.js b/plugins/colordialog/lang/sq.js
index a4990040..e3884b22 100644
--- a/plugins/colordialog/lang/sq.js
+++ b/plugins/colordialog/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'sq', {
diff --git a/plugins/colordialog/lang/sr-latn.js b/plugins/colordialog/lang/sr-latn.js
index 6874b983..39e9f4d3 100644
--- a/plugins/colordialog/lang/sr-latn.js
+++ b/plugins/colordialog/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'sr-latn', {
diff --git a/plugins/colordialog/lang/sr.js b/plugins/colordialog/lang/sr.js
index 169392ea..605a3165 100644
--- a/plugins/colordialog/lang/sr.js
+++ b/plugins/colordialog/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'sr', {
diff --git a/plugins/colordialog/lang/sv.js b/plugins/colordialog/lang/sv.js
index dc91e884..61dc517a 100644
--- a/plugins/colordialog/lang/sv.js
+++ b/plugins/colordialog/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'sv', {
diff --git a/plugins/colordialog/lang/th.js b/plugins/colordialog/lang/th.js
index 8db785b8..33b34dfb 100644
--- a/plugins/colordialog/lang/th.js
+++ b/plugins/colordialog/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'th', {
diff --git a/plugins/colordialog/lang/tr.js b/plugins/colordialog/lang/tr.js
index 4daa7e08..8659f8fa 100644
--- a/plugins/colordialog/lang/tr.js
+++ b/plugins/colordialog/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'tr', {
diff --git a/plugins/colordialog/lang/tt.js b/plugins/colordialog/lang/tt.js
index cdddb4ad..6c6a53e7 100644
--- a/plugins/colordialog/lang/tt.js
+++ b/plugins/colordialog/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'tt', {
diff --git a/plugins/colordialog/lang/ug.js b/plugins/colordialog/lang/ug.js
index df55cc4a..e4af7532 100644
--- a/plugins/colordialog/lang/ug.js
+++ b/plugins/colordialog/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'ug', {
diff --git a/plugins/colordialog/lang/uk.js b/plugins/colordialog/lang/uk.js
index bf43e27d..4ee00cfe 100644
--- a/plugins/colordialog/lang/uk.js
+++ b/plugins/colordialog/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'uk', {
diff --git a/plugins/colordialog/lang/vi.js b/plugins/colordialog/lang/vi.js
index cb4dfdfd..c685011b 100644
--- a/plugins/colordialog/lang/vi.js
+++ b/plugins/colordialog/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'vi', {
diff --git a/plugins/colordialog/lang/zh-cn.js b/plugins/colordialog/lang/zh-cn.js
index b97d5905..51e22ad7 100644
--- a/plugins/colordialog/lang/zh-cn.js
+++ b/plugins/colordialog/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'zh-cn', {
diff --git a/plugins/colordialog/lang/zh.js b/plugins/colordialog/lang/zh.js
index 74d93ed4..e3858ac2 100644
--- a/plugins/colordialog/lang/zh.js
+++ b/plugins/colordialog/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'colordialog', 'zh', {
diff --git a/plugins/colordialog/plugin.js b/plugins/colordialog/plugin.js
index a23ae129..67dc1b12 100644
--- a/plugins/colordialog/plugin.js
+++ b/plugins/colordialog/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/contextmenu/lang/af.js b/plugins/contextmenu/lang/af.js
index 76778668..0b3844eb 100644
--- a/plugins/contextmenu/lang/af.js
+++ b/plugins/contextmenu/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'af', {
diff --git a/plugins/contextmenu/lang/ar.js b/plugins/contextmenu/lang/ar.js
index 46e34e10..14641932 100644
--- a/plugins/contextmenu/lang/ar.js
+++ b/plugins/contextmenu/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'ar', {
diff --git a/plugins/contextmenu/lang/az.js b/plugins/contextmenu/lang/az.js
index 6c7071cc..9ba9cf6a 100644
--- a/plugins/contextmenu/lang/az.js
+++ b/plugins/contextmenu/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'az', {
diff --git a/plugins/contextmenu/lang/bg.js b/plugins/contextmenu/lang/bg.js
index 6738e8fc..a28b98e8 100644
--- a/plugins/contextmenu/lang/bg.js
+++ b/plugins/contextmenu/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'bg', {
diff --git a/plugins/contextmenu/lang/bn.js b/plugins/contextmenu/lang/bn.js
index 21ada2a4..f5b1a8f0 100644
--- a/plugins/contextmenu/lang/bn.js
+++ b/plugins/contextmenu/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'bn', {
diff --git a/plugins/contextmenu/lang/bs.js b/plugins/contextmenu/lang/bs.js
index 2a026890..9bf8bac8 100644
--- a/plugins/contextmenu/lang/bs.js
+++ b/plugins/contextmenu/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'bs', {
diff --git a/plugins/contextmenu/lang/ca.js b/plugins/contextmenu/lang/ca.js
index 10fe82f3..057dcc93 100644
--- a/plugins/contextmenu/lang/ca.js
+++ b/plugins/contextmenu/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'ca', {
diff --git a/plugins/contextmenu/lang/cs.js b/plugins/contextmenu/lang/cs.js
index aedea714..ebc9c671 100644
--- a/plugins/contextmenu/lang/cs.js
+++ b/plugins/contextmenu/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'cs', {
diff --git a/plugins/contextmenu/lang/cy.js b/plugins/contextmenu/lang/cy.js
index 5d65fd6c..533cd3bb 100644
--- a/plugins/contextmenu/lang/cy.js
+++ b/plugins/contextmenu/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'cy', {
diff --git a/plugins/contextmenu/lang/da.js b/plugins/contextmenu/lang/da.js
index 5aade98d..c49737b7 100644
--- a/plugins/contextmenu/lang/da.js
+++ b/plugins/contextmenu/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'da', {
diff --git a/plugins/contextmenu/lang/de-ch.js b/plugins/contextmenu/lang/de-ch.js
index b3add5ab..551912ba 100644
--- a/plugins/contextmenu/lang/de-ch.js
+++ b/plugins/contextmenu/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'de-ch', {
diff --git a/plugins/contextmenu/lang/de.js b/plugins/contextmenu/lang/de.js
index 4ae8fc98..28718fc9 100644
--- a/plugins/contextmenu/lang/de.js
+++ b/plugins/contextmenu/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'de', {
diff --git a/plugins/contextmenu/lang/el.js b/plugins/contextmenu/lang/el.js
index 766665ca..24098e73 100644
--- a/plugins/contextmenu/lang/el.js
+++ b/plugins/contextmenu/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'el', {
diff --git a/plugins/contextmenu/lang/en-au.js b/plugins/contextmenu/lang/en-au.js
index e556c2a6..8105966e 100644
--- a/plugins/contextmenu/lang/en-au.js
+++ b/plugins/contextmenu/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'en-au', {
diff --git a/plugins/contextmenu/lang/en-ca.js b/plugins/contextmenu/lang/en-ca.js
index 2d59d24f..9e268059 100644
--- a/plugins/contextmenu/lang/en-ca.js
+++ b/plugins/contextmenu/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'en-ca', {
diff --git a/plugins/contextmenu/lang/en-gb.js b/plugins/contextmenu/lang/en-gb.js
index fd6ed499..65d93f20 100644
--- a/plugins/contextmenu/lang/en-gb.js
+++ b/plugins/contextmenu/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'en-gb', {
diff --git a/plugins/contextmenu/lang/en.js b/plugins/contextmenu/lang/en.js
index 0960263f..54df54e7 100644
--- a/plugins/contextmenu/lang/en.js
+++ b/plugins/contextmenu/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'en', {
diff --git a/plugins/contextmenu/lang/eo.js b/plugins/contextmenu/lang/eo.js
index b1a193b0..356bfeb8 100644
--- a/plugins/contextmenu/lang/eo.js
+++ b/plugins/contextmenu/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'eo', {
diff --git a/plugins/contextmenu/lang/es-mx.js b/plugins/contextmenu/lang/es-mx.js
index f1434dff..37ee2917 100644
--- a/plugins/contextmenu/lang/es-mx.js
+++ b/plugins/contextmenu/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'es-mx', {
diff --git a/plugins/contextmenu/lang/es.js b/plugins/contextmenu/lang/es.js
index 2962617e..6afaea51 100644
--- a/plugins/contextmenu/lang/es.js
+++ b/plugins/contextmenu/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'es', {
diff --git a/plugins/contextmenu/lang/et.js b/plugins/contextmenu/lang/et.js
index 2c305765..9114ac43 100644
--- a/plugins/contextmenu/lang/et.js
+++ b/plugins/contextmenu/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'et', {
diff --git a/plugins/contextmenu/lang/eu.js b/plugins/contextmenu/lang/eu.js
index a193a782..24e958be 100644
--- a/plugins/contextmenu/lang/eu.js
+++ b/plugins/contextmenu/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'eu', {
diff --git a/plugins/contextmenu/lang/fa.js b/plugins/contextmenu/lang/fa.js
index 02e1bb15..c63ade47 100644
--- a/plugins/contextmenu/lang/fa.js
+++ b/plugins/contextmenu/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'fa', {
diff --git a/plugins/contextmenu/lang/fi.js b/plugins/contextmenu/lang/fi.js
index 3c193004..ce023ddf 100644
--- a/plugins/contextmenu/lang/fi.js
+++ b/plugins/contextmenu/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'fi', {
diff --git a/plugins/contextmenu/lang/fo.js b/plugins/contextmenu/lang/fo.js
index 1e0bbf54..5033f33b 100644
--- a/plugins/contextmenu/lang/fo.js
+++ b/plugins/contextmenu/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'fo', {
diff --git a/plugins/contextmenu/lang/fr-ca.js b/plugins/contextmenu/lang/fr-ca.js
index 47390724..94011ba3 100644
--- a/plugins/contextmenu/lang/fr-ca.js
+++ b/plugins/contextmenu/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'fr-ca', {
diff --git a/plugins/contextmenu/lang/fr.js b/plugins/contextmenu/lang/fr.js
index d065290a..d42da29e 100644
--- a/plugins/contextmenu/lang/fr.js
+++ b/plugins/contextmenu/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'fr', {
diff --git a/plugins/contextmenu/lang/gl.js b/plugins/contextmenu/lang/gl.js
index 9e6e6303..84fe8119 100644
--- a/plugins/contextmenu/lang/gl.js
+++ b/plugins/contextmenu/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'gl', {
diff --git a/plugins/contextmenu/lang/gu.js b/plugins/contextmenu/lang/gu.js
index c981543b..cc7e551a 100644
--- a/plugins/contextmenu/lang/gu.js
+++ b/plugins/contextmenu/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'gu', {
diff --git a/plugins/contextmenu/lang/he.js b/plugins/contextmenu/lang/he.js
index df6a9878..3a9d3366 100644
--- a/plugins/contextmenu/lang/he.js
+++ b/plugins/contextmenu/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'he', {
diff --git a/plugins/contextmenu/lang/hi.js b/plugins/contextmenu/lang/hi.js
index 644303dc..147bbed6 100644
--- a/plugins/contextmenu/lang/hi.js
+++ b/plugins/contextmenu/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'hi', {
diff --git a/plugins/contextmenu/lang/hr.js b/plugins/contextmenu/lang/hr.js
index 34ede094..c35eaa78 100644
--- a/plugins/contextmenu/lang/hr.js
+++ b/plugins/contextmenu/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'hr', {
diff --git a/plugins/contextmenu/lang/hu.js b/plugins/contextmenu/lang/hu.js
index 0dd61564..32c0bc55 100644
--- a/plugins/contextmenu/lang/hu.js
+++ b/plugins/contextmenu/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'hu', {
diff --git a/plugins/contextmenu/lang/id.js b/plugins/contextmenu/lang/id.js
index ebe143e5..aaf04cca 100644
--- a/plugins/contextmenu/lang/id.js
+++ b/plugins/contextmenu/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'id', {
diff --git a/plugins/contextmenu/lang/is.js b/plugins/contextmenu/lang/is.js
index 0083a63e..658b8b4e 100644
--- a/plugins/contextmenu/lang/is.js
+++ b/plugins/contextmenu/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'is', {
diff --git a/plugins/contextmenu/lang/it.js b/plugins/contextmenu/lang/it.js
index e812cbb3..ed0a97cd 100644
--- a/plugins/contextmenu/lang/it.js
+++ b/plugins/contextmenu/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'it', {
diff --git a/plugins/contextmenu/lang/ja.js b/plugins/contextmenu/lang/ja.js
index fcf99679..1e8198be 100644
--- a/plugins/contextmenu/lang/ja.js
+++ b/plugins/contextmenu/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'ja', {
diff --git a/plugins/contextmenu/lang/ka.js b/plugins/contextmenu/lang/ka.js
index 1c685a23..a4a206ad 100644
--- a/plugins/contextmenu/lang/ka.js
+++ b/plugins/contextmenu/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'ka', {
diff --git a/plugins/contextmenu/lang/km.js b/plugins/contextmenu/lang/km.js
index 33b03642..c0ecdabe 100644
--- a/plugins/contextmenu/lang/km.js
+++ b/plugins/contextmenu/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'km', {
diff --git a/plugins/contextmenu/lang/ko.js b/plugins/contextmenu/lang/ko.js
index 29c2d821..6606627f 100644
--- a/plugins/contextmenu/lang/ko.js
+++ b/plugins/contextmenu/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'ko', {
diff --git a/plugins/contextmenu/lang/ku.js b/plugins/contextmenu/lang/ku.js
index f1f79c90..809ee53f 100644
--- a/plugins/contextmenu/lang/ku.js
+++ b/plugins/contextmenu/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'ku', {
diff --git a/plugins/contextmenu/lang/lt.js b/plugins/contextmenu/lang/lt.js
index d6bb30e9..b46965b9 100644
--- a/plugins/contextmenu/lang/lt.js
+++ b/plugins/contextmenu/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'lt', {
diff --git a/plugins/contextmenu/lang/lv.js b/plugins/contextmenu/lang/lv.js
index 6b3e1eab..759d3f55 100644
--- a/plugins/contextmenu/lang/lv.js
+++ b/plugins/contextmenu/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'lv', {
diff --git a/plugins/contextmenu/lang/mk.js b/plugins/contextmenu/lang/mk.js
index 7820d72c..97e77fba 100644
--- a/plugins/contextmenu/lang/mk.js
+++ b/plugins/contextmenu/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'mk', {
diff --git a/plugins/contextmenu/lang/mn.js b/plugins/contextmenu/lang/mn.js
index 05fbd18e..c854d37b 100644
--- a/plugins/contextmenu/lang/mn.js
+++ b/plugins/contextmenu/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'mn', {
diff --git a/plugins/contextmenu/lang/ms.js b/plugins/contextmenu/lang/ms.js
index f1a9412f..c0614d88 100644
--- a/plugins/contextmenu/lang/ms.js
+++ b/plugins/contextmenu/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'ms', {
diff --git a/plugins/contextmenu/lang/nb.js b/plugins/contextmenu/lang/nb.js
index 5d7cc992..134a384f 100644
--- a/plugins/contextmenu/lang/nb.js
+++ b/plugins/contextmenu/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'nb', {
diff --git a/plugins/contextmenu/lang/nl.js b/plugins/contextmenu/lang/nl.js
index 4567e870..c3974b58 100644
--- a/plugins/contextmenu/lang/nl.js
+++ b/plugins/contextmenu/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'nl', {
diff --git a/plugins/contextmenu/lang/no.js b/plugins/contextmenu/lang/no.js
index 8cce1c89..ef01a5da 100644
--- a/plugins/contextmenu/lang/no.js
+++ b/plugins/contextmenu/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'no', {
diff --git a/plugins/contextmenu/lang/oc.js b/plugins/contextmenu/lang/oc.js
index cc361cba..7a95582f 100644
--- a/plugins/contextmenu/lang/oc.js
+++ b/plugins/contextmenu/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'oc', {
diff --git a/plugins/contextmenu/lang/pl.js b/plugins/contextmenu/lang/pl.js
index 0c452d97..d6baa0b4 100644
--- a/plugins/contextmenu/lang/pl.js
+++ b/plugins/contextmenu/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'pl', {
diff --git a/plugins/contextmenu/lang/pt-br.js b/plugins/contextmenu/lang/pt-br.js
index 12d72a23..b41e75a1 100644
--- a/plugins/contextmenu/lang/pt-br.js
+++ b/plugins/contextmenu/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'pt-br', {
diff --git a/plugins/contextmenu/lang/pt.js b/plugins/contextmenu/lang/pt.js
index 1bf9eb96..5dbad46a 100644
--- a/plugins/contextmenu/lang/pt.js
+++ b/plugins/contextmenu/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'pt', {
diff --git a/plugins/contextmenu/lang/ro.js b/plugins/contextmenu/lang/ro.js
index 240cf80c..1bd8b88d 100644
--- a/plugins/contextmenu/lang/ro.js
+++ b/plugins/contextmenu/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'ro', {
diff --git a/plugins/contextmenu/lang/ru.js b/plugins/contextmenu/lang/ru.js
index f8199714..2b195571 100644
--- a/plugins/contextmenu/lang/ru.js
+++ b/plugins/contextmenu/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'ru', {
diff --git a/plugins/contextmenu/lang/si.js b/plugins/contextmenu/lang/si.js
index 19f30136..d571be03 100644
--- a/plugins/contextmenu/lang/si.js
+++ b/plugins/contextmenu/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'si', {
diff --git a/plugins/contextmenu/lang/sk.js b/plugins/contextmenu/lang/sk.js
index 10f7480b..5eab22b3 100644
--- a/plugins/contextmenu/lang/sk.js
+++ b/plugins/contextmenu/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'sk', {
diff --git a/plugins/contextmenu/lang/sl.js b/plugins/contextmenu/lang/sl.js
index 36072ff4..a6fccbe9 100644
--- a/plugins/contextmenu/lang/sl.js
+++ b/plugins/contextmenu/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'sl', {
diff --git a/plugins/contextmenu/lang/sq.js b/plugins/contextmenu/lang/sq.js
index 3b462803..3760c14c 100644
--- a/plugins/contextmenu/lang/sq.js
+++ b/plugins/contextmenu/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'sq', {
diff --git a/plugins/contextmenu/lang/sr-latn.js b/plugins/contextmenu/lang/sr-latn.js
index d18f372c..e2f286c2 100644
--- a/plugins/contextmenu/lang/sr-latn.js
+++ b/plugins/contextmenu/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'sr-latn', {
diff --git a/plugins/contextmenu/lang/sr.js b/plugins/contextmenu/lang/sr.js
index 8e0622e9..35ccdf93 100644
--- a/plugins/contextmenu/lang/sr.js
+++ b/plugins/contextmenu/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'sr', {
diff --git a/plugins/contextmenu/lang/sv.js b/plugins/contextmenu/lang/sv.js
index 3e7a3612..ca9b0491 100644
--- a/plugins/contextmenu/lang/sv.js
+++ b/plugins/contextmenu/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'sv', {
diff --git a/plugins/contextmenu/lang/th.js b/plugins/contextmenu/lang/th.js
index 9e144022..1b3de678 100644
--- a/plugins/contextmenu/lang/th.js
+++ b/plugins/contextmenu/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'th', {
diff --git a/plugins/contextmenu/lang/tr.js b/plugins/contextmenu/lang/tr.js
index 8b2a284c..4cc93605 100644
--- a/plugins/contextmenu/lang/tr.js
+++ b/plugins/contextmenu/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'tr', {
diff --git a/plugins/contextmenu/lang/tt.js b/plugins/contextmenu/lang/tt.js
index aea793da..35a3d58b 100644
--- a/plugins/contextmenu/lang/tt.js
+++ b/plugins/contextmenu/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'tt', {
diff --git a/plugins/contextmenu/lang/ug.js b/plugins/contextmenu/lang/ug.js
index 11292fc7..cc98713c 100644
--- a/plugins/contextmenu/lang/ug.js
+++ b/plugins/contextmenu/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'ug', {
diff --git a/plugins/contextmenu/lang/uk.js b/plugins/contextmenu/lang/uk.js
index 00595773..81409bbc 100644
--- a/plugins/contextmenu/lang/uk.js
+++ b/plugins/contextmenu/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'uk', {
diff --git a/plugins/contextmenu/lang/vi.js b/plugins/contextmenu/lang/vi.js
index 38f93bd2..3c5accfd 100644
--- a/plugins/contextmenu/lang/vi.js
+++ b/plugins/contextmenu/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'vi', {
diff --git a/plugins/contextmenu/lang/zh-cn.js b/plugins/contextmenu/lang/zh-cn.js
index 86a115c9..dff7415d 100644
--- a/plugins/contextmenu/lang/zh-cn.js
+++ b/plugins/contextmenu/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'zh-cn', {
diff --git a/plugins/contextmenu/lang/zh.js b/plugins/contextmenu/lang/zh.js
index 7963c17b..03c97f63 100644
--- a/plugins/contextmenu/lang/zh.js
+++ b/plugins/contextmenu/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'contextmenu', 'zh', {
diff --git a/plugins/contextmenu/plugin.js b/plugins/contextmenu/plugin.js
index 42ccf40f..1040b1f4 100644
--- a/plugins/contextmenu/plugin.js
+++ b/plugins/contextmenu/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/copyformatting/lang/ar.js b/plugins/copyformatting/lang/ar.js
index c28c7dce..59ab3acf 100644
--- a/plugins/copyformatting/lang/ar.js
+++ b/plugins/copyformatting/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'ar', {
diff --git a/plugins/copyformatting/lang/az.js b/plugins/copyformatting/lang/az.js
index 5e94cc8e..d8ccbfe6 100644
--- a/plugins/copyformatting/lang/az.js
+++ b/plugins/copyformatting/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'az', {
diff --git a/plugins/copyformatting/lang/bg.js b/plugins/copyformatting/lang/bg.js
index c133b333..53cc63be 100644
--- a/plugins/copyformatting/lang/bg.js
+++ b/plugins/copyformatting/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'bg', {
diff --git a/plugins/copyformatting/lang/cs.js b/plugins/copyformatting/lang/cs.js
index 1af36381..5de8c1f0 100644
--- a/plugins/copyformatting/lang/cs.js
+++ b/plugins/copyformatting/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'cs', {
diff --git a/plugins/copyformatting/lang/da.js b/plugins/copyformatting/lang/da.js
index 7fe6b113..28356d06 100644
--- a/plugins/copyformatting/lang/da.js
+++ b/plugins/copyformatting/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'da', {
diff --git a/plugins/copyformatting/lang/de-ch.js b/plugins/copyformatting/lang/de-ch.js
index 565287f1..b82ec742 100644
--- a/plugins/copyformatting/lang/de-ch.js
+++ b/plugins/copyformatting/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'de-ch', {
diff --git a/plugins/copyformatting/lang/de.js b/plugins/copyformatting/lang/de.js
index d3875b3c..9ae72c77 100644
--- a/plugins/copyformatting/lang/de.js
+++ b/plugins/copyformatting/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'de', {
diff --git a/plugins/copyformatting/lang/el.js b/plugins/copyformatting/lang/el.js
index 270d1579..c1e2079b 100644
--- a/plugins/copyformatting/lang/el.js
+++ b/plugins/copyformatting/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'el', {
diff --git a/plugins/copyformatting/lang/en-au.js b/plugins/copyformatting/lang/en-au.js
index 2e963ba6..a4d9756a 100644
--- a/plugins/copyformatting/lang/en-au.js
+++ b/plugins/copyformatting/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'en-au', {
diff --git a/plugins/copyformatting/lang/en.js b/plugins/copyformatting/lang/en.js
index 21821cd7..2e5ac480 100644
--- a/plugins/copyformatting/lang/en.js
+++ b/plugins/copyformatting/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'en', {
diff --git a/plugins/copyformatting/lang/eo.js b/plugins/copyformatting/lang/eo.js
index f3a74879..de2213b3 100644
--- a/plugins/copyformatting/lang/eo.js
+++ b/plugins/copyformatting/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'eo', {
diff --git a/plugins/copyformatting/lang/es-mx.js b/plugins/copyformatting/lang/es-mx.js
index e9a05170..d8648d54 100644
--- a/plugins/copyformatting/lang/es-mx.js
+++ b/plugins/copyformatting/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'es-mx', {
diff --git a/plugins/copyformatting/lang/et.js b/plugins/copyformatting/lang/et.js
index 8b231474..b3ca432b 100644
--- a/plugins/copyformatting/lang/et.js
+++ b/plugins/copyformatting/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'et', {
diff --git a/plugins/copyformatting/lang/eu.js b/plugins/copyformatting/lang/eu.js
index 4d10dd31..d09bed80 100644
--- a/plugins/copyformatting/lang/eu.js
+++ b/plugins/copyformatting/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'eu', {
diff --git a/plugins/copyformatting/lang/fa.js b/plugins/copyformatting/lang/fa.js
index 233922af..7ceee7c4 100644
--- a/plugins/copyformatting/lang/fa.js
+++ b/plugins/copyformatting/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'fa', {
diff --git a/plugins/copyformatting/lang/fr.js b/plugins/copyformatting/lang/fr.js
index 929d9af0..c16b4517 100644
--- a/plugins/copyformatting/lang/fr.js
+++ b/plugins/copyformatting/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'fr', {
diff --git a/plugins/copyformatting/lang/gl.js b/plugins/copyformatting/lang/gl.js
index 12dbcb69..35f77540 100644
--- a/plugins/copyformatting/lang/gl.js
+++ b/plugins/copyformatting/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'gl', {
diff --git a/plugins/copyformatting/lang/hr.js b/plugins/copyformatting/lang/hr.js
index acfe4215..4ae105df 100644
--- a/plugins/copyformatting/lang/hr.js
+++ b/plugins/copyformatting/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'hr', {
diff --git a/plugins/copyformatting/lang/hu.js b/plugins/copyformatting/lang/hu.js
index 6d9c465c..e0bcbdde 100644
--- a/plugins/copyformatting/lang/hu.js
+++ b/plugins/copyformatting/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'hu', {
diff --git a/plugins/copyformatting/lang/it.js b/plugins/copyformatting/lang/it.js
index 4f5a12c2..ce92a375 100644
--- a/plugins/copyformatting/lang/it.js
+++ b/plugins/copyformatting/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'it', {
diff --git a/plugins/copyformatting/lang/ja.js b/plugins/copyformatting/lang/ja.js
index 53480f92..4269f5cc 100644
--- a/plugins/copyformatting/lang/ja.js
+++ b/plugins/copyformatting/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'ja', {
diff --git a/plugins/copyformatting/lang/ko.js b/plugins/copyformatting/lang/ko.js
index 88ddd88a..061f804c 100644
--- a/plugins/copyformatting/lang/ko.js
+++ b/plugins/copyformatting/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'ko', {
diff --git a/plugins/copyformatting/lang/ku.js b/plugins/copyformatting/lang/ku.js
index 17229dc5..8b379a99 100644
--- a/plugins/copyformatting/lang/ku.js
+++ b/plugins/copyformatting/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'ku', {
diff --git a/plugins/copyformatting/lang/lv.js b/plugins/copyformatting/lang/lv.js
index c6b88b83..aeb55cd1 100644
--- a/plugins/copyformatting/lang/lv.js
+++ b/plugins/copyformatting/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'lv', {
diff --git a/plugins/copyformatting/lang/nb.js b/plugins/copyformatting/lang/nb.js
index 14247d47..dc87a042 100644
--- a/plugins/copyformatting/lang/nb.js
+++ b/plugins/copyformatting/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'nb', {
diff --git a/plugins/copyformatting/lang/nl.js b/plugins/copyformatting/lang/nl.js
index 77f8728b..1f613b13 100644
--- a/plugins/copyformatting/lang/nl.js
+++ b/plugins/copyformatting/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'nl', {
diff --git a/plugins/copyformatting/lang/oc.js b/plugins/copyformatting/lang/oc.js
index f8b85bef..520111fe 100644
--- a/plugins/copyformatting/lang/oc.js
+++ b/plugins/copyformatting/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'oc', {
diff --git a/plugins/copyformatting/lang/pl.js b/plugins/copyformatting/lang/pl.js
index 8a2e6f9b..b0eee90c 100644
--- a/plugins/copyformatting/lang/pl.js
+++ b/plugins/copyformatting/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'pl', {
diff --git a/plugins/copyformatting/lang/pt-br.js b/plugins/copyformatting/lang/pt-br.js
index d1d03ec3..9a6400c0 100644
--- a/plugins/copyformatting/lang/pt-br.js
+++ b/plugins/copyformatting/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'pt-br', {
diff --git a/plugins/copyformatting/lang/pt.js b/plugins/copyformatting/lang/pt.js
index 2f1bf67a..2c85053a 100644
--- a/plugins/copyformatting/lang/pt.js
+++ b/plugins/copyformatting/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'pt', {
diff --git a/plugins/copyformatting/lang/ro.js b/plugins/copyformatting/lang/ro.js
index dba9fe9b..815e97ff 100644
--- a/plugins/copyformatting/lang/ro.js
+++ b/plugins/copyformatting/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'ro', {
diff --git a/plugins/copyformatting/lang/ru.js b/plugins/copyformatting/lang/ru.js
index 4ef74571..cd06036a 100644
--- a/plugins/copyformatting/lang/ru.js
+++ b/plugins/copyformatting/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'ru', {
diff --git a/plugins/copyformatting/lang/sk.js b/plugins/copyformatting/lang/sk.js
index b907b614..9cc8c000 100644
--- a/plugins/copyformatting/lang/sk.js
+++ b/plugins/copyformatting/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'sk', {
diff --git a/plugins/copyformatting/lang/sq.js b/plugins/copyformatting/lang/sq.js
index a7656683..5819d361 100644
--- a/plugins/copyformatting/lang/sq.js
+++ b/plugins/copyformatting/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'sq', {
diff --git a/plugins/copyformatting/lang/sr-latn.js b/plugins/copyformatting/lang/sr-latn.js
index a36e6578..0a0563e0 100644
--- a/plugins/copyformatting/lang/sr-latn.js
+++ b/plugins/copyformatting/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'sr-latn', {
diff --git a/plugins/copyformatting/lang/sr.js b/plugins/copyformatting/lang/sr.js
index 4eae12f1..a7792fa8 100644
--- a/plugins/copyformatting/lang/sr.js
+++ b/plugins/copyformatting/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'sr', {
diff --git a/plugins/copyformatting/lang/sv.js b/plugins/copyformatting/lang/sv.js
index 985568f9..c3ed8f6e 100644
--- a/plugins/copyformatting/lang/sv.js
+++ b/plugins/copyformatting/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'sv', {
diff --git a/plugins/copyformatting/lang/tr.js b/plugins/copyformatting/lang/tr.js
index 1112d97e..d7e05efc 100644
--- a/plugins/copyformatting/lang/tr.js
+++ b/plugins/copyformatting/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'tr', {
diff --git a/plugins/copyformatting/lang/uk.js b/plugins/copyformatting/lang/uk.js
index dcc1a685..0ebfd935 100644
--- a/plugins/copyformatting/lang/uk.js
+++ b/plugins/copyformatting/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'uk', {
diff --git a/plugins/copyformatting/lang/vi.js b/plugins/copyformatting/lang/vi.js
index 7c31dd3b..f300176a 100644
--- a/plugins/copyformatting/lang/vi.js
+++ b/plugins/copyformatting/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'vi', {
diff --git a/plugins/copyformatting/lang/zh-cn.js b/plugins/copyformatting/lang/zh-cn.js
index 293b173d..d87c8362 100644
--- a/plugins/copyformatting/lang/zh-cn.js
+++ b/plugins/copyformatting/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'zh-cn', {
diff --git a/plugins/copyformatting/lang/zh.js b/plugins/copyformatting/lang/zh.js
index cdd93f2d..1b598e1d 100644
--- a/plugins/copyformatting/lang/zh.js
+++ b/plugins/copyformatting/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'copyformatting', 'zh', {
diff --git a/plugins/copyformatting/plugin.js b/plugins/copyformatting/plugin.js
index 4f7fa240..c1e5beaf 100644
--- a/plugins/copyformatting/plugin.js
+++ b/plugins/copyformatting/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/copyformatting/styles/copyformatting.css b/plugins/copyformatting/styles/copyformatting.css
index e6f2edba..e18685f8 100644
--- a/plugins/copyformatting/styles/copyformatting.css
+++ b/plugins/copyformatting/styles/copyformatting.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/devtools/lang/_translationstatus.txt b/plugins/devtools/lang/_translationstatus.txt
index 89708a9b..e8cef761 100644
--- a/plugins/devtools/lang/_translationstatus.txt
+++ b/plugins/devtools/lang/_translationstatus.txt
@@ -1,4 +1,4 @@
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 bg.js      Found: 5 Missing: 0
diff --git a/plugins/devtools/lang/ar.js b/plugins/devtools/lang/ar.js
index 49fe0739..dd69fabf 100644
--- a/plugins/devtools/lang/ar.js
+++ b/plugins/devtools/lang/ar.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/az.js b/plugins/devtools/lang/az.js
index 4a0344ef..63ac60df 100644
--- a/plugins/devtools/lang/az.js
+++ b/plugins/devtools/lang/az.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/bg.js b/plugins/devtools/lang/bg.js
index d7f68373..c56990e9 100644
--- a/plugins/devtools/lang/bg.js
+++ b/plugins/devtools/lang/bg.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/ca.js b/plugins/devtools/lang/ca.js
index a855aea3..3159f649 100644
--- a/plugins/devtools/lang/ca.js
+++ b/plugins/devtools/lang/ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/cs.js b/plugins/devtools/lang/cs.js
index 45fc5f56..6d53a932 100644
--- a/plugins/devtools/lang/cs.js
+++ b/plugins/devtools/lang/cs.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/cy.js b/plugins/devtools/lang/cy.js
index c36c0c5c..1ca08ee1 100644
--- a/plugins/devtools/lang/cy.js
+++ b/plugins/devtools/lang/cy.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/da.js b/plugins/devtools/lang/da.js
index 1db43cdf..3737ab17 100644
--- a/plugins/devtools/lang/da.js
+++ b/plugins/devtools/lang/da.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/de-ch.js b/plugins/devtools/lang/de-ch.js
index 22c0183e..5a19eb86 100644
--- a/plugins/devtools/lang/de-ch.js
+++ b/plugins/devtools/lang/de-ch.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/de.js b/plugins/devtools/lang/de.js
index 69a1a713..96a5716a 100644
--- a/plugins/devtools/lang/de.js
+++ b/plugins/devtools/lang/de.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/el.js b/plugins/devtools/lang/el.js
index 3b0ecd12..01c10275 100644
--- a/plugins/devtools/lang/el.js
+++ b/plugins/devtools/lang/el.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/en-au.js b/plugins/devtools/lang/en-au.js
index f724235f..3ed493a6 100644
--- a/plugins/devtools/lang/en-au.js
+++ b/plugins/devtools/lang/en-au.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/en-gb.js b/plugins/devtools/lang/en-gb.js
index 845f0b6f..1311273d 100644
--- a/plugins/devtools/lang/en-gb.js
+++ b/plugins/devtools/lang/en-gb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/en.js b/plugins/devtools/lang/en.js
index 255b4294..86bed478 100644
--- a/plugins/devtools/lang/en.js
+++ b/plugins/devtools/lang/en.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/eo.js b/plugins/devtools/lang/eo.js
index a97a781f..5a174174 100644
--- a/plugins/devtools/lang/eo.js
+++ b/plugins/devtools/lang/eo.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/es-mx.js b/plugins/devtools/lang/es-mx.js
index c422fa49..3eb2d605 100644
--- a/plugins/devtools/lang/es-mx.js
+++ b/plugins/devtools/lang/es-mx.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/es.js b/plugins/devtools/lang/es.js
index 9cf27293..dc376dc8 100644
--- a/plugins/devtools/lang/es.js
+++ b/plugins/devtools/lang/es.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/et.js b/plugins/devtools/lang/et.js
index a00bbac6..37e5f5f2 100644
--- a/plugins/devtools/lang/et.js
+++ b/plugins/devtools/lang/et.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/eu.js b/plugins/devtools/lang/eu.js
index 28ebe983..3e310ee6 100644
--- a/plugins/devtools/lang/eu.js
+++ b/plugins/devtools/lang/eu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/fa.js b/plugins/devtools/lang/fa.js
index 75035f64..cf5b70c0 100644
--- a/plugins/devtools/lang/fa.js
+++ b/plugins/devtools/lang/fa.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/fi.js b/plugins/devtools/lang/fi.js
index 97b91d0d..8a2b3274 100644
--- a/plugins/devtools/lang/fi.js
+++ b/plugins/devtools/lang/fi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/fr-ca.js b/plugins/devtools/lang/fr-ca.js
index 092a4b67..fd13e9c9 100644
--- a/plugins/devtools/lang/fr-ca.js
+++ b/plugins/devtools/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/fr.js b/plugins/devtools/lang/fr.js
index 0a71f459..8db3c34c 100644
--- a/plugins/devtools/lang/fr.js
+++ b/plugins/devtools/lang/fr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/gl.js b/plugins/devtools/lang/gl.js
index 585eab35..e5e47088 100644
--- a/plugins/devtools/lang/gl.js
+++ b/plugins/devtools/lang/gl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/gu.js b/plugins/devtools/lang/gu.js
index 90bc31f7..2a26d4fe 100644
--- a/plugins/devtools/lang/gu.js
+++ b/plugins/devtools/lang/gu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/he.js b/plugins/devtools/lang/he.js
index 7d4e30fd..5344abd3 100644
--- a/plugins/devtools/lang/he.js
+++ b/plugins/devtools/lang/he.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/hr.js b/plugins/devtools/lang/hr.js
index f3f7383a..fb0bef3e 100644
--- a/plugins/devtools/lang/hr.js
+++ b/plugins/devtools/lang/hr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/hu.js b/plugins/devtools/lang/hu.js
index f07866a6..942110d1 100644
--- a/plugins/devtools/lang/hu.js
+++ b/plugins/devtools/lang/hu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/id.js b/plugins/devtools/lang/id.js
index 7034abde..0c335ada 100644
--- a/plugins/devtools/lang/id.js
+++ b/plugins/devtools/lang/id.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/it.js b/plugins/devtools/lang/it.js
index 03b2d98c..66a3a768 100644
--- a/plugins/devtools/lang/it.js
+++ b/plugins/devtools/lang/it.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/ja.js b/plugins/devtools/lang/ja.js
index 2bfe48e5..791fa441 100644
--- a/plugins/devtools/lang/ja.js
+++ b/plugins/devtools/lang/ja.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/km.js b/plugins/devtools/lang/km.js
index 639f5b04..3983c0e0 100644
--- a/plugins/devtools/lang/km.js
+++ b/plugins/devtools/lang/km.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/ko.js b/plugins/devtools/lang/ko.js
index 2adbe774..55416e95 100644
--- a/plugins/devtools/lang/ko.js
+++ b/plugins/devtools/lang/ko.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/ku.js b/plugins/devtools/lang/ku.js
index 7a9852c7..5cd5c20e 100644
--- a/plugins/devtools/lang/ku.js
+++ b/plugins/devtools/lang/ku.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/lt.js b/plugins/devtools/lang/lt.js
index 5a82834b..c2d44f2a 100644
--- a/plugins/devtools/lang/lt.js
+++ b/plugins/devtools/lang/lt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/lv.js b/plugins/devtools/lang/lv.js
index acedd03b..16c383a7 100644
--- a/plugins/devtools/lang/lv.js
+++ b/plugins/devtools/lang/lv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/nb.js b/plugins/devtools/lang/nb.js
index be96f82c..6b4c9eff 100644
--- a/plugins/devtools/lang/nb.js
+++ b/plugins/devtools/lang/nb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/nl.js b/plugins/devtools/lang/nl.js
index 44e9c1ba..676639c7 100644
--- a/plugins/devtools/lang/nl.js
+++ b/plugins/devtools/lang/nl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/no.js b/plugins/devtools/lang/no.js
index bce29090..317325a0 100644
--- a/plugins/devtools/lang/no.js
+++ b/plugins/devtools/lang/no.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/oc.js b/plugins/devtools/lang/oc.js
index 9c486f7f..986087f6 100644
--- a/plugins/devtools/lang/oc.js
+++ b/plugins/devtools/lang/oc.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/pl.js b/plugins/devtools/lang/pl.js
index f67ccf62..d4f8a365 100644
--- a/plugins/devtools/lang/pl.js
+++ b/plugins/devtools/lang/pl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/pt-br.js b/plugins/devtools/lang/pt-br.js
index 87e2c8c4..f6bf0d56 100644
--- a/plugins/devtools/lang/pt-br.js
+++ b/plugins/devtools/lang/pt-br.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/pt.js b/plugins/devtools/lang/pt.js
index b4509820..14918fe3 100644
--- a/plugins/devtools/lang/pt.js
+++ b/plugins/devtools/lang/pt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/ro.js b/plugins/devtools/lang/ro.js
index a71feb4b..ed64484b 100644
--- a/plugins/devtools/lang/ro.js
+++ b/plugins/devtools/lang/ro.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/ru.js b/plugins/devtools/lang/ru.js
index a95a9f50..5fa382c1 100644
--- a/plugins/devtools/lang/ru.js
+++ b/plugins/devtools/lang/ru.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/si.js b/plugins/devtools/lang/si.js
index e6928709..e55ed424 100644
--- a/plugins/devtools/lang/si.js
+++ b/plugins/devtools/lang/si.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/sk.js b/plugins/devtools/lang/sk.js
index ad03b192..d261300b 100644
--- a/plugins/devtools/lang/sk.js
+++ b/plugins/devtools/lang/sk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/sl.js b/plugins/devtools/lang/sl.js
index 7f0e4356..f9aeb836 100644
--- a/plugins/devtools/lang/sl.js
+++ b/plugins/devtools/lang/sl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/sq.js b/plugins/devtools/lang/sq.js
index e502226c..0efc589d 100644
--- a/plugins/devtools/lang/sq.js
+++ b/plugins/devtools/lang/sq.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/sr-latn.js b/plugins/devtools/lang/sr-latn.js
index e9452db8..3e8f157a 100644
--- a/plugins/devtools/lang/sr-latn.js
+++ b/plugins/devtools/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/sr.js b/plugins/devtools/lang/sr.js
index 218e53e3..c8ef4944 100644
--- a/plugins/devtools/lang/sr.js
+++ b/plugins/devtools/lang/sr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/sv.js b/plugins/devtools/lang/sv.js
index f211cd4f..f159f88b 100644
--- a/plugins/devtools/lang/sv.js
+++ b/plugins/devtools/lang/sv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/tr.js b/plugins/devtools/lang/tr.js
index 03babae4..3759a286 100644
--- a/plugins/devtools/lang/tr.js
+++ b/plugins/devtools/lang/tr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/tt.js b/plugins/devtools/lang/tt.js
index 2d8f73c3..834c6478 100644
--- a/plugins/devtools/lang/tt.js
+++ b/plugins/devtools/lang/tt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/ug.js b/plugins/devtools/lang/ug.js
index b214c0c6..e54bcb15 100644
--- a/plugins/devtools/lang/ug.js
+++ b/plugins/devtools/lang/ug.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/uk.js b/plugins/devtools/lang/uk.js
index 25f1cb12..5c3f8b65 100644
--- a/plugins/devtools/lang/uk.js
+++ b/plugins/devtools/lang/uk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/vi.js b/plugins/devtools/lang/vi.js
index 5a524101..cb511ace 100644
--- a/plugins/devtools/lang/vi.js
+++ b/plugins/devtools/lang/vi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/zh-cn.js b/plugins/devtools/lang/zh-cn.js
index a6a39fda..63bf15bc 100644
--- a/plugins/devtools/lang/zh-cn.js
+++ b/plugins/devtools/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/lang/zh.js b/plugins/devtools/lang/zh.js
index 595d2d65..6843b6f3 100644
--- a/plugins/devtools/lang/zh.js
+++ b/plugins/devtools/lang/zh.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/plugin.js b/plugins/devtools/plugin.js
index 5e4b1623..c4256354 100644
--- a/plugins/devtools/plugin.js
+++ b/plugins/devtools/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/devtools/samples/devtools.html b/plugins/devtools/samples/devtools.html
index e5599ddb..562da2f0 100644
--- a/plugins/devtools/samples/devtools.html
+++ b/plugins/devtools/samples/devtools.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -79,7 +79,7 @@ CKEDITOR.replace( '<em>textarea_id</em>', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/dialog/dialogDefinition.js b/plugins/dialog/dialogDefinition.js
index 0e887f14..17090d8b 100644
--- a/plugins/dialog/dialogDefinition.js
+++ b/plugins/dialog/dialogDefinition.js
@@ -1,6 +1,6 @@
 // jscs:disable disallowMixedSpacesAndTabs
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/dialog/plugin.js b/plugins/dialog/plugin.js
index 58094f89..b6a50779 100644
--- a/plugins/dialog/plugin.js
+++ b/plugins/dialog/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -1125,9 +1125,12 @@ CKEDITOR.DIALOG_STATE_BUSY = 2;
 			if ( !this._.parentDialog ) {
 				hideCover( this._.editor );
 			} else {
-				var parentElement = this._.parentDialog.getElement().getFirst();
-				this._.parentDialog.getElement().removeStyle( 'z-index' );
-				parentElement.setStyle( 'z-index', parseInt( parentElement.$.style.zIndex, 10 ) + Math.floor( this._.editor.config.baseFloatZIndex / 2 ) );
+				var parentElement = this._.parentDialog.getElement().getFirst(),
+					newZIndex = parseInt( parentElement.$.style.zIndex, 10 ) +
+						Math.floor( this._.editor.config.baseFloatZIndex / 2 );
+
+				this._.parentDialog.getElement().setStyle( 'z-index', newZIndex );
+				parentElement.setStyle( 'z-index', newZIndex );
 			}
 			CKEDITOR.dialog._.currentTop = this._.parentDialog;
 
diff --git a/plugins/dialog/samples/assets/my_dialog.js b/plugins/dialog/samples/assets/my_dialog.js
index 89e6711b..11b63353 100644
--- a/plugins/dialog/samples/assets/my_dialog.js
+++ b/plugins/dialog/samples/assets/my_dialog.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/dialog/samples/dialog.html b/plugins/dialog/samples/dialog.html
index b0ad1a94..a171cb16 100644
--- a/plugins/dialog/samples/dialog.html
+++ b/plugins/dialog/samples/dialog.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -183,7 +183,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/dialogadvtab/plugin.js b/plugins/dialogadvtab/plugin.js
index d0d6e11b..fe0d8b2a 100644
--- a/plugins/dialogadvtab/plugin.js
+++ b/plugins/dialogadvtab/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/dialogui/plugin.js b/plugins/dialogui/plugin.js
index 95cef42d..0d836ed6 100644
--- a/plugins/dialogui/plugin.js
+++ b/plugins/dialogui/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -475,10 +475,15 @@ CKEDITOR.plugins.add( 'dialogui', {
 						if ( typeof inputDefinition.inputStyle != 'undefined' )
 							inputDefinition.style = inputDefinition.inputStyle;
 
-						// Make inputs of radio type focusable (https://dev.ckeditor.com/ticket/10866).
-						inputDefinition.keyboardFocusable = true;
+						var radioElement = new CKEDITOR.ui.dialog.uiElement( dialog, inputDefinition, inputHtml, 'input', null, inputAttributes );
 
-						children.push( new CKEDITOR.ui.dialog.uiElement( dialog, inputDefinition, inputHtml, 'input', null, inputAttributes ) );
+						// Calling the click method on the focus is responsible for updating the
+						// current focused index in the dialog (#439).
+						radioElement.on( 'focus', function() {
+							me.click();
+						} );
+
+						children.push( radioElement );
 
 						inputHtml.push( ' ' );
 
@@ -1249,6 +1254,42 @@ CKEDITOR.plugins.add( 'dialogui', {
 
 		/** @class CKEDITOR.ui.dialog.radio */
 		CKEDITOR.ui.dialog.radio.prototype = CKEDITOR.tools.extend( new CKEDITOR.ui.dialog.uiElement(), {
+			focus: function() {
+				var children = this._.children,
+					// Focus the first radio button in the group by default.
+					focusTarget = children[ 0 ],
+					dialogInternal = this._.dialog._,
+					currentFocusIndex = dialogInternal.currentFocusIndex,
+					isMovingBackwards = currentFocusIndex > this.focusIndex,
+					isStartingNewLoop = currentFocusIndex === dialogInternal.focusList.length - 1 && this.focusIndex === 0;
+
+				// If focus was changed by using SHIFT + TAB key and the previous radio group
+				// does not have any checked element, focus on the last one in the current radio group.
+				//
+				// When the dialog is shown and the first element is not focused,
+				// then, by default the 'currentFocusIndex' is set as
+				// the last element from the focus list, and it can be treated as moving focus backward,
+				// causing the focus to be incorrectly set to the last element of the radio
+				// group, instead of the first one (#439).
+				if ( isMovingBackwards && !isStartingNewLoop ) {
+					focusTarget = children[ children.length - 1 ];
+				}
+
+				// Set the dialog internal current focus index to the index of the current radio
+				// element from the focus list.
+				dialogInternal.currentFocusIndex = this.focusIndex;
+
+				for ( var i = 0; i < children.length; i++ ) {
+					var child = children[ i ];
+
+					if ( child.getInputElement().$.checked ) {
+						focusTarget = child;
+						break;
+					}
+				}
+
+				focusTarget.focus();
+			},
 			/**
 			 * Selects one of the radio buttons in this button group.
 			 *
@@ -1294,7 +1335,12 @@ CKEDITOR.plugins.add( 'dialogui', {
 				}
 				children[ 0 ].getElement().focus();
 			},
-
+			click: function() {
+				// Update currentFocusIndex after clicking on the given radio element. Otherwise, click
+				// will move the focus but the focus index will not be updated, causing moving the
+				// focus incorrectly based on the previous focus index while using Tab or Shift + Tab key (#439).
+				this._.dialog._.currentFocusIndex = this.focusIndex;
+			},
 			/**
 			 * Defines the `onChange` event for UI element definitions.
 			 *
@@ -1321,7 +1367,8 @@ CKEDITOR.plugins.add( 'dialogui', {
 					}
 					return null;
 				}
-			}
+			},
+			keyboardFocusable: true
 		}, commonPrototype, true );
 
 		/** @class CKEDITOR.ui.dialog.file */
diff --git a/plugins/div/dialogs/div.js b/plugins/div/dialogs/div.js
index 667551f1..96e3fe70 100644
--- a/plugins/div/dialogs/div.js
+++ b/plugins/div/dialogs/div.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/div/lang/af.js b/plugins/div/lang/af.js
index 6d047b89..4fb9da37 100644
--- a/plugins/div/lang/af.js
+++ b/plugins/div/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'af', {
diff --git a/plugins/div/lang/ar.js b/plugins/div/lang/ar.js
index 35ca4caf..6414ee76 100644
--- a/plugins/div/lang/ar.js
+++ b/plugins/div/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'ar', {
diff --git a/plugins/div/lang/az.js b/plugins/div/lang/az.js
index aed0e26a..13759c3e 100644
--- a/plugins/div/lang/az.js
+++ b/plugins/div/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'az', {
diff --git a/plugins/div/lang/bg.js b/plugins/div/lang/bg.js
index 3bab0415..2f3c3933 100644
--- a/plugins/div/lang/bg.js
+++ b/plugins/div/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'bg', {
diff --git a/plugins/div/lang/bn.js b/plugins/div/lang/bn.js
index 595a9b96..7a678800 100644
--- a/plugins/div/lang/bn.js
+++ b/plugins/div/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'bn', {
diff --git a/plugins/div/lang/bs.js b/plugins/div/lang/bs.js
index ff1c6a65..e9d99e53 100644
--- a/plugins/div/lang/bs.js
+++ b/plugins/div/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'bs', {
diff --git a/plugins/div/lang/ca.js b/plugins/div/lang/ca.js
index 534c0505..7b8613a1 100644
--- a/plugins/div/lang/ca.js
+++ b/plugins/div/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'ca', {
diff --git a/plugins/div/lang/cs.js b/plugins/div/lang/cs.js
index 06e7d843..f19a8842 100644
--- a/plugins/div/lang/cs.js
+++ b/plugins/div/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'cs', {
diff --git a/plugins/div/lang/cy.js b/plugins/div/lang/cy.js
index c50be00e..7e6a8b96 100644
--- a/plugins/div/lang/cy.js
+++ b/plugins/div/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'cy', {
diff --git a/plugins/div/lang/da.js b/plugins/div/lang/da.js
index e58a8989..949dd4c5 100644
--- a/plugins/div/lang/da.js
+++ b/plugins/div/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'da', {
diff --git a/plugins/div/lang/de-ch.js b/plugins/div/lang/de-ch.js
index 96a36ff6..08539053 100644
--- a/plugins/div/lang/de-ch.js
+++ b/plugins/div/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'de-ch', {
diff --git a/plugins/div/lang/de.js b/plugins/div/lang/de.js
index 945a9bad..2c348f42 100644
--- a/plugins/div/lang/de.js
+++ b/plugins/div/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'de', {
diff --git a/plugins/div/lang/el.js b/plugins/div/lang/el.js
index e8dad013..95834e20 100644
--- a/plugins/div/lang/el.js
+++ b/plugins/div/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'el', {
diff --git a/plugins/div/lang/en-au.js b/plugins/div/lang/en-au.js
index c3de759e..d88c9b44 100644
--- a/plugins/div/lang/en-au.js
+++ b/plugins/div/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'en-au', {
diff --git a/plugins/div/lang/en-ca.js b/plugins/div/lang/en-ca.js
index f9e000b5..04d7d558 100644
--- a/plugins/div/lang/en-ca.js
+++ b/plugins/div/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'en-ca', {
diff --git a/plugins/div/lang/en-gb.js b/plugins/div/lang/en-gb.js
index b5356408..6b1b9524 100644
--- a/plugins/div/lang/en-gb.js
+++ b/plugins/div/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'en-gb', {
diff --git a/plugins/div/lang/en.js b/plugins/div/lang/en.js
index 010b82d0..f7ff6687 100644
--- a/plugins/div/lang/en.js
+++ b/plugins/div/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'en', {
diff --git a/plugins/div/lang/eo.js b/plugins/div/lang/eo.js
index 3c9a26c6..f9857ebf 100644
--- a/plugins/div/lang/eo.js
+++ b/plugins/div/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'eo', {
diff --git a/plugins/div/lang/es-mx.js b/plugins/div/lang/es-mx.js
index ecd8c739..6b6a874e 100644
--- a/plugins/div/lang/es-mx.js
+++ b/plugins/div/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'es-mx', {
diff --git a/plugins/div/lang/es.js b/plugins/div/lang/es.js
index 7984a200..c889307c 100644
--- a/plugins/div/lang/es.js
+++ b/plugins/div/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'es', {
diff --git a/plugins/div/lang/et.js b/plugins/div/lang/et.js
index f1515ff1..febd64f2 100644
--- a/plugins/div/lang/et.js
+++ b/plugins/div/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'et', {
diff --git a/plugins/div/lang/eu.js b/plugins/div/lang/eu.js
index dcb29e26..cb04cdaa 100644
--- a/plugins/div/lang/eu.js
+++ b/plugins/div/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'eu', {
diff --git a/plugins/div/lang/fa.js b/plugins/div/lang/fa.js
index 0fa5f08a..cf10d641 100644
--- a/plugins/div/lang/fa.js
+++ b/plugins/div/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'fa', {
diff --git a/plugins/div/lang/fi.js b/plugins/div/lang/fi.js
index e6d4b96f..7de0e487 100644
--- a/plugins/div/lang/fi.js
+++ b/plugins/div/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'fi', {
diff --git a/plugins/div/lang/fo.js b/plugins/div/lang/fo.js
index 07b0e918..630121dc 100644
--- a/plugins/div/lang/fo.js
+++ b/plugins/div/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'fo', {
diff --git a/plugins/div/lang/fr-ca.js b/plugins/div/lang/fr-ca.js
index 773730be..ff3bd21d 100644
--- a/plugins/div/lang/fr-ca.js
+++ b/plugins/div/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'fr-ca', {
diff --git a/plugins/div/lang/fr.js b/plugins/div/lang/fr.js
index 61cf30b3..40d2ed4e 100644
--- a/plugins/div/lang/fr.js
+++ b/plugins/div/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'fr', {
diff --git a/plugins/div/lang/gl.js b/plugins/div/lang/gl.js
index 196f6824..fc9cbeb8 100644
--- a/plugins/div/lang/gl.js
+++ b/plugins/div/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'gl', {
diff --git a/plugins/div/lang/gu.js b/plugins/div/lang/gu.js
index 02107d4e..7f0e33b5 100644
--- a/plugins/div/lang/gu.js
+++ b/plugins/div/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'gu', {
diff --git a/plugins/div/lang/he.js b/plugins/div/lang/he.js
index d7727611..ea9c602a 100644
--- a/plugins/div/lang/he.js
+++ b/plugins/div/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'he', {
diff --git a/plugins/div/lang/hi.js b/plugins/div/lang/hi.js
index 11c726ae..c3717d08 100644
--- a/plugins/div/lang/hi.js
+++ b/plugins/div/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'hi', {
diff --git a/plugins/div/lang/hr.js b/plugins/div/lang/hr.js
index 8e4bae69..adee93b6 100644
--- a/plugins/div/lang/hr.js
+++ b/plugins/div/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'hr', {
diff --git a/plugins/div/lang/hu.js b/plugins/div/lang/hu.js
index 143f0a9d..e9111002 100644
--- a/plugins/div/lang/hu.js
+++ b/plugins/div/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'hu', {
diff --git a/plugins/div/lang/id.js b/plugins/div/lang/id.js
index c6249e39..86912041 100644
--- a/plugins/div/lang/id.js
+++ b/plugins/div/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'id', {
diff --git a/plugins/div/lang/is.js b/plugins/div/lang/is.js
index 3c556262..f75bcb41 100644
--- a/plugins/div/lang/is.js
+++ b/plugins/div/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'is', {
diff --git a/plugins/div/lang/it.js b/plugins/div/lang/it.js
index 473478e3..da4c5b23 100644
--- a/plugins/div/lang/it.js
+++ b/plugins/div/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'it', {
diff --git a/plugins/div/lang/ja.js b/plugins/div/lang/ja.js
index a4cbfecc..21b61318 100644
--- a/plugins/div/lang/ja.js
+++ b/plugins/div/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'ja', {
diff --git a/plugins/div/lang/ka.js b/plugins/div/lang/ka.js
index 25ae864d..8ef24977 100644
--- a/plugins/div/lang/ka.js
+++ b/plugins/div/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'ka', {
diff --git a/plugins/div/lang/km.js b/plugins/div/lang/km.js
index 7b76c870..966caff8 100644
--- a/plugins/div/lang/km.js
+++ b/plugins/div/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'km', {
diff --git a/plugins/div/lang/ko.js b/plugins/div/lang/ko.js
index a7cb51c0..9b84a14e 100644
--- a/plugins/div/lang/ko.js
+++ b/plugins/div/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'ko', {
diff --git a/plugins/div/lang/ku.js b/plugins/div/lang/ku.js
index 9ba1e400..be4ecb2c 100644
--- a/plugins/div/lang/ku.js
+++ b/plugins/div/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'ku', {
diff --git a/plugins/div/lang/lt.js b/plugins/div/lang/lt.js
index d45f844e..0eba1bf5 100644
--- a/plugins/div/lang/lt.js
+++ b/plugins/div/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'lt', {
diff --git a/plugins/div/lang/lv.js b/plugins/div/lang/lv.js
index e5b2d34f..2f2493b9 100644
--- a/plugins/div/lang/lv.js
+++ b/plugins/div/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'lv', {
diff --git a/plugins/div/lang/mk.js b/plugins/div/lang/mk.js
index c776597f..00b923e6 100644
--- a/plugins/div/lang/mk.js
+++ b/plugins/div/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'mk', {
diff --git a/plugins/div/lang/mn.js b/plugins/div/lang/mn.js
index efd263ec..101a04d4 100644
--- a/plugins/div/lang/mn.js
+++ b/plugins/div/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'mn', {
diff --git a/plugins/div/lang/ms.js b/plugins/div/lang/ms.js
index db1e3ad1..237773f5 100644
--- a/plugins/div/lang/ms.js
+++ b/plugins/div/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'ms', {
diff --git a/plugins/div/lang/nb.js b/plugins/div/lang/nb.js
index 3b04361a..663e81f1 100644
--- a/plugins/div/lang/nb.js
+++ b/plugins/div/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'nb', {
diff --git a/plugins/div/lang/nl.js b/plugins/div/lang/nl.js
index 16b6d5c5..04ce58d8 100644
--- a/plugins/div/lang/nl.js
+++ b/plugins/div/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'nl', {
diff --git a/plugins/div/lang/no.js b/plugins/div/lang/no.js
index 75e6cfdf..40f9f52b 100644
--- a/plugins/div/lang/no.js
+++ b/plugins/div/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'no', {
diff --git a/plugins/div/lang/oc.js b/plugins/div/lang/oc.js
index 03606ece..b2967218 100644
--- a/plugins/div/lang/oc.js
+++ b/plugins/div/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'oc', {
diff --git a/plugins/div/lang/pl.js b/plugins/div/lang/pl.js
index 053e2dcc..1bfd39c7 100644
--- a/plugins/div/lang/pl.js
+++ b/plugins/div/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'pl', {
diff --git a/plugins/div/lang/pt-br.js b/plugins/div/lang/pt-br.js
index 75353408..3e82a100 100644
--- a/plugins/div/lang/pt-br.js
+++ b/plugins/div/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'pt-br', {
diff --git a/plugins/div/lang/pt.js b/plugins/div/lang/pt.js
index 3ee39eda..0acaae5b 100644
--- a/plugins/div/lang/pt.js
+++ b/plugins/div/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'pt', {
diff --git a/plugins/div/lang/ro.js b/plugins/div/lang/ro.js
index 20cded96..c5f8d019 100644
--- a/plugins/div/lang/ro.js
+++ b/plugins/div/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'ro', {
diff --git a/plugins/div/lang/ru.js b/plugins/div/lang/ru.js
index b5db6be1..f3c53cda 100644
--- a/plugins/div/lang/ru.js
+++ b/plugins/div/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'ru', {
diff --git a/plugins/div/lang/si.js b/plugins/div/lang/si.js
index 8932af26..fce3335e 100644
--- a/plugins/div/lang/si.js
+++ b/plugins/div/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'si', {
diff --git a/plugins/div/lang/sk.js b/plugins/div/lang/sk.js
index 0ff28178..cb242e36 100644
--- a/plugins/div/lang/sk.js
+++ b/plugins/div/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'sk', {
diff --git a/plugins/div/lang/sl.js b/plugins/div/lang/sl.js
index 7d70113b..e357635a 100644
--- a/plugins/div/lang/sl.js
+++ b/plugins/div/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'sl', {
diff --git a/plugins/div/lang/sq.js b/plugins/div/lang/sq.js
index a9fc4c17..564062c3 100644
--- a/plugins/div/lang/sq.js
+++ b/plugins/div/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'sq', {
diff --git a/plugins/div/lang/sr-latn.js b/plugins/div/lang/sr-latn.js
index 8493a4aa..6f2ea20c 100644
--- a/plugins/div/lang/sr-latn.js
+++ b/plugins/div/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'sr-latn', {
diff --git a/plugins/div/lang/sr.js b/plugins/div/lang/sr.js
index aa3ef54e..b9e91811 100644
--- a/plugins/div/lang/sr.js
+++ b/plugins/div/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'sr', {
diff --git a/plugins/div/lang/sv.js b/plugins/div/lang/sv.js
index 28c1fd94..1a85c7ac 100644
--- a/plugins/div/lang/sv.js
+++ b/plugins/div/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'sv', {
diff --git a/plugins/div/lang/th.js b/plugins/div/lang/th.js
index b33d096e..736f4024 100644
--- a/plugins/div/lang/th.js
+++ b/plugins/div/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'th', {
diff --git a/plugins/div/lang/tr.js b/plugins/div/lang/tr.js
index f5fe3efa..e7affcaf 100644
--- a/plugins/div/lang/tr.js
+++ b/plugins/div/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'tr', {
diff --git a/plugins/div/lang/tt.js b/plugins/div/lang/tt.js
index 18044b36..2ecb284c 100644
--- a/plugins/div/lang/tt.js
+++ b/plugins/div/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'tt', {
diff --git a/plugins/div/lang/ug.js b/plugins/div/lang/ug.js
index 0a6eeb37..83b5f726 100644
--- a/plugins/div/lang/ug.js
+++ b/plugins/div/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'ug', {
diff --git a/plugins/div/lang/uk.js b/plugins/div/lang/uk.js
index 3d346ec5..e8355b37 100644
--- a/plugins/div/lang/uk.js
+++ b/plugins/div/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'uk', {
diff --git a/plugins/div/lang/vi.js b/plugins/div/lang/vi.js
index 91c12c18..123771c3 100644
--- a/plugins/div/lang/vi.js
+++ b/plugins/div/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'vi', {
diff --git a/plugins/div/lang/zh-cn.js b/plugins/div/lang/zh-cn.js
index 9a10d6b0..73c7f143 100644
--- a/plugins/div/lang/zh-cn.js
+++ b/plugins/div/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'zh-cn', {
diff --git a/plugins/div/lang/zh.js b/plugins/div/lang/zh.js
index b78915e2..de0f65c5 100644
--- a/plugins/div/lang/zh.js
+++ b/plugins/div/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'div', 'zh', {
diff --git a/plugins/div/plugin.js b/plugins/div/plugin.js
index 693f4b78..0291a548 100644
--- a/plugins/div/plugin.js
+++ b/plugins/div/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/divarea/plugin.js b/plugins/divarea/plugin.js
index 377f9b5d..897b23af 100644
--- a/plugins/divarea/plugin.js
+++ b/plugins/divarea/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/divarea/samples/divarea.html b/plugins/divarea/samples/divarea.html
index 8b8243c8..0a93b6cc 100644
--- a/plugins/divarea/samples/divarea.html
+++ b/plugins/divarea/samples/divarea.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -57,7 +57,7 @@ CKEDITOR.replace( '<em>textarea_id</em>', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/docprops/dialogs/docprops.js b/plugins/docprops/dialogs/docprops.js
index 47c08f36..18e29a06 100644
--- a/plugins/docprops/dialogs/docprops.js
+++ b/plugins/docprops/dialogs/docprops.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/docprops/lang/af.js b/plugins/docprops/lang/af.js
index 4ae07a20..f706c9cc 100644
--- a/plugins/docprops/lang/af.js
+++ b/plugins/docprops/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'af', {
diff --git a/plugins/docprops/lang/ar.js b/plugins/docprops/lang/ar.js
index 0f7b0e9a..ee97d873 100644
--- a/plugins/docprops/lang/ar.js
+++ b/plugins/docprops/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'ar', {
diff --git a/plugins/docprops/lang/az.js b/plugins/docprops/lang/az.js
index bc4adc00..978c9eec 100644
--- a/plugins/docprops/lang/az.js
+++ b/plugins/docprops/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'az', {
diff --git a/plugins/docprops/lang/bg.js b/plugins/docprops/lang/bg.js
index a998d6a4..4c459689 100644
--- a/plugins/docprops/lang/bg.js
+++ b/plugins/docprops/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'bg', {
diff --git a/plugins/docprops/lang/bn.js b/plugins/docprops/lang/bn.js
index ce168e56..343e4bd0 100644
--- a/plugins/docprops/lang/bn.js
+++ b/plugins/docprops/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'bn', {
diff --git a/plugins/docprops/lang/bs.js b/plugins/docprops/lang/bs.js
index 847d4be2..36da76bb 100644
--- a/plugins/docprops/lang/bs.js
+++ b/plugins/docprops/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'bs', {
diff --git a/plugins/docprops/lang/ca.js b/plugins/docprops/lang/ca.js
index f2e44434..b64027fd 100644
--- a/plugins/docprops/lang/ca.js
+++ b/plugins/docprops/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'ca', {
diff --git a/plugins/docprops/lang/cs.js b/plugins/docprops/lang/cs.js
index b648d99e..3fd23eeb 100644
--- a/plugins/docprops/lang/cs.js
+++ b/plugins/docprops/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'cs', {
diff --git a/plugins/docprops/lang/cy.js b/plugins/docprops/lang/cy.js
index 0f9fcc87..d88eb44a 100644
--- a/plugins/docprops/lang/cy.js
+++ b/plugins/docprops/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'cy', {
diff --git a/plugins/docprops/lang/da.js b/plugins/docprops/lang/da.js
index 358215be..1c0c4add 100644
--- a/plugins/docprops/lang/da.js
+++ b/plugins/docprops/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'da', {
diff --git a/plugins/docprops/lang/de-ch.js b/plugins/docprops/lang/de-ch.js
index 4ecb7f21..8b1a2689 100644
--- a/plugins/docprops/lang/de-ch.js
+++ b/plugins/docprops/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'de-ch', {
diff --git a/plugins/docprops/lang/de.js b/plugins/docprops/lang/de.js
index 4fc209d7..f9cf7229 100644
--- a/plugins/docprops/lang/de.js
+++ b/plugins/docprops/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'de', {
diff --git a/plugins/docprops/lang/el.js b/plugins/docprops/lang/el.js
index 7cebae8e..13145bd7 100644
--- a/plugins/docprops/lang/el.js
+++ b/plugins/docprops/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'el', {
diff --git a/plugins/docprops/lang/en-au.js b/plugins/docprops/lang/en-au.js
index 8022a32a..798c3bf3 100644
--- a/plugins/docprops/lang/en-au.js
+++ b/plugins/docprops/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'en-au', {
diff --git a/plugins/docprops/lang/en-ca.js b/plugins/docprops/lang/en-ca.js
index ec127a6a..de350872 100644
--- a/plugins/docprops/lang/en-ca.js
+++ b/plugins/docprops/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'en-ca', {
diff --git a/plugins/docprops/lang/en-gb.js b/plugins/docprops/lang/en-gb.js
index 65cc6bf6..b27ee389 100644
--- a/plugins/docprops/lang/en-gb.js
+++ b/plugins/docprops/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'en-gb', {
diff --git a/plugins/docprops/lang/en.js b/plugins/docprops/lang/en.js
index 0e572a0c..d8a19883 100644
--- a/plugins/docprops/lang/en.js
+++ b/plugins/docprops/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'en', {
diff --git a/plugins/docprops/lang/eo.js b/plugins/docprops/lang/eo.js
index c8b57547..90bbf3f2 100644
--- a/plugins/docprops/lang/eo.js
+++ b/plugins/docprops/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'eo', {
diff --git a/plugins/docprops/lang/es-mx.js b/plugins/docprops/lang/es-mx.js
index ecc98cd8..5b03633b 100644
--- a/plugins/docprops/lang/es-mx.js
+++ b/plugins/docprops/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'es-mx', {
diff --git a/plugins/docprops/lang/es.js b/plugins/docprops/lang/es.js
index 4d1edd2e..cb198c1a 100644
--- a/plugins/docprops/lang/es.js
+++ b/plugins/docprops/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'es', {
diff --git a/plugins/docprops/lang/et.js b/plugins/docprops/lang/et.js
index b41ec1d1..f245ba61 100644
--- a/plugins/docprops/lang/et.js
+++ b/plugins/docprops/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'et', {
diff --git a/plugins/docprops/lang/eu.js b/plugins/docprops/lang/eu.js
index 13ffef66..81141843 100644
--- a/plugins/docprops/lang/eu.js
+++ b/plugins/docprops/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'eu', {
diff --git a/plugins/docprops/lang/fa.js b/plugins/docprops/lang/fa.js
index 968d76d3..5a6f0c59 100644
--- a/plugins/docprops/lang/fa.js
+++ b/plugins/docprops/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'fa', {
diff --git a/plugins/docprops/lang/fi.js b/plugins/docprops/lang/fi.js
index 5160388f..40a7922a 100644
--- a/plugins/docprops/lang/fi.js
+++ b/plugins/docprops/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'fi', {
diff --git a/plugins/docprops/lang/fo.js b/plugins/docprops/lang/fo.js
index 3a97659a..9c17e498 100644
--- a/plugins/docprops/lang/fo.js
+++ b/plugins/docprops/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'fo', {
diff --git a/plugins/docprops/lang/fr-ca.js b/plugins/docprops/lang/fr-ca.js
index 36e5e874..45798603 100644
--- a/plugins/docprops/lang/fr-ca.js
+++ b/plugins/docprops/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'fr-ca', {
diff --git a/plugins/docprops/lang/fr.js b/plugins/docprops/lang/fr.js
index 3cb94d80..0315179d 100644
--- a/plugins/docprops/lang/fr.js
+++ b/plugins/docprops/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'fr', {
diff --git a/plugins/docprops/lang/gl.js b/plugins/docprops/lang/gl.js
index 499a1d40..4e18c2d2 100644
--- a/plugins/docprops/lang/gl.js
+++ b/plugins/docprops/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'gl', {
diff --git a/plugins/docprops/lang/gu.js b/plugins/docprops/lang/gu.js
index 3642aa98..a0d8682e 100644
--- a/plugins/docprops/lang/gu.js
+++ b/plugins/docprops/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'gu', {
diff --git a/plugins/docprops/lang/he.js b/plugins/docprops/lang/he.js
index 27fe7f72..a83687d5 100644
--- a/plugins/docprops/lang/he.js
+++ b/plugins/docprops/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'he', {
diff --git a/plugins/docprops/lang/hi.js b/plugins/docprops/lang/hi.js
index 67d290fa..258a4c72 100644
--- a/plugins/docprops/lang/hi.js
+++ b/plugins/docprops/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'hi', {
diff --git a/plugins/docprops/lang/hr.js b/plugins/docprops/lang/hr.js
index 4bd5dcce..b40468a2 100644
--- a/plugins/docprops/lang/hr.js
+++ b/plugins/docprops/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'hr', {
diff --git a/plugins/docprops/lang/hu.js b/plugins/docprops/lang/hu.js
index a83fc561..2cad53e6 100644
--- a/plugins/docprops/lang/hu.js
+++ b/plugins/docprops/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'hu', {
diff --git a/plugins/docprops/lang/id.js b/plugins/docprops/lang/id.js
index 3c9fecaa..d042bbc2 100644
--- a/plugins/docprops/lang/id.js
+++ b/plugins/docprops/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'id', {
diff --git a/plugins/docprops/lang/is.js b/plugins/docprops/lang/is.js
index 00c61104..f4430273 100644
--- a/plugins/docprops/lang/is.js
+++ b/plugins/docprops/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'is', {
diff --git a/plugins/docprops/lang/it.js b/plugins/docprops/lang/it.js
index 313af1c5..e2613c70 100644
--- a/plugins/docprops/lang/it.js
+++ b/plugins/docprops/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'it', {
diff --git a/plugins/docprops/lang/ja.js b/plugins/docprops/lang/ja.js
index 21b90c6d..ff33129d 100644
--- a/plugins/docprops/lang/ja.js
+++ b/plugins/docprops/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'ja', {
diff --git a/plugins/docprops/lang/ka.js b/plugins/docprops/lang/ka.js
index a8bea053..5d6e7775 100644
--- a/plugins/docprops/lang/ka.js
+++ b/plugins/docprops/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'ka', {
diff --git a/plugins/docprops/lang/km.js b/plugins/docprops/lang/km.js
index 00f190c1..554cdcfa 100644
--- a/plugins/docprops/lang/km.js
+++ b/plugins/docprops/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'km', {
diff --git a/plugins/docprops/lang/ko.js b/plugins/docprops/lang/ko.js
index e134167f..80291bc0 100644
--- a/plugins/docprops/lang/ko.js
+++ b/plugins/docprops/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'ko', {
diff --git a/plugins/docprops/lang/ku.js b/plugins/docprops/lang/ku.js
index b283142a..eeac29dc 100644
--- a/plugins/docprops/lang/ku.js
+++ b/plugins/docprops/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'ku', {
diff --git a/plugins/docprops/lang/lt.js b/plugins/docprops/lang/lt.js
index e2b8473f..44ff1810 100644
--- a/plugins/docprops/lang/lt.js
+++ b/plugins/docprops/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'lt', {
diff --git a/plugins/docprops/lang/lv.js b/plugins/docprops/lang/lv.js
index bec95d26..d8c7f3ab 100644
--- a/plugins/docprops/lang/lv.js
+++ b/plugins/docprops/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'lv', {
diff --git a/plugins/docprops/lang/mk.js b/plugins/docprops/lang/mk.js
index 18e8a3c4..10a690a4 100644
--- a/plugins/docprops/lang/mk.js
+++ b/plugins/docprops/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'mk', {
diff --git a/plugins/docprops/lang/mn.js b/plugins/docprops/lang/mn.js
index 360aeb30..9028ecb8 100644
--- a/plugins/docprops/lang/mn.js
+++ b/plugins/docprops/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'mn', {
diff --git a/plugins/docprops/lang/ms.js b/plugins/docprops/lang/ms.js
index 65599a23..184bc1fc 100644
--- a/plugins/docprops/lang/ms.js
+++ b/plugins/docprops/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'ms', {
diff --git a/plugins/docprops/lang/nb.js b/plugins/docprops/lang/nb.js
index b15a33a7..450e5d54 100644
--- a/plugins/docprops/lang/nb.js
+++ b/plugins/docprops/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'nb', {
diff --git a/plugins/docprops/lang/nl.js b/plugins/docprops/lang/nl.js
index e624e1ac..045d22c8 100644
--- a/plugins/docprops/lang/nl.js
+++ b/plugins/docprops/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'nl', {
diff --git a/plugins/docprops/lang/no.js b/plugins/docprops/lang/no.js
index ae258d7a..3f242c77 100644
--- a/plugins/docprops/lang/no.js
+++ b/plugins/docprops/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'no', {
diff --git a/plugins/docprops/lang/oc.js b/plugins/docprops/lang/oc.js
index b42cd4fc..254dbbbb 100644
--- a/plugins/docprops/lang/oc.js
+++ b/plugins/docprops/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'oc', {
diff --git a/plugins/docprops/lang/pl.js b/plugins/docprops/lang/pl.js
index 7e4bd268..53164550 100644
--- a/plugins/docprops/lang/pl.js
+++ b/plugins/docprops/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'pl', {
diff --git a/plugins/docprops/lang/pt-br.js b/plugins/docprops/lang/pt-br.js
index 890b0cf1..afc44965 100644
--- a/plugins/docprops/lang/pt-br.js
+++ b/plugins/docprops/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'pt-br', {
diff --git a/plugins/docprops/lang/pt.js b/plugins/docprops/lang/pt.js
index 3ce5c883..bc4ee660 100644
--- a/plugins/docprops/lang/pt.js
+++ b/plugins/docprops/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'pt', {
diff --git a/plugins/docprops/lang/ro.js b/plugins/docprops/lang/ro.js
index 384b86a3..d8f13ae8 100644
--- a/plugins/docprops/lang/ro.js
+++ b/plugins/docprops/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'ro', {
diff --git a/plugins/docprops/lang/ru.js b/plugins/docprops/lang/ru.js
index 876d665d..4e537380 100644
--- a/plugins/docprops/lang/ru.js
+++ b/plugins/docprops/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'ru', {
diff --git a/plugins/docprops/lang/si.js b/plugins/docprops/lang/si.js
index 893382b1..2d9ce471 100644
--- a/plugins/docprops/lang/si.js
+++ b/plugins/docprops/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'si', {
diff --git a/plugins/docprops/lang/sk.js b/plugins/docprops/lang/sk.js
index 48d77f77..fbecd9ce 100644
--- a/plugins/docprops/lang/sk.js
+++ b/plugins/docprops/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'sk', {
diff --git a/plugins/docprops/lang/sl.js b/plugins/docprops/lang/sl.js
index 245b9ae3..c8870fcc 100644
--- a/plugins/docprops/lang/sl.js
+++ b/plugins/docprops/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'sl', {
diff --git a/plugins/docprops/lang/sq.js b/plugins/docprops/lang/sq.js
index 43b98953..a9933458 100644
--- a/plugins/docprops/lang/sq.js
+++ b/plugins/docprops/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'sq', {
diff --git a/plugins/docprops/lang/sr-latn.js b/plugins/docprops/lang/sr-latn.js
index d21fd42b..71e9c702 100644
--- a/plugins/docprops/lang/sr-latn.js
+++ b/plugins/docprops/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'sr-latn', {
diff --git a/plugins/docprops/lang/sr.js b/plugins/docprops/lang/sr.js
index 7186afbf..03a70849 100644
--- a/plugins/docprops/lang/sr.js
+++ b/plugins/docprops/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'sr', {
diff --git a/plugins/docprops/lang/sv.js b/plugins/docprops/lang/sv.js
index 1b7f6089..bc122be4 100644
--- a/plugins/docprops/lang/sv.js
+++ b/plugins/docprops/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'sv', {
diff --git a/plugins/docprops/lang/th.js b/plugins/docprops/lang/th.js
index e2aea5b3..25808da1 100644
--- a/plugins/docprops/lang/th.js
+++ b/plugins/docprops/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'th', {
diff --git a/plugins/docprops/lang/tr.js b/plugins/docprops/lang/tr.js
index 24487b6e..b2f77a5e 100644
--- a/plugins/docprops/lang/tr.js
+++ b/plugins/docprops/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'tr', {
diff --git a/plugins/docprops/lang/tt.js b/plugins/docprops/lang/tt.js
index fa4c2937..028c5c1e 100644
--- a/plugins/docprops/lang/tt.js
+++ b/plugins/docprops/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'tt', {
diff --git a/plugins/docprops/lang/ug.js b/plugins/docprops/lang/ug.js
index 23c08249..4f6e6f34 100644
--- a/plugins/docprops/lang/ug.js
+++ b/plugins/docprops/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'ug', {
diff --git a/plugins/docprops/lang/uk.js b/plugins/docprops/lang/uk.js
index 6d629084..7503dc13 100644
--- a/plugins/docprops/lang/uk.js
+++ b/plugins/docprops/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'uk', {
diff --git a/plugins/docprops/lang/vi.js b/plugins/docprops/lang/vi.js
index 2ec039f4..94debf56 100644
--- a/plugins/docprops/lang/vi.js
+++ b/plugins/docprops/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'vi', {
diff --git a/plugins/docprops/lang/zh-cn.js b/plugins/docprops/lang/zh-cn.js
index b373f41f..1e6ab6ec 100644
--- a/plugins/docprops/lang/zh-cn.js
+++ b/plugins/docprops/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'zh-cn', {
diff --git a/plugins/docprops/lang/zh.js b/plugins/docprops/lang/zh.js
index 1650bd25..2c3d1aa9 100644
--- a/plugins/docprops/lang/zh.js
+++ b/plugins/docprops/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'docprops', 'zh', {
diff --git a/plugins/docprops/plugin.js b/plugins/docprops/plugin.js
index 3674094f..be5ea273 100644
--- a/plugins/docprops/plugin.js
+++ b/plugins/docprops/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/docprops/samples/docprops.html b/plugins/docprops/samples/docprops.html
index f0985a44..5c0f49fd 100644
--- a/plugins/docprops/samples/docprops.html
+++ b/plugins/docprops/samples/docprops.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -74,7 +74,7 @@ CKEDITOR.replace( '<em>textarea_id</em>', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/easyimage/dialogs/easyimagealt.js b/plugins/easyimage/dialogs/easyimagealt.js
index d94ad1ad..00ed996b 100644
--- a/plugins/easyimage/dialogs/easyimagealt.js
+++ b/plugins/easyimage/dialogs/easyimagealt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/ar.js b/plugins/easyimage/lang/ar.js
index 4b2ab63d..84671296 100644
--- a/plugins/easyimage/lang/ar.js
+++ b/plugins/easyimage/lang/ar.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/az.js b/plugins/easyimage/lang/az.js
index 22fa6f97..5096064a 100644
--- a/plugins/easyimage/lang/az.js
+++ b/plugins/easyimage/lang/az.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/bg.js b/plugins/easyimage/lang/bg.js
index eb6d86d7..1bec85c8 100644
--- a/plugins/easyimage/lang/bg.js
+++ b/plugins/easyimage/lang/bg.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/cs.js b/plugins/easyimage/lang/cs.js
index 4b235d56..cd95ccbf 100644
--- a/plugins/easyimage/lang/cs.js
+++ b/plugins/easyimage/lang/cs.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/da.js b/plugins/easyimage/lang/da.js
index fb643db0..e277492a 100644
--- a/plugins/easyimage/lang/da.js
+++ b/plugins/easyimage/lang/da.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/de-ch.js b/plugins/easyimage/lang/de-ch.js
index 4ba13d49..157688e9 100644
--- a/plugins/easyimage/lang/de-ch.js
+++ b/plugins/easyimage/lang/de-ch.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/de.js b/plugins/easyimage/lang/de.js
index 55a98c45..d94695d4 100644
--- a/plugins/easyimage/lang/de.js
+++ b/plugins/easyimage/lang/de.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/el.js b/plugins/easyimage/lang/el.js
index 92b0a497..c99d605c 100644
--- a/plugins/easyimage/lang/el.js
+++ b/plugins/easyimage/lang/el.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/en-au.js b/plugins/easyimage/lang/en-au.js
index 7e1958b7..5cbde7d2 100644
--- a/plugins/easyimage/lang/en-au.js
+++ b/plugins/easyimage/lang/en-au.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/en.js b/plugins/easyimage/lang/en.js
index 316204ea..e731622d 100644
--- a/plugins/easyimage/lang/en.js
+++ b/plugins/easyimage/lang/en.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/et.js b/plugins/easyimage/lang/et.js
index c31aa4fb..076d0d85 100644
--- a/plugins/easyimage/lang/et.js
+++ b/plugins/easyimage/lang/et.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/fa.js b/plugins/easyimage/lang/fa.js
index 373e6e1c..285e7303 100644
--- a/plugins/easyimage/lang/fa.js
+++ b/plugins/easyimage/lang/fa.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/fr.js b/plugins/easyimage/lang/fr.js
index b7dcb540..564ecf97 100644
--- a/plugins/easyimage/lang/fr.js
+++ b/plugins/easyimage/lang/fr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/gl.js b/plugins/easyimage/lang/gl.js
index b90be43a..6ac61807 100644
--- a/plugins/easyimage/lang/gl.js
+++ b/plugins/easyimage/lang/gl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/hr.js b/plugins/easyimage/lang/hr.js
index 1f3bd857..5aca0941 100644
--- a/plugins/easyimage/lang/hr.js
+++ b/plugins/easyimage/lang/hr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/hu.js b/plugins/easyimage/lang/hu.js
index e411b00a..3c03a033 100644
--- a/plugins/easyimage/lang/hu.js
+++ b/plugins/easyimage/lang/hu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/it.js b/plugins/easyimage/lang/it.js
index 0545cfc5..aa6aa044 100644
--- a/plugins/easyimage/lang/it.js
+++ b/plugins/easyimage/lang/it.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/ku.js b/plugins/easyimage/lang/ku.js
index 2f35e589..33eb9566 100644
--- a/plugins/easyimage/lang/ku.js
+++ b/plugins/easyimage/lang/ku.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/lv.js b/plugins/easyimage/lang/lv.js
index 7fe7a3ac..dc815a6a 100644
--- a/plugins/easyimage/lang/lv.js
+++ b/plugins/easyimage/lang/lv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/nb.js b/plugins/easyimage/lang/nb.js
index 05b3bf90..a565cfc1 100644
--- a/plugins/easyimage/lang/nb.js
+++ b/plugins/easyimage/lang/nb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/nl.js b/plugins/easyimage/lang/nl.js
index 89b7b384..5eb7d8bc 100644
--- a/plugins/easyimage/lang/nl.js
+++ b/plugins/easyimage/lang/nl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/no.js b/plugins/easyimage/lang/no.js
index 510cbaa4..50e16058 100644
--- a/plugins/easyimage/lang/no.js
+++ b/plugins/easyimage/lang/no.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/pl.js b/plugins/easyimage/lang/pl.js
index 51bc3297..1ac66de0 100644
--- a/plugins/easyimage/lang/pl.js
+++ b/plugins/easyimage/lang/pl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/pt-br.js b/plugins/easyimage/lang/pt-br.js
index d8bd65ed..65c13fb2 100644
--- a/plugins/easyimage/lang/pt-br.js
+++ b/plugins/easyimage/lang/pt-br.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/pt.js b/plugins/easyimage/lang/pt.js
index ad0ba860..b0e59790 100644
--- a/plugins/easyimage/lang/pt.js
+++ b/plugins/easyimage/lang/pt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/ro.js b/plugins/easyimage/lang/ro.js
index 1523a4d3..2e686bde 100644
--- a/plugins/easyimage/lang/ro.js
+++ b/plugins/easyimage/lang/ro.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/ru.js b/plugins/easyimage/lang/ru.js
index 8888f096..0041b75e 100644
--- a/plugins/easyimage/lang/ru.js
+++ b/plugins/easyimage/lang/ru.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/sk.js b/plugins/easyimage/lang/sk.js
index 6adb04ba..f7622620 100644
--- a/plugins/easyimage/lang/sk.js
+++ b/plugins/easyimage/lang/sk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/sq.js b/plugins/easyimage/lang/sq.js
index 29ff3ef7..01305ca2 100644
--- a/plugins/easyimage/lang/sq.js
+++ b/plugins/easyimage/lang/sq.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/sr-latn.js b/plugins/easyimage/lang/sr-latn.js
index 9f72f17e..2a4cf4e6 100644
--- a/plugins/easyimage/lang/sr-latn.js
+++ b/plugins/easyimage/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/sr.js b/plugins/easyimage/lang/sr.js
index a7bccfe6..5affa8cf 100644
--- a/plugins/easyimage/lang/sr.js
+++ b/plugins/easyimage/lang/sr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/sv.js b/plugins/easyimage/lang/sv.js
index 1139a2b6..38b75b5a 100644
--- a/plugins/easyimage/lang/sv.js
+++ b/plugins/easyimage/lang/sv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/tr.js b/plugins/easyimage/lang/tr.js
index e67b77d7..75aed177 100644
--- a/plugins/easyimage/lang/tr.js
+++ b/plugins/easyimage/lang/tr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/tt.js b/plugins/easyimage/lang/tt.js
index 0e2d2c64..824b4412 100644
--- a/plugins/easyimage/lang/tt.js
+++ b/plugins/easyimage/lang/tt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/uk.js b/plugins/easyimage/lang/uk.js
index c3d02db0..e4d6cf11 100644
--- a/plugins/easyimage/lang/uk.js
+++ b/plugins/easyimage/lang/uk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/zh-cn.js b/plugins/easyimage/lang/zh-cn.js
index 16e63902..c0e5b239 100644
--- a/plugins/easyimage/lang/zh-cn.js
+++ b/plugins/easyimage/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/lang/zh.js b/plugins/easyimage/lang/zh.js
index 7b8a6a64..593239e2 100644
--- a/plugins/easyimage/lang/zh.js
+++ b/plugins/easyimage/lang/zh.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/easyimage/plugin.js b/plugins/easyimage/plugin.js
index 6485822a..48ccc77c 100644
--- a/plugins/easyimage/plugin.js
+++ b/plugins/easyimage/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -349,6 +349,10 @@
 							srcset: srcset,
 							sizes: '100vw'
 						} );
+
+						// Ensure that replacing the placeholder image with the final one
+						// is considered a content change (#5414).
+						this.editor.fire( 'change' );
 					} );
 
 					this.on( 'uploadFailed', function() {
diff --git a/plugins/easyimage/samples/easyimage.html b/plugins/easyimage/samples/easyimage.html
index 16046343..61396cc1 100644
--- a/plugins/easyimage/samples/easyimage.html
+++ b/plugins/easyimage/samples/easyimage.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -76,7 +76,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor &ndash; The text editor for the Internet &ndash; <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p class="grid-width-100" id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </footer>
diff --git a/plugins/easyimage/styles/easyimage.css b/plugins/easyimage/styles/easyimage.css
index 080ceaa6..133814d8 100644
--- a/plugins/easyimage/styles/easyimage.css
+++ b/plugins/easyimage/styles/easyimage.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/editorplaceholder/plugin.js b/plugins/editorplaceholder/plugin.js
index b0a7ec44..3aac3047 100644
--- a/plugins/editorplaceholder/plugin.js
+++ b/plugins/editorplaceholder/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/elementspath/lang/af.js b/plugins/elementspath/lang/af.js
index 0b84e940..4dc8fe94 100644
--- a/plugins/elementspath/lang/af.js
+++ b/plugins/elementspath/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'af', {
diff --git a/plugins/elementspath/lang/ar.js b/plugins/elementspath/lang/ar.js
index 69fb5ac5..c9a2b300 100644
--- a/plugins/elementspath/lang/ar.js
+++ b/plugins/elementspath/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'ar', {
diff --git a/plugins/elementspath/lang/az.js b/plugins/elementspath/lang/az.js
index 3d19c838..50b7be1f 100644
--- a/plugins/elementspath/lang/az.js
+++ b/plugins/elementspath/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'az', {
diff --git a/plugins/elementspath/lang/bg.js b/plugins/elementspath/lang/bg.js
index cda1fec0..60e95953 100644
--- a/plugins/elementspath/lang/bg.js
+++ b/plugins/elementspath/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'bg', {
diff --git a/plugins/elementspath/lang/bn.js b/plugins/elementspath/lang/bn.js
index 449be825..0468717f 100644
--- a/plugins/elementspath/lang/bn.js
+++ b/plugins/elementspath/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'bn', {
diff --git a/plugins/elementspath/lang/bs.js b/plugins/elementspath/lang/bs.js
index deb862ee..8822d9a3 100644
--- a/plugins/elementspath/lang/bs.js
+++ b/plugins/elementspath/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'bs', {
diff --git a/plugins/elementspath/lang/ca.js b/plugins/elementspath/lang/ca.js
index 29fa3ac1..fc33608a 100644
--- a/plugins/elementspath/lang/ca.js
+++ b/plugins/elementspath/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'ca', {
diff --git a/plugins/elementspath/lang/cs.js b/plugins/elementspath/lang/cs.js
index 6f7287f8..fe092907 100644
--- a/plugins/elementspath/lang/cs.js
+++ b/plugins/elementspath/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'cs', {
diff --git a/plugins/elementspath/lang/cy.js b/plugins/elementspath/lang/cy.js
index b6d8a699..430de5e3 100644
--- a/plugins/elementspath/lang/cy.js
+++ b/plugins/elementspath/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'cy', {
diff --git a/plugins/elementspath/lang/da.js b/plugins/elementspath/lang/da.js
index 32bd42aa..aa454925 100644
--- a/plugins/elementspath/lang/da.js
+++ b/plugins/elementspath/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'da', {
diff --git a/plugins/elementspath/lang/de-ch.js b/plugins/elementspath/lang/de-ch.js
index 04c5fa14..5089f171 100644
--- a/plugins/elementspath/lang/de-ch.js
+++ b/plugins/elementspath/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'de-ch', {
diff --git a/plugins/elementspath/lang/de.js b/plugins/elementspath/lang/de.js
index 6c3ae84c..57cefb39 100644
--- a/plugins/elementspath/lang/de.js
+++ b/plugins/elementspath/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'de', {
diff --git a/plugins/elementspath/lang/el.js b/plugins/elementspath/lang/el.js
index 5333b443..b57c598d 100644
--- a/plugins/elementspath/lang/el.js
+++ b/plugins/elementspath/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'el', {
diff --git a/plugins/elementspath/lang/en-au.js b/plugins/elementspath/lang/en-au.js
index 120ea678..5d5864fa 100644
--- a/plugins/elementspath/lang/en-au.js
+++ b/plugins/elementspath/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'en-au', {
diff --git a/plugins/elementspath/lang/en-ca.js b/plugins/elementspath/lang/en-ca.js
index 713a709e..2dc69656 100644
--- a/plugins/elementspath/lang/en-ca.js
+++ b/plugins/elementspath/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'en-ca', {
diff --git a/plugins/elementspath/lang/en-gb.js b/plugins/elementspath/lang/en-gb.js
index ba83c214..21c634c1 100644
--- a/plugins/elementspath/lang/en-gb.js
+++ b/plugins/elementspath/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'en-gb', {
diff --git a/plugins/elementspath/lang/en.js b/plugins/elementspath/lang/en.js
index ebad86ff..453deed7 100644
--- a/plugins/elementspath/lang/en.js
+++ b/plugins/elementspath/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'en', {
diff --git a/plugins/elementspath/lang/eo.js b/plugins/elementspath/lang/eo.js
index 856eaad7..2d2d870e 100644
--- a/plugins/elementspath/lang/eo.js
+++ b/plugins/elementspath/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'eo', {
diff --git a/plugins/elementspath/lang/es-mx.js b/plugins/elementspath/lang/es-mx.js
index 9d5d801e..bfae8726 100644
--- a/plugins/elementspath/lang/es-mx.js
+++ b/plugins/elementspath/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'es-mx', {
diff --git a/plugins/elementspath/lang/es.js b/plugins/elementspath/lang/es.js
index 7fbdd752..57f5256e 100644
--- a/plugins/elementspath/lang/es.js
+++ b/plugins/elementspath/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'es', {
diff --git a/plugins/elementspath/lang/et.js b/plugins/elementspath/lang/et.js
index ae5b7e48..d7e50e2b 100644
--- a/plugins/elementspath/lang/et.js
+++ b/plugins/elementspath/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'et', {
diff --git a/plugins/elementspath/lang/eu.js b/plugins/elementspath/lang/eu.js
index c0794a98..58623872 100644
--- a/plugins/elementspath/lang/eu.js
+++ b/plugins/elementspath/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'eu', {
diff --git a/plugins/elementspath/lang/fa.js b/plugins/elementspath/lang/fa.js
index e46202cd..a12e7ae0 100644
--- a/plugins/elementspath/lang/fa.js
+++ b/plugins/elementspath/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'fa', {
diff --git a/plugins/elementspath/lang/fi.js b/plugins/elementspath/lang/fi.js
index 17b62d5e..36212895 100644
--- a/plugins/elementspath/lang/fi.js
+++ b/plugins/elementspath/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'fi', {
diff --git a/plugins/elementspath/lang/fo.js b/plugins/elementspath/lang/fo.js
index ad927b92..86075f2c 100644
--- a/plugins/elementspath/lang/fo.js
+++ b/plugins/elementspath/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'fo', {
diff --git a/plugins/elementspath/lang/fr-ca.js b/plugins/elementspath/lang/fr-ca.js
index 76e7d72b..7de4a01a 100644
--- a/plugins/elementspath/lang/fr-ca.js
+++ b/plugins/elementspath/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'fr-ca', {
diff --git a/plugins/elementspath/lang/fr.js b/plugins/elementspath/lang/fr.js
index efc0ae55..fd7404fa 100644
--- a/plugins/elementspath/lang/fr.js
+++ b/plugins/elementspath/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'fr', {
diff --git a/plugins/elementspath/lang/gl.js b/plugins/elementspath/lang/gl.js
index 92c82eb5..6f531af2 100644
--- a/plugins/elementspath/lang/gl.js
+++ b/plugins/elementspath/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'gl', {
diff --git a/plugins/elementspath/lang/gu.js b/plugins/elementspath/lang/gu.js
index 163a7960..2fb7d706 100644
--- a/plugins/elementspath/lang/gu.js
+++ b/plugins/elementspath/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'gu', {
diff --git a/plugins/elementspath/lang/he.js b/plugins/elementspath/lang/he.js
index 111c255b..5bfab551 100644
--- a/plugins/elementspath/lang/he.js
+++ b/plugins/elementspath/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'he', {
diff --git a/plugins/elementspath/lang/hi.js b/plugins/elementspath/lang/hi.js
index a0b75660..b80ef6af 100644
--- a/plugins/elementspath/lang/hi.js
+++ b/plugins/elementspath/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'hi', {
diff --git a/plugins/elementspath/lang/hr.js b/plugins/elementspath/lang/hr.js
index 15fb7793..a4a41854 100644
--- a/plugins/elementspath/lang/hr.js
+++ b/plugins/elementspath/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'hr', {
diff --git a/plugins/elementspath/lang/hu.js b/plugins/elementspath/lang/hu.js
index bcd6252f..7a353f5d 100644
--- a/plugins/elementspath/lang/hu.js
+++ b/plugins/elementspath/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'hu', {
diff --git a/plugins/elementspath/lang/is.js b/plugins/elementspath/lang/is.js
index 0dbfe29b..c6fac0c8 100644
--- a/plugins/elementspath/lang/is.js
+++ b/plugins/elementspath/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'is', {
diff --git a/plugins/elementspath/lang/it.js b/plugins/elementspath/lang/it.js
index e0c22340..67ba325f 100644
--- a/plugins/elementspath/lang/it.js
+++ b/plugins/elementspath/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'it', {
diff --git a/plugins/elementspath/lang/ja.js b/plugins/elementspath/lang/ja.js
index d4d150f5..bfe7f092 100644
--- a/plugins/elementspath/lang/ja.js
+++ b/plugins/elementspath/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'ja', {
diff --git a/plugins/elementspath/lang/ka.js b/plugins/elementspath/lang/ka.js
index 1e606c2c..8b3177ce 100644
--- a/plugins/elementspath/lang/ka.js
+++ b/plugins/elementspath/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'ka', {
diff --git a/plugins/elementspath/lang/km.js b/plugins/elementspath/lang/km.js
index 7f4b6794..c5b59756 100644
--- a/plugins/elementspath/lang/km.js
+++ b/plugins/elementspath/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'km', {
diff --git a/plugins/elementspath/lang/ko.js b/plugins/elementspath/lang/ko.js
index 1bae6853..1d913f14 100644
--- a/plugins/elementspath/lang/ko.js
+++ b/plugins/elementspath/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'ko', {
diff --git a/plugins/elementspath/lang/ku.js b/plugins/elementspath/lang/ku.js
index 6e247cb1..297f3977 100644
--- a/plugins/elementspath/lang/ku.js
+++ b/plugins/elementspath/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'ku', {
diff --git a/plugins/elementspath/lang/lt.js b/plugins/elementspath/lang/lt.js
index bd0417d6..774c0d92 100644
--- a/plugins/elementspath/lang/lt.js
+++ b/plugins/elementspath/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'lt', {
diff --git a/plugins/elementspath/lang/lv.js b/plugins/elementspath/lang/lv.js
index 959aef4c..af2fd354 100644
--- a/plugins/elementspath/lang/lv.js
+++ b/plugins/elementspath/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'lv', {
diff --git a/plugins/elementspath/lang/mk.js b/plugins/elementspath/lang/mk.js
index 6a183827..47d2868a 100644
--- a/plugins/elementspath/lang/mk.js
+++ b/plugins/elementspath/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'mk', {
diff --git a/plugins/elementspath/lang/mn.js b/plugins/elementspath/lang/mn.js
index 19cb48d6..9e094ad7 100644
--- a/plugins/elementspath/lang/mn.js
+++ b/plugins/elementspath/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'mn', {
diff --git a/plugins/elementspath/lang/ms.js b/plugins/elementspath/lang/ms.js
index b6526005..3d2ab941 100644
--- a/plugins/elementspath/lang/ms.js
+++ b/plugins/elementspath/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'ms', {
diff --git a/plugins/elementspath/lang/nb.js b/plugins/elementspath/lang/nb.js
index 63a9da40..50cdf324 100644
--- a/plugins/elementspath/lang/nb.js
+++ b/plugins/elementspath/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'nb', {
diff --git a/plugins/elementspath/lang/nl.js b/plugins/elementspath/lang/nl.js
index 6a24eb7a..52ba9d8a 100644
--- a/plugins/elementspath/lang/nl.js
+++ b/plugins/elementspath/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'nl', {
diff --git a/plugins/elementspath/lang/no.js b/plugins/elementspath/lang/no.js
index 92a7994b..f122c0dc 100644
--- a/plugins/elementspath/lang/no.js
+++ b/plugins/elementspath/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'no', {
diff --git a/plugins/elementspath/lang/oc.js b/plugins/elementspath/lang/oc.js
index 031c0677..b974e3c2 100644
--- a/plugins/elementspath/lang/oc.js
+++ b/plugins/elementspath/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'oc', {
diff --git a/plugins/elementspath/lang/pl.js b/plugins/elementspath/lang/pl.js
index 6e6d13b6..df0e1908 100644
--- a/plugins/elementspath/lang/pl.js
+++ b/plugins/elementspath/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'pl', {
diff --git a/plugins/elementspath/lang/pt-br.js b/plugins/elementspath/lang/pt-br.js
index 92c70913..bcbf8792 100644
--- a/plugins/elementspath/lang/pt-br.js
+++ b/plugins/elementspath/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'pt-br', {
diff --git a/plugins/elementspath/lang/pt.js b/plugins/elementspath/lang/pt.js
index b9f4fea6..5714e57a 100644
--- a/plugins/elementspath/lang/pt.js
+++ b/plugins/elementspath/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'pt', {
diff --git a/plugins/elementspath/lang/ro.js b/plugins/elementspath/lang/ro.js
index ef91c764..9c81d460 100644
--- a/plugins/elementspath/lang/ro.js
+++ b/plugins/elementspath/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'ro', {
diff --git a/plugins/elementspath/lang/ru.js b/plugins/elementspath/lang/ru.js
index bccc1976..cf53aa75 100644
--- a/plugins/elementspath/lang/ru.js
+++ b/plugins/elementspath/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'ru', {
diff --git a/plugins/elementspath/lang/si.js b/plugins/elementspath/lang/si.js
index 1510dd73..f4c343ef 100644
--- a/plugins/elementspath/lang/si.js
+++ b/plugins/elementspath/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'si', {
diff --git a/plugins/elementspath/lang/sk.js b/plugins/elementspath/lang/sk.js
index 1bd3e11f..a88e75ab 100644
--- a/plugins/elementspath/lang/sk.js
+++ b/plugins/elementspath/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'sk', {
diff --git a/plugins/elementspath/lang/sl.js b/plugins/elementspath/lang/sl.js
index 778eec79..b103f465 100644
--- a/plugins/elementspath/lang/sl.js
+++ b/plugins/elementspath/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'sl', {
diff --git a/plugins/elementspath/lang/sq.js b/plugins/elementspath/lang/sq.js
index b775f9e6..2566c1d1 100644
--- a/plugins/elementspath/lang/sq.js
+++ b/plugins/elementspath/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'sq', {
diff --git a/plugins/elementspath/lang/sr-latn.js b/plugins/elementspath/lang/sr-latn.js
index 59de3d51..93e0b335 100644
--- a/plugins/elementspath/lang/sr-latn.js
+++ b/plugins/elementspath/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'sr-latn', {
diff --git a/plugins/elementspath/lang/sr.js b/plugins/elementspath/lang/sr.js
index 0c91126b..f125dda9 100644
--- a/plugins/elementspath/lang/sr.js
+++ b/plugins/elementspath/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'sr', {
diff --git a/plugins/elementspath/lang/sv.js b/plugins/elementspath/lang/sv.js
index 477930bb..6512f2d4 100644
--- a/plugins/elementspath/lang/sv.js
+++ b/plugins/elementspath/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'sv', {
diff --git a/plugins/elementspath/lang/th.js b/plugins/elementspath/lang/th.js
index 96945f95..7b6049b4 100644
--- a/plugins/elementspath/lang/th.js
+++ b/plugins/elementspath/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'th', {
diff --git a/plugins/elementspath/lang/tr.js b/plugins/elementspath/lang/tr.js
index 79325720..a13ee23f 100644
--- a/plugins/elementspath/lang/tr.js
+++ b/plugins/elementspath/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'tr', {
diff --git a/plugins/elementspath/lang/tt.js b/plugins/elementspath/lang/tt.js
index d632ab66..24676862 100644
--- a/plugins/elementspath/lang/tt.js
+++ b/plugins/elementspath/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'tt', {
diff --git a/plugins/elementspath/lang/ug.js b/plugins/elementspath/lang/ug.js
index 345a2f0e..d5759688 100644
--- a/plugins/elementspath/lang/ug.js
+++ b/plugins/elementspath/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'ug', {
diff --git a/plugins/elementspath/lang/uk.js b/plugins/elementspath/lang/uk.js
index 608ed3cf..eafeed2d 100644
--- a/plugins/elementspath/lang/uk.js
+++ b/plugins/elementspath/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'uk', {
diff --git a/plugins/elementspath/lang/vi.js b/plugins/elementspath/lang/vi.js
index d18db2fd..ef125ff0 100644
--- a/plugins/elementspath/lang/vi.js
+++ b/plugins/elementspath/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'vi', {
diff --git a/plugins/elementspath/lang/zh-cn.js b/plugins/elementspath/lang/zh-cn.js
index 411def9c..b4215b9c 100644
--- a/plugins/elementspath/lang/zh-cn.js
+++ b/plugins/elementspath/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'zh-cn', {
diff --git a/plugins/elementspath/lang/zh.js b/plugins/elementspath/lang/zh.js
index 28d9fefb..4bc7a040 100644
--- a/plugins/elementspath/lang/zh.js
+++ b/plugins/elementspath/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'elementspath', 'zh', {
diff --git a/plugins/elementspath/plugin.js b/plugins/elementspath/plugin.js
index 90e70096..b93d0918 100644
--- a/plugins/elementspath/plugin.js
+++ b/plugins/elementspath/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/embed/plugin.js b/plugins/embed/plugin.js
index e9fa9e25..babed16f 100644
--- a/plugins/embed/plugin.js
+++ b/plugins/embed/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/embedbase/dialogs/embedbase.js b/plugins/embedbase/dialogs/embedbase.js
index b9d8e73b..4b57d8cb 100644
--- a/plugins/embedbase/dialogs/embedbase.js
+++ b/plugins/embedbase/dialogs/embedbase.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/embedbase/lang/ar.js b/plugins/embedbase/lang/ar.js
index f937bce4..d64606c0 100644
--- a/plugins/embedbase/lang/ar.js
+++ b/plugins/embedbase/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'ar', {
diff --git a/plugins/embedbase/lang/az.js b/plugins/embedbase/lang/az.js
index 882d9b0f..c4ad0b51 100644
--- a/plugins/embedbase/lang/az.js
+++ b/plugins/embedbase/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'az', {
diff --git a/plugins/embedbase/lang/bg.js b/plugins/embedbase/lang/bg.js
index c16702ed..5ba22832 100644
--- a/plugins/embedbase/lang/bg.js
+++ b/plugins/embedbase/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'bg', {
diff --git a/plugins/embedbase/lang/ca.js b/plugins/embedbase/lang/ca.js
index 87f120e5..2baf2014 100644
--- a/plugins/embedbase/lang/ca.js
+++ b/plugins/embedbase/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'ca', {
diff --git a/plugins/embedbase/lang/cs.js b/plugins/embedbase/lang/cs.js
index bd7c8562..fcc33d78 100644
--- a/plugins/embedbase/lang/cs.js
+++ b/plugins/embedbase/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'cs', {
diff --git a/plugins/embedbase/lang/da.js b/plugins/embedbase/lang/da.js
index 2a6ce3d5..5c397580 100644
--- a/plugins/embedbase/lang/da.js
+++ b/plugins/embedbase/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'da', {
diff --git a/plugins/embedbase/lang/de-ch.js b/plugins/embedbase/lang/de-ch.js
index b6eca098..1c54cd35 100644
--- a/plugins/embedbase/lang/de-ch.js
+++ b/plugins/embedbase/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'de-ch', {
diff --git a/plugins/embedbase/lang/de.js b/plugins/embedbase/lang/de.js
index 699136c8..48b8238a 100644
--- a/plugins/embedbase/lang/de.js
+++ b/plugins/embedbase/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'de', {
diff --git a/plugins/embedbase/lang/el.js b/plugins/embedbase/lang/el.js
index e64efd6f..ec7e499d 100644
--- a/plugins/embedbase/lang/el.js
+++ b/plugins/embedbase/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'el', {
diff --git a/plugins/embedbase/lang/en-au.js b/plugins/embedbase/lang/en-au.js
index ba6add35..4d363b22 100644
--- a/plugins/embedbase/lang/en-au.js
+++ b/plugins/embedbase/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'en-au', {
diff --git a/plugins/embedbase/lang/en.js b/plugins/embedbase/lang/en.js
index 01d47ef9..bfc15c4a 100644
--- a/plugins/embedbase/lang/en.js
+++ b/plugins/embedbase/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'en', {
diff --git a/plugins/embedbase/lang/eo.js b/plugins/embedbase/lang/eo.js
index e46da72f..08f4ab3b 100644
--- a/plugins/embedbase/lang/eo.js
+++ b/plugins/embedbase/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'eo', {
diff --git a/plugins/embedbase/lang/es-mx.js b/plugins/embedbase/lang/es-mx.js
index 70173be4..5885c4d9 100644
--- a/plugins/embedbase/lang/es-mx.js
+++ b/plugins/embedbase/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'es-mx', {
diff --git a/plugins/embedbase/lang/es.js b/plugins/embedbase/lang/es.js
index 23e5b3f1..cbb2fc91 100644
--- a/plugins/embedbase/lang/es.js
+++ b/plugins/embedbase/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'es', {
diff --git a/plugins/embedbase/lang/et.js b/plugins/embedbase/lang/et.js
index b503e533..eabf1cd3 100644
--- a/plugins/embedbase/lang/et.js
+++ b/plugins/embedbase/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'et', {
diff --git a/plugins/embedbase/lang/eu.js b/plugins/embedbase/lang/eu.js
index b561c55c..cba23964 100644
--- a/plugins/embedbase/lang/eu.js
+++ b/plugins/embedbase/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'eu', {
diff --git a/plugins/embedbase/lang/fa.js b/plugins/embedbase/lang/fa.js
index 3138aa5d..e9011f25 100644
--- a/plugins/embedbase/lang/fa.js
+++ b/plugins/embedbase/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'fa', {
diff --git a/plugins/embedbase/lang/fr.js b/plugins/embedbase/lang/fr.js
index 75f0e714..78bbfef9 100644
--- a/plugins/embedbase/lang/fr.js
+++ b/plugins/embedbase/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'fr', {
diff --git a/plugins/embedbase/lang/gl.js b/plugins/embedbase/lang/gl.js
index c7910801..0762cd1c 100644
--- a/plugins/embedbase/lang/gl.js
+++ b/plugins/embedbase/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'gl', {
diff --git a/plugins/embedbase/lang/hr.js b/plugins/embedbase/lang/hr.js
index aa8a4544..9911620f 100644
--- a/plugins/embedbase/lang/hr.js
+++ b/plugins/embedbase/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'hr', {
diff --git a/plugins/embedbase/lang/hu.js b/plugins/embedbase/lang/hu.js
index 5f2c5722..3e08d6a5 100644
--- a/plugins/embedbase/lang/hu.js
+++ b/plugins/embedbase/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'hu', {
diff --git a/plugins/embedbase/lang/id.js b/plugins/embedbase/lang/id.js
index 453ba8ad..cecc7654 100644
--- a/plugins/embedbase/lang/id.js
+++ b/plugins/embedbase/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'id', {
diff --git a/plugins/embedbase/lang/it.js b/plugins/embedbase/lang/it.js
index 717c6651..2ffe58af 100644
--- a/plugins/embedbase/lang/it.js
+++ b/plugins/embedbase/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'it', {
diff --git a/plugins/embedbase/lang/ja.js b/plugins/embedbase/lang/ja.js
index 78f65896..57bfab75 100644
--- a/plugins/embedbase/lang/ja.js
+++ b/plugins/embedbase/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'ja', {
diff --git a/plugins/embedbase/lang/ko.js b/plugins/embedbase/lang/ko.js
index 2b006f94..b4414ad6 100644
--- a/plugins/embedbase/lang/ko.js
+++ b/plugins/embedbase/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'ko', {
diff --git a/plugins/embedbase/lang/ku.js b/plugins/embedbase/lang/ku.js
index 65f31789..4f1b93e8 100644
--- a/plugins/embedbase/lang/ku.js
+++ b/plugins/embedbase/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'ku', {
diff --git a/plugins/embedbase/lang/lv.js b/plugins/embedbase/lang/lv.js
index 5a600ce6..00ceb817 100644
--- a/plugins/embedbase/lang/lv.js
+++ b/plugins/embedbase/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'lv', {
diff --git a/plugins/embedbase/lang/nb.js b/plugins/embedbase/lang/nb.js
index 3de5fd96..d9e58572 100644
--- a/plugins/embedbase/lang/nb.js
+++ b/plugins/embedbase/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'nb', {
diff --git a/plugins/embedbase/lang/nl.js b/plugins/embedbase/lang/nl.js
index d13e6678..4092e66f 100644
--- a/plugins/embedbase/lang/nl.js
+++ b/plugins/embedbase/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'nl', {
diff --git a/plugins/embedbase/lang/oc.js b/plugins/embedbase/lang/oc.js
index f5267328..067ceec8 100644
--- a/plugins/embedbase/lang/oc.js
+++ b/plugins/embedbase/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'oc', {
diff --git a/plugins/embedbase/lang/pl.js b/plugins/embedbase/lang/pl.js
index a225f446..5c6453ad 100644
--- a/plugins/embedbase/lang/pl.js
+++ b/plugins/embedbase/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'pl', {
diff --git a/plugins/embedbase/lang/pt-br.js b/plugins/embedbase/lang/pt-br.js
index 910660bd..72a4c10c 100644
--- a/plugins/embedbase/lang/pt-br.js
+++ b/plugins/embedbase/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'pt-br', {
diff --git a/plugins/embedbase/lang/pt.js b/plugins/embedbase/lang/pt.js
index 0a45dc98..fcb472d4 100644
--- a/plugins/embedbase/lang/pt.js
+++ b/plugins/embedbase/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'pt', {
diff --git a/plugins/embedbase/lang/ro.js b/plugins/embedbase/lang/ro.js
index 8b880eaf..448401be 100644
--- a/plugins/embedbase/lang/ro.js
+++ b/plugins/embedbase/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'ro', {
diff --git a/plugins/embedbase/lang/ru.js b/plugins/embedbase/lang/ru.js
index a60c3959..86c54d56 100644
--- a/plugins/embedbase/lang/ru.js
+++ b/plugins/embedbase/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'ru', {
diff --git a/plugins/embedbase/lang/sk.js b/plugins/embedbase/lang/sk.js
index c0e4c745..cadda372 100644
--- a/plugins/embedbase/lang/sk.js
+++ b/plugins/embedbase/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'sk', {
diff --git a/plugins/embedbase/lang/sq.js b/plugins/embedbase/lang/sq.js
index 83c61913..d1861b16 100644
--- a/plugins/embedbase/lang/sq.js
+++ b/plugins/embedbase/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'sq', {
diff --git a/plugins/embedbase/lang/sr-latn.js b/plugins/embedbase/lang/sr-latn.js
index 382eac5a..037abfcf 100644
--- a/plugins/embedbase/lang/sr-latn.js
+++ b/plugins/embedbase/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'sr-latn', {
diff --git a/plugins/embedbase/lang/sr.js b/plugins/embedbase/lang/sr.js
index 9daa838f..3d6518dd 100644
--- a/plugins/embedbase/lang/sr.js
+++ b/plugins/embedbase/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'sr', {
diff --git a/plugins/embedbase/lang/sv.js b/plugins/embedbase/lang/sv.js
index 331b72ec..b0525b0f 100644
--- a/plugins/embedbase/lang/sv.js
+++ b/plugins/embedbase/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'sv', {
diff --git a/plugins/embedbase/lang/tr.js b/plugins/embedbase/lang/tr.js
index 37f606e0..c2991c42 100644
--- a/plugins/embedbase/lang/tr.js
+++ b/plugins/embedbase/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'tr', {
diff --git a/plugins/embedbase/lang/ug.js b/plugins/embedbase/lang/ug.js
index 42eb4c87..2e0ff211 100644
--- a/plugins/embedbase/lang/ug.js
+++ b/plugins/embedbase/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'ug', {
diff --git a/plugins/embedbase/lang/uk.js b/plugins/embedbase/lang/uk.js
index 2651eae3..fa02ebae 100644
--- a/plugins/embedbase/lang/uk.js
+++ b/plugins/embedbase/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'uk', {
diff --git a/plugins/embedbase/lang/zh-cn.js b/plugins/embedbase/lang/zh-cn.js
index 41079f6a..261d9dc2 100644
--- a/plugins/embedbase/lang/zh-cn.js
+++ b/plugins/embedbase/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'zh-cn', {
diff --git a/plugins/embedbase/lang/zh.js b/plugins/embedbase/lang/zh.js
index 21d538ff..ee6a37da 100644
--- a/plugins/embedbase/lang/zh.js
+++ b/plugins/embedbase/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'embedbase', 'zh', {
diff --git a/plugins/embedbase/plugin.js b/plugins/embedbase/plugin.js
index e9d8dd01..7a7db7de 100644
--- a/plugins/embedbase/plugin.js
+++ b/plugins/embedbase/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/embedsemantic/plugin.js b/plugins/embedsemantic/plugin.js
index c240d293..6581b5d5 100644
--- a/plugins/embedsemantic/plugin.js
+++ b/plugins/embedsemantic/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/emoji/lang/cs.js b/plugins/emoji/lang/cs.js
index 840c5a4e..dc063bc4 100644
--- a/plugins/emoji/lang/cs.js
+++ b/plugins/emoji/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'cs', {
diff --git a/plugins/emoji/lang/da.js b/plugins/emoji/lang/da.js
index 2d8243bf..3ae73a1a 100644
--- a/plugins/emoji/lang/da.js
+++ b/plugins/emoji/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'da', {
diff --git a/plugins/emoji/lang/de-ch.js b/plugins/emoji/lang/de-ch.js
index 5d347a67..47e8c223 100644
--- a/plugins/emoji/lang/de-ch.js
+++ b/plugins/emoji/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'de-ch', {
diff --git a/plugins/emoji/lang/de.js b/plugins/emoji/lang/de.js
index 4a8babc3..013596c1 100644
--- a/plugins/emoji/lang/de.js
+++ b/plugins/emoji/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'de', {
diff --git a/plugins/emoji/lang/el.js b/plugins/emoji/lang/el.js
index 3944d9a0..3e05816b 100644
--- a/plugins/emoji/lang/el.js
+++ b/plugins/emoji/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'el', {
diff --git a/plugins/emoji/lang/en-au.js b/plugins/emoji/lang/en-au.js
index 5a3d1e70..8bae20a8 100644
--- a/plugins/emoji/lang/en-au.js
+++ b/plugins/emoji/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'en-au', {
diff --git a/plugins/emoji/lang/en.js b/plugins/emoji/lang/en.js
index 5c87d27c..657501d8 100644
--- a/plugins/emoji/lang/en.js
+++ b/plugins/emoji/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'en', {
diff --git a/plugins/emoji/lang/et.js b/plugins/emoji/lang/et.js
index eb16ea02..ec72599b 100644
--- a/plugins/emoji/lang/et.js
+++ b/plugins/emoji/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'et', {
diff --git a/plugins/emoji/lang/fa.js b/plugins/emoji/lang/fa.js
index 93322b11..5368f1b4 100644
--- a/plugins/emoji/lang/fa.js
+++ b/plugins/emoji/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'fa', {
diff --git a/plugins/emoji/lang/fr.js b/plugins/emoji/lang/fr.js
index 9b29eab9..13c8961f 100644
--- a/plugins/emoji/lang/fr.js
+++ b/plugins/emoji/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'fr', {
diff --git a/plugins/emoji/lang/gl.js b/plugins/emoji/lang/gl.js
index d921e71f..7da674f9 100644
--- a/plugins/emoji/lang/gl.js
+++ b/plugins/emoji/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'gl', {
diff --git a/plugins/emoji/lang/hr.js b/plugins/emoji/lang/hr.js
index 846c6c3b..aa26da25 100644
--- a/plugins/emoji/lang/hr.js
+++ b/plugins/emoji/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'hr', {
diff --git a/plugins/emoji/lang/hu.js b/plugins/emoji/lang/hu.js
index 6c94e2db..7e395fc3 100644
--- a/plugins/emoji/lang/hu.js
+++ b/plugins/emoji/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'hu', {
diff --git a/plugins/emoji/lang/it.js b/plugins/emoji/lang/it.js
index 74730214..0fd28874 100644
--- a/plugins/emoji/lang/it.js
+++ b/plugins/emoji/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'it', {
diff --git a/plugins/emoji/lang/nl.js b/plugins/emoji/lang/nl.js
index 50373303..6407ed73 100644
--- a/plugins/emoji/lang/nl.js
+++ b/plugins/emoji/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'nl', {
diff --git a/plugins/emoji/lang/pl.js b/plugins/emoji/lang/pl.js
index 5b6ba8db..e2f3eb43 100644
--- a/plugins/emoji/lang/pl.js
+++ b/plugins/emoji/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'pl', {
diff --git a/plugins/emoji/lang/pt-br.js b/plugins/emoji/lang/pt-br.js
index 164fb259..cd862e98 100644
--- a/plugins/emoji/lang/pt-br.js
+++ b/plugins/emoji/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'pt-br', {
diff --git a/plugins/emoji/lang/sk.js b/plugins/emoji/lang/sk.js
index a29cd7b7..35b5bcc2 100644
--- a/plugins/emoji/lang/sk.js
+++ b/plugins/emoji/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'sk', {
diff --git a/plugins/emoji/lang/sr-latn.js b/plugins/emoji/lang/sr-latn.js
index aeb6ee1c..e714c1fe 100644
--- a/plugins/emoji/lang/sr-latn.js
+++ b/plugins/emoji/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'sr-latn', {
diff --git a/plugins/emoji/lang/sr.js b/plugins/emoji/lang/sr.js
index dfea422b..a5a1d5c8 100644
--- a/plugins/emoji/lang/sr.js
+++ b/plugins/emoji/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'sr', {
diff --git a/plugins/emoji/lang/sv.js b/plugins/emoji/lang/sv.js
index 7051a3dc..84cefb75 100644
--- a/plugins/emoji/lang/sv.js
+++ b/plugins/emoji/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'sv', {
diff --git a/plugins/emoji/lang/tr.js b/plugins/emoji/lang/tr.js
index 0b10f84f..47f978cc 100644
--- a/plugins/emoji/lang/tr.js
+++ b/plugins/emoji/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'tr', {
diff --git a/plugins/emoji/lang/uk.js b/plugins/emoji/lang/uk.js
index c92db7e2..1cf0ab09 100644
--- a/plugins/emoji/lang/uk.js
+++ b/plugins/emoji/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'uk', {
diff --git a/plugins/emoji/lang/zh-cn.js b/plugins/emoji/lang/zh-cn.js
index b98e94ec..3ee4d385 100644
--- a/plugins/emoji/lang/zh-cn.js
+++ b/plugins/emoji/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'zh-cn', {
diff --git a/plugins/emoji/lang/zh.js b/plugins/emoji/lang/zh.js
index 0ba53b66..407a8b64 100644
--- a/plugins/emoji/lang/zh.js
+++ b/plugins/emoji/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'emoji', 'zh', {
diff --git a/plugins/emoji/plugin.js b/plugins/emoji/plugin.js
index 473e3fb5..2b62e2ce 100644
--- a/plugins/emoji/plugin.js
+++ b/plugins/emoji/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -621,7 +621,8 @@
 						textTestCallback: getTextTestCallback(),
 						dataCallback: dataCallback,
 						itemTemplate: '<li data-id="{id}" class="cke_emoji-suggestion_item"><span>{symbol}</span> {name}</li>',
-						outputTemplate: '{symbol}'
+						outputTemplate: '{symbol}',
+						followingSpace: editor.config.emoji_followingSpace
 					} );
 				}
 
@@ -737,3 +738,13 @@
  * @cfg {String} [emoji_emojiListUrl='plugins/emoji/emoji.json']
  * @member CKEDITOR.config
  */
+
+/**
+ * Indicates if a following space should be added after inserted match into an editor.
+ *
+ * @since 4.20.0
+ * @cfg {Boolean} [emoji_followingSpace=false]
+ * @member CKEDITOR.config
+ */
+
+CKEDITOR.config.emoji_followingSpace = false;
diff --git a/plugins/emoji/samples/emoji.html b/plugins/emoji/samples/emoji.html
index ef1fdbbc..de24f364 100644
--- a/plugins/emoji/samples/emoji.html
+++ b/plugins/emoji/samples/emoji.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -84,7 +84,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 				CKEditor &ndash; The text editor for the Internet &ndash; <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 			</p>
 			<p class="grid-width-100" id="copy">
-				Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+				Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 			</p>
 		</div>
 	</footer>
diff --git a/plugins/enterkey/plugin.js b/plugins/enterkey/plugin.js
index 04c09f2d..a80602df 100644
--- a/plugins/enterkey/plugin.js
+++ b/plugins/enterkey/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/enterkey/samples/enterkey.html b/plugins/enterkey/samples/enterkey.html
index 139ff18c..7202ff0f 100644
--- a/plugins/enterkey/samples/enterkey.html
+++ b/plugins/enterkey/samples/enterkey.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -99,7 +99,7 @@ CKEDITOR.replace( '<em>textarea_id</em>', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/entities/plugin.js b/plugins/entities/plugin.js
index b72c7afd..36982e43 100644
--- a/plugins/entities/plugin.js
+++ b/plugins/entities/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -106,59 +106,69 @@
 			}
 
 			function getEntity( character ) {
-				return config.entities_processNumerical == 'force' || !entitiesTable[ character ] ? '&#' + character.charCodeAt( 0 ) + ';'
+				return config.entities_processNumerical == 'force' || !entitiesTable[ character ] ? '&#' + getCodePoint( character ) + ';'
 				: entitiesTable[ character ];
 			}
 
+			// (#4941)
+			function getCodePoint( character ) {
+				return CKEDITOR.env.ie ? character.charCodeAt( 0 ) : character.codePointAt( 0 );
+			}
+
 			var dataProcessor = editor.dataProcessor,
 				htmlFilter = dataProcessor && dataProcessor.htmlFilter;
 
-			if ( htmlFilter ) {
-				// Mandatory HTML basic entities.
-				var selectedEntities = [];
+			if ( !htmlFilter ) {
+				return;
+			}
 
-				if ( config.basicEntities !== false )
-					selectedEntities.push( htmlbase );
+			// Mandatory HTML basic entities.
+			var selectedEntities = [];
 
-				if ( config.entities ) {
-					if ( selectedEntities.length )
-						selectedEntities.push( entities );
+			if ( config.basicEntities !== false )
+				selectedEntities.push( htmlbase );
 
-					if ( config.entities_latin )
-						selectedEntities.push( latin );
+			if ( config.entities ) {
+				if ( selectedEntities.length )
+					selectedEntities.push( entities );
 
-					if ( config.entities_greek )
-						selectedEntities.push( greek );
+				if ( config.entities_latin )
+					selectedEntities.push( latin );
 
-					if ( config.entities_additional )
-						selectedEntities.push( config.entities_additional );
-				}
+				if ( config.entities_greek )
+					selectedEntities.push( greek );
+
+				if ( config.entities_additional )
+					selectedEntities.push( config.entities_additional );
+			}
 
-				var entitiesTable = buildTable( selectedEntities.join( ',' ) );
+			var entitiesTable = buildTable( selectedEntities.join( ',' ) );
 
-				// Create the Regex used to find entities in the text, leave it matches nothing if entities are empty.
-				var entitiesRegex = entitiesTable.regex ? '[' + entitiesTable.regex + ']' : 'a^';
-				delete entitiesTable.regex;
+			// Create the Regex used to find entities in the text, leave it matches nothing if entities are empty.
+			var entitiesRegex = entitiesTable.regex ? '[' + entitiesTable.regex + ']' : 'a^';
+			delete entitiesTable.regex;
 
-				if ( config.entities && config.entities_processNumerical )
-					entitiesRegex = '[^ -~]|' + entitiesRegex;
+			if ( config.entities && config.entities_processNumerical ) {
+				entitiesRegex = '[^ -~]|' + entitiesRegex;
+			}
 
-				entitiesRegex = new RegExp( entitiesRegex, 'g' );
 
-				// Decode entities that the browsers has transformed
-				// at first place.
-				var baseEntitiesTable = buildTable( [ htmlbase, 'shy' ].join( ',' ), true ),
-					baseEntitiesRegex = new RegExp( baseEntitiesTable.regex, 'g' );
+			// IE does not support unicode option in the Regex constructor (#4941).
+			entitiesRegex = new RegExp( entitiesRegex, CKEDITOR.env.ie ? 'g' : 'gu' );
 
-				htmlFilter.addRules( {
-					text: function( text ) {
-						return text.replace( baseEntitiesRegex, getChar ).replace( entitiesRegex, getEntity );
-					}
-				}, {
-					applyToAll: true,
-					excludeNestedEditable: true
-				} );
-			}
+			// Decode entities that the browsers has transformed
+			// at first place.
+			var baseEntitiesTable = buildTable( [ htmlbase, 'shy' ].join( ',' ), true ),
+				baseEntitiesRegex = new RegExp( baseEntitiesTable.regex, 'g' );
+
+			htmlFilter.addRules( {
+				text: function( text ) {
+					return text.replace( baseEntitiesRegex, getChar ).replace( entitiesRegex, getEntity );
+				}
+			}, {
+				applyToAll: true,
+				excludeNestedEditable: true
+			} );
 		}
 	} );
 } )();
diff --git a/plugins/fakeobjects/lang/af.js b/plugins/fakeobjects/lang/af.js
index 287da2fb..73184a1e 100644
--- a/plugins/fakeobjects/lang/af.js
+++ b/plugins/fakeobjects/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'af', {
diff --git a/plugins/fakeobjects/lang/ar.js b/plugins/fakeobjects/lang/ar.js
index 12d23417..55fd1b6d 100644
--- a/plugins/fakeobjects/lang/ar.js
+++ b/plugins/fakeobjects/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'ar', {
diff --git a/plugins/fakeobjects/lang/az.js b/plugins/fakeobjects/lang/az.js
index 391b18ba..e3b26af2 100644
--- a/plugins/fakeobjects/lang/az.js
+++ b/plugins/fakeobjects/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'az', {
diff --git a/plugins/fakeobjects/lang/bg.js b/plugins/fakeobjects/lang/bg.js
index 626ccf0a..14114348 100644
--- a/plugins/fakeobjects/lang/bg.js
+++ b/plugins/fakeobjects/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'bg', {
diff --git a/plugins/fakeobjects/lang/bn.js b/plugins/fakeobjects/lang/bn.js
index 01a2dd83..2e2fdc05 100644
--- a/plugins/fakeobjects/lang/bn.js
+++ b/plugins/fakeobjects/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'bn', {
diff --git a/plugins/fakeobjects/lang/bs.js b/plugins/fakeobjects/lang/bs.js
index 43f8fb6b..734f1b30 100644
--- a/plugins/fakeobjects/lang/bs.js
+++ b/plugins/fakeobjects/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'bs', {
diff --git a/plugins/fakeobjects/lang/ca.js b/plugins/fakeobjects/lang/ca.js
index 525e0b73..bc206a82 100644
--- a/plugins/fakeobjects/lang/ca.js
+++ b/plugins/fakeobjects/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'ca', {
diff --git a/plugins/fakeobjects/lang/cs.js b/plugins/fakeobjects/lang/cs.js
index f487add5..788181a1 100644
--- a/plugins/fakeobjects/lang/cs.js
+++ b/plugins/fakeobjects/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'cs', {
diff --git a/plugins/fakeobjects/lang/cy.js b/plugins/fakeobjects/lang/cy.js
index ddd61257..0b888cd4 100644
--- a/plugins/fakeobjects/lang/cy.js
+++ b/plugins/fakeobjects/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'cy', {
diff --git a/plugins/fakeobjects/lang/da.js b/plugins/fakeobjects/lang/da.js
index 91c3062b..d510e9bd 100644
--- a/plugins/fakeobjects/lang/da.js
+++ b/plugins/fakeobjects/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'da', {
diff --git a/plugins/fakeobjects/lang/de-ch.js b/plugins/fakeobjects/lang/de-ch.js
index e0756fc3..829846ed 100644
--- a/plugins/fakeobjects/lang/de-ch.js
+++ b/plugins/fakeobjects/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'de-ch', {
diff --git a/plugins/fakeobjects/lang/de.js b/plugins/fakeobjects/lang/de.js
index 7e5d190f..5eb7c2a2 100644
--- a/plugins/fakeobjects/lang/de.js
+++ b/plugins/fakeobjects/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'de', {
diff --git a/plugins/fakeobjects/lang/el.js b/plugins/fakeobjects/lang/el.js
index 1fc66625..dad2f2ef 100644
--- a/plugins/fakeobjects/lang/el.js
+++ b/plugins/fakeobjects/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'el', {
diff --git a/plugins/fakeobjects/lang/en-au.js b/plugins/fakeobjects/lang/en-au.js
index 2b1e8acd..eac47181 100644
--- a/plugins/fakeobjects/lang/en-au.js
+++ b/plugins/fakeobjects/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'en-au', {
diff --git a/plugins/fakeobjects/lang/en-ca.js b/plugins/fakeobjects/lang/en-ca.js
index 67e33713..ce8b24d7 100644
--- a/plugins/fakeobjects/lang/en-ca.js
+++ b/plugins/fakeobjects/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'en-ca', {
diff --git a/plugins/fakeobjects/lang/en-gb.js b/plugins/fakeobjects/lang/en-gb.js
index 691689ea..578d58dd 100644
--- a/plugins/fakeobjects/lang/en-gb.js
+++ b/plugins/fakeobjects/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'en-gb', {
diff --git a/plugins/fakeobjects/lang/en.js b/plugins/fakeobjects/lang/en.js
index d8cb33d2..a4eb0ace 100644
--- a/plugins/fakeobjects/lang/en.js
+++ b/plugins/fakeobjects/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'en', {
diff --git a/plugins/fakeobjects/lang/eo.js b/plugins/fakeobjects/lang/eo.js
index 99f2f523..463e18bc 100644
--- a/plugins/fakeobjects/lang/eo.js
+++ b/plugins/fakeobjects/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'eo', {
diff --git a/plugins/fakeobjects/lang/es-mx.js b/plugins/fakeobjects/lang/es-mx.js
index 972c68b5..fbdc5fba 100644
--- a/plugins/fakeobjects/lang/es-mx.js
+++ b/plugins/fakeobjects/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'es-mx', {
diff --git a/plugins/fakeobjects/lang/es.js b/plugins/fakeobjects/lang/es.js
index 4d5b2b29..74324f69 100644
--- a/plugins/fakeobjects/lang/es.js
+++ b/plugins/fakeobjects/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'es', {
diff --git a/plugins/fakeobjects/lang/et.js b/plugins/fakeobjects/lang/et.js
index 2d13c8e9..3d4d1e47 100644
--- a/plugins/fakeobjects/lang/et.js
+++ b/plugins/fakeobjects/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'et', {
diff --git a/plugins/fakeobjects/lang/eu.js b/plugins/fakeobjects/lang/eu.js
index 410d76de..fbfe72b5 100644
--- a/plugins/fakeobjects/lang/eu.js
+++ b/plugins/fakeobjects/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'eu', {
diff --git a/plugins/fakeobjects/lang/fa.js b/plugins/fakeobjects/lang/fa.js
index 344e0d6b..924e9615 100644
--- a/plugins/fakeobjects/lang/fa.js
+++ b/plugins/fakeobjects/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'fa', {
diff --git a/plugins/fakeobjects/lang/fi.js b/plugins/fakeobjects/lang/fi.js
index 712b5525..dfc8be32 100644
--- a/plugins/fakeobjects/lang/fi.js
+++ b/plugins/fakeobjects/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'fi', {
diff --git a/plugins/fakeobjects/lang/fo.js b/plugins/fakeobjects/lang/fo.js
index 19f9a32b..777603a7 100644
--- a/plugins/fakeobjects/lang/fo.js
+++ b/plugins/fakeobjects/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'fo', {
diff --git a/plugins/fakeobjects/lang/fr-ca.js b/plugins/fakeobjects/lang/fr-ca.js
index 3af5b080..73c5fb4c 100644
--- a/plugins/fakeobjects/lang/fr-ca.js
+++ b/plugins/fakeobjects/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'fr-ca', {
diff --git a/plugins/fakeobjects/lang/fr.js b/plugins/fakeobjects/lang/fr.js
index 16b6e56c..b5f07d81 100644
--- a/plugins/fakeobjects/lang/fr.js
+++ b/plugins/fakeobjects/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'fr', {
diff --git a/plugins/fakeobjects/lang/gl.js b/plugins/fakeobjects/lang/gl.js
index a5ec92f8..d3c91572 100644
--- a/plugins/fakeobjects/lang/gl.js
+++ b/plugins/fakeobjects/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'gl', {
diff --git a/plugins/fakeobjects/lang/gu.js b/plugins/fakeobjects/lang/gu.js
index cf3392dd..763dafaf 100644
--- a/plugins/fakeobjects/lang/gu.js
+++ b/plugins/fakeobjects/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'gu', {
diff --git a/plugins/fakeobjects/lang/he.js b/plugins/fakeobjects/lang/he.js
index 54181d34..8d5235f3 100644
--- a/plugins/fakeobjects/lang/he.js
+++ b/plugins/fakeobjects/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'he', {
diff --git a/plugins/fakeobjects/lang/hi.js b/plugins/fakeobjects/lang/hi.js
index 079eaca3..4c65e3f7 100644
--- a/plugins/fakeobjects/lang/hi.js
+++ b/plugins/fakeobjects/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'hi', {
diff --git a/plugins/fakeobjects/lang/hr.js b/plugins/fakeobjects/lang/hr.js
index 351ec4f1..23cf878e 100644
--- a/plugins/fakeobjects/lang/hr.js
+++ b/plugins/fakeobjects/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'hr', {
diff --git a/plugins/fakeobjects/lang/hu.js b/plugins/fakeobjects/lang/hu.js
index 24cb1136..66558a41 100644
--- a/plugins/fakeobjects/lang/hu.js
+++ b/plugins/fakeobjects/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'hu', {
diff --git a/plugins/fakeobjects/lang/id.js b/plugins/fakeobjects/lang/id.js
index d8da3e3f..37caff8c 100644
--- a/plugins/fakeobjects/lang/id.js
+++ b/plugins/fakeobjects/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'id', {
diff --git a/plugins/fakeobjects/lang/is.js b/plugins/fakeobjects/lang/is.js
index be868515..1ee007b0 100644
--- a/plugins/fakeobjects/lang/is.js
+++ b/plugins/fakeobjects/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'is', {
diff --git a/plugins/fakeobjects/lang/it.js b/plugins/fakeobjects/lang/it.js
index cbf19036..c2bc6814 100644
--- a/plugins/fakeobjects/lang/it.js
+++ b/plugins/fakeobjects/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'it', {
diff --git a/plugins/fakeobjects/lang/ja.js b/plugins/fakeobjects/lang/ja.js
index b606db73..bf9ffa20 100644
--- a/plugins/fakeobjects/lang/ja.js
+++ b/plugins/fakeobjects/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'ja', {
diff --git a/plugins/fakeobjects/lang/ka.js b/plugins/fakeobjects/lang/ka.js
index 63f26c5c..181e71a6 100644
--- a/plugins/fakeobjects/lang/ka.js
+++ b/plugins/fakeobjects/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'ka', {
diff --git a/plugins/fakeobjects/lang/km.js b/plugins/fakeobjects/lang/km.js
index 3ee071dc..993bcb40 100644
--- a/plugins/fakeobjects/lang/km.js
+++ b/plugins/fakeobjects/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'km', {
diff --git a/plugins/fakeobjects/lang/ko.js b/plugins/fakeobjects/lang/ko.js
index 89dc4584..60241405 100644
--- a/plugins/fakeobjects/lang/ko.js
+++ b/plugins/fakeobjects/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'ko', {
diff --git a/plugins/fakeobjects/lang/ku.js b/plugins/fakeobjects/lang/ku.js
index c9747922..36e5cc32 100644
--- a/plugins/fakeobjects/lang/ku.js
+++ b/plugins/fakeobjects/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'ku', {
diff --git a/plugins/fakeobjects/lang/lt.js b/plugins/fakeobjects/lang/lt.js
index 9e2df5f5..1b5978a4 100644
--- a/plugins/fakeobjects/lang/lt.js
+++ b/plugins/fakeobjects/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'lt', {
diff --git a/plugins/fakeobjects/lang/lv.js b/plugins/fakeobjects/lang/lv.js
index 529ede50..95352445 100644
--- a/plugins/fakeobjects/lang/lv.js
+++ b/plugins/fakeobjects/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'lv', {
diff --git a/plugins/fakeobjects/lang/mk.js b/plugins/fakeobjects/lang/mk.js
index 68e2d917..ea4a6024 100644
--- a/plugins/fakeobjects/lang/mk.js
+++ b/plugins/fakeobjects/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'mk', {
diff --git a/plugins/fakeobjects/lang/mn.js b/plugins/fakeobjects/lang/mn.js
index 76f43128..c4ca53bf 100644
--- a/plugins/fakeobjects/lang/mn.js
+++ b/plugins/fakeobjects/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'mn', {
diff --git a/plugins/fakeobjects/lang/ms.js b/plugins/fakeobjects/lang/ms.js
index 80d71e72..8928a93a 100644
--- a/plugins/fakeobjects/lang/ms.js
+++ b/plugins/fakeobjects/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'ms', {
diff --git a/plugins/fakeobjects/lang/nb.js b/plugins/fakeobjects/lang/nb.js
index 113bf28a..5c9aac0f 100644
--- a/plugins/fakeobjects/lang/nb.js
+++ b/plugins/fakeobjects/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'nb', {
diff --git a/plugins/fakeobjects/lang/nl.js b/plugins/fakeobjects/lang/nl.js
index 367ba2ea..3e633b12 100644
--- a/plugins/fakeobjects/lang/nl.js
+++ b/plugins/fakeobjects/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'nl', {
diff --git a/plugins/fakeobjects/lang/no.js b/plugins/fakeobjects/lang/no.js
index 0f4c6f02..8cbdf62d 100644
--- a/plugins/fakeobjects/lang/no.js
+++ b/plugins/fakeobjects/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'no', {
diff --git a/plugins/fakeobjects/lang/oc.js b/plugins/fakeobjects/lang/oc.js
index 419dbe45..f8e06ae9 100644
--- a/plugins/fakeobjects/lang/oc.js
+++ b/plugins/fakeobjects/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'oc', {
diff --git a/plugins/fakeobjects/lang/pl.js b/plugins/fakeobjects/lang/pl.js
index 00b2842f..6efb8648 100644
--- a/plugins/fakeobjects/lang/pl.js
+++ b/plugins/fakeobjects/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'pl', {
diff --git a/plugins/fakeobjects/lang/pt-br.js b/plugins/fakeobjects/lang/pt-br.js
index db036700..c05d56a7 100644
--- a/plugins/fakeobjects/lang/pt-br.js
+++ b/plugins/fakeobjects/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'pt-br', {
diff --git a/plugins/fakeobjects/lang/pt.js b/plugins/fakeobjects/lang/pt.js
index 2ac3dec9..8e7e2e21 100644
--- a/plugins/fakeobjects/lang/pt.js
+++ b/plugins/fakeobjects/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'pt', {
diff --git a/plugins/fakeobjects/lang/ro.js b/plugins/fakeobjects/lang/ro.js
index 6d79c237..ba819c17 100644
--- a/plugins/fakeobjects/lang/ro.js
+++ b/plugins/fakeobjects/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'ro', {
diff --git a/plugins/fakeobjects/lang/ru.js b/plugins/fakeobjects/lang/ru.js
index 96117002..b2826e1a 100644
--- a/plugins/fakeobjects/lang/ru.js
+++ b/plugins/fakeobjects/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'ru', {
diff --git a/plugins/fakeobjects/lang/si.js b/plugins/fakeobjects/lang/si.js
index dac53a65..22430306 100644
--- a/plugins/fakeobjects/lang/si.js
+++ b/plugins/fakeobjects/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'si', {
diff --git a/plugins/fakeobjects/lang/sk.js b/plugins/fakeobjects/lang/sk.js
index 58aee434..4a5f1fff 100644
--- a/plugins/fakeobjects/lang/sk.js
+++ b/plugins/fakeobjects/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'sk', {
diff --git a/plugins/fakeobjects/lang/sl.js b/plugins/fakeobjects/lang/sl.js
index b28d46f5..622e9ba8 100644
--- a/plugins/fakeobjects/lang/sl.js
+++ b/plugins/fakeobjects/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'sl', {
diff --git a/plugins/fakeobjects/lang/sq.js b/plugins/fakeobjects/lang/sq.js
index 50497aa3..97b4a7bb 100644
--- a/plugins/fakeobjects/lang/sq.js
+++ b/plugins/fakeobjects/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'sq', {
diff --git a/plugins/fakeobjects/lang/sr-latn.js b/plugins/fakeobjects/lang/sr-latn.js
index dd03d4d4..959d0822 100644
--- a/plugins/fakeobjects/lang/sr-latn.js
+++ b/plugins/fakeobjects/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'sr-latn', {
diff --git a/plugins/fakeobjects/lang/sr.js b/plugins/fakeobjects/lang/sr.js
index 4d7faa19..aae25e2b 100644
--- a/plugins/fakeobjects/lang/sr.js
+++ b/plugins/fakeobjects/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'sr', {
diff --git a/plugins/fakeobjects/lang/sv.js b/plugins/fakeobjects/lang/sv.js
index 5b8bd9d5..4e72467c 100644
--- a/plugins/fakeobjects/lang/sv.js
+++ b/plugins/fakeobjects/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'sv', {
diff --git a/plugins/fakeobjects/lang/th.js b/plugins/fakeobjects/lang/th.js
index df74cb1e..97bbfd8f 100644
--- a/plugins/fakeobjects/lang/th.js
+++ b/plugins/fakeobjects/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'th', {
diff --git a/plugins/fakeobjects/lang/tr.js b/plugins/fakeobjects/lang/tr.js
index 9eac5520..8c60e6fe 100644
--- a/plugins/fakeobjects/lang/tr.js
+++ b/plugins/fakeobjects/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'tr', {
diff --git a/plugins/fakeobjects/lang/tt.js b/plugins/fakeobjects/lang/tt.js
index a2bad989..5026f111 100644
--- a/plugins/fakeobjects/lang/tt.js
+++ b/plugins/fakeobjects/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'tt', {
diff --git a/plugins/fakeobjects/lang/ug.js b/plugins/fakeobjects/lang/ug.js
index 53f52777..98e055ed 100644
--- a/plugins/fakeobjects/lang/ug.js
+++ b/plugins/fakeobjects/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'ug', {
diff --git a/plugins/fakeobjects/lang/uk.js b/plugins/fakeobjects/lang/uk.js
index 5e773aec..8a843232 100644
--- a/plugins/fakeobjects/lang/uk.js
+++ b/plugins/fakeobjects/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'uk', {
diff --git a/plugins/fakeobjects/lang/vi.js b/plugins/fakeobjects/lang/vi.js
index 22c946e5..48ad4c9e 100644
--- a/plugins/fakeobjects/lang/vi.js
+++ b/plugins/fakeobjects/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'vi', {
diff --git a/plugins/fakeobjects/lang/zh-cn.js b/plugins/fakeobjects/lang/zh-cn.js
index e1217ee4..f0fe5d1b 100644
--- a/plugins/fakeobjects/lang/zh-cn.js
+++ b/plugins/fakeobjects/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'zh-cn', {
diff --git a/plugins/fakeobjects/lang/zh.js b/plugins/fakeobjects/lang/zh.js
index 4f737d8f..b90cad82 100644
--- a/plugins/fakeobjects/lang/zh.js
+++ b/plugins/fakeobjects/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'fakeobjects', 'zh', {
diff --git a/plugins/fakeobjects/plugin.js b/plugins/fakeobjects/plugin.js
index fe0b9c0b..afbffc3e 100644
--- a/plugins/fakeobjects/plugin.js
+++ b/plugins/fakeobjects/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/filebrowser/plugin.js b/plugins/filebrowser/plugin.js
index aa286dbb..9cc6233c 100644
--- a/plugins/filebrowser/plugin.js
+++ b/plugins/filebrowser/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/filetools/dev/uploaddebugger.js b/plugins/filetools/dev/uploaddebugger.js
index fe8907ab..5ca3bc9d 100644
--- a/plugins/filetools/dev/uploaddebugger.js
+++ b/plugins/filetools/dev/uploaddebugger.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/filetools/lang/az.js b/plugins/filetools/lang/az.js
index d082529e..989821b3 100644
--- a/plugins/filetools/lang/az.js
+++ b/plugins/filetools/lang/az.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'az', {
diff --git a/plugins/filetools/lang/bg.js b/plugins/filetools/lang/bg.js
index 327ccb2b..a2ea5425 100644
--- a/plugins/filetools/lang/bg.js
+++ b/plugins/filetools/lang/bg.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'bg', {
diff --git a/plugins/filetools/lang/ca.js b/plugins/filetools/lang/ca.js
index 4c87b946..ccc70ea2 100644
--- a/plugins/filetools/lang/ca.js
+++ b/plugins/filetools/lang/ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'ca', {
diff --git a/plugins/filetools/lang/cs.js b/plugins/filetools/lang/cs.js
index 86466c04..3464d84e 100644
--- a/plugins/filetools/lang/cs.js
+++ b/plugins/filetools/lang/cs.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'cs', {
diff --git a/plugins/filetools/lang/da.js b/plugins/filetools/lang/da.js
index b16f3390..90de7083 100644
--- a/plugins/filetools/lang/da.js
+++ b/plugins/filetools/lang/da.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'da', {
diff --git a/plugins/filetools/lang/de-ch.js b/plugins/filetools/lang/de-ch.js
index ec3d9b07..2f2d6b94 100644
--- a/plugins/filetools/lang/de-ch.js
+++ b/plugins/filetools/lang/de-ch.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'de-ch', {
diff --git a/plugins/filetools/lang/de.js b/plugins/filetools/lang/de.js
index b23dacac..514f2852 100644
--- a/plugins/filetools/lang/de.js
+++ b/plugins/filetools/lang/de.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'de', {
diff --git a/plugins/filetools/lang/el.js b/plugins/filetools/lang/el.js
index 82ff13ba..82b40e25 100644
--- a/plugins/filetools/lang/el.js
+++ b/plugins/filetools/lang/el.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'el', {
diff --git a/plugins/filetools/lang/en-au.js b/plugins/filetools/lang/en-au.js
index d2b62b4e..8f7813f2 100644
--- a/plugins/filetools/lang/en-au.js
+++ b/plugins/filetools/lang/en-au.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'en-au', {
diff --git a/plugins/filetools/lang/en.js b/plugins/filetools/lang/en.js
index 1b6fde9c..24dd46e5 100644
--- a/plugins/filetools/lang/en.js
+++ b/plugins/filetools/lang/en.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'en', {
diff --git a/plugins/filetools/lang/eo.js b/plugins/filetools/lang/eo.js
index 13f3b61c..c00f30a2 100644
--- a/plugins/filetools/lang/eo.js
+++ b/plugins/filetools/lang/eo.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'eo', {
diff --git a/plugins/filetools/lang/es-mx.js b/plugins/filetools/lang/es-mx.js
index cdad8f2a..03c39167 100644
--- a/plugins/filetools/lang/es-mx.js
+++ b/plugins/filetools/lang/es-mx.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'es-mx', {
diff --git a/plugins/filetools/lang/es.js b/plugins/filetools/lang/es.js
index 941f12c6..17ba8fbc 100644
--- a/plugins/filetools/lang/es.js
+++ b/plugins/filetools/lang/es.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'es', {
diff --git a/plugins/filetools/lang/et.js b/plugins/filetools/lang/et.js
index 5a6f57c0..33c1fed2 100644
--- a/plugins/filetools/lang/et.js
+++ b/plugins/filetools/lang/et.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'et', {
diff --git a/plugins/filetools/lang/eu.js b/plugins/filetools/lang/eu.js
index 01805f33..17039265 100644
--- a/plugins/filetools/lang/eu.js
+++ b/plugins/filetools/lang/eu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'eu', {
diff --git a/plugins/filetools/lang/fa.js b/plugins/filetools/lang/fa.js
index 1b26b27f..a5d3a522 100644
--- a/plugins/filetools/lang/fa.js
+++ b/plugins/filetools/lang/fa.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'fa', {
diff --git a/plugins/filetools/lang/fr.js b/plugins/filetools/lang/fr.js
index 74cbf5eb..005fd6db 100644
--- a/plugins/filetools/lang/fr.js
+++ b/plugins/filetools/lang/fr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'fr', {
diff --git a/plugins/filetools/lang/gl.js b/plugins/filetools/lang/gl.js
index a43967cf..2c21d690 100644
--- a/plugins/filetools/lang/gl.js
+++ b/plugins/filetools/lang/gl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'gl', {
diff --git a/plugins/filetools/lang/hr.js b/plugins/filetools/lang/hr.js
index 84dd998a..45621758 100644
--- a/plugins/filetools/lang/hr.js
+++ b/plugins/filetools/lang/hr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'hr', {
diff --git a/plugins/filetools/lang/hu.js b/plugins/filetools/lang/hu.js
index b90c3a17..c1880512 100644
--- a/plugins/filetools/lang/hu.js
+++ b/plugins/filetools/lang/hu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'hu', {
diff --git a/plugins/filetools/lang/id.js b/plugins/filetools/lang/id.js
index 5271919b..11e204d2 100644
--- a/plugins/filetools/lang/id.js
+++ b/plugins/filetools/lang/id.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'id', {
diff --git a/plugins/filetools/lang/it.js b/plugins/filetools/lang/it.js
index 4189a9de..80631e83 100644
--- a/plugins/filetools/lang/it.js
+++ b/plugins/filetools/lang/it.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'it', {
diff --git a/plugins/filetools/lang/ja.js b/plugins/filetools/lang/ja.js
index 998e6d9d..3fc73519 100644
--- a/plugins/filetools/lang/ja.js
+++ b/plugins/filetools/lang/ja.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'ja', {
diff --git a/plugins/filetools/lang/km.js b/plugins/filetools/lang/km.js
index 2dbd9b02..97adbd27 100644
--- a/plugins/filetools/lang/km.js
+++ b/plugins/filetools/lang/km.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'km', {
diff --git a/plugins/filetools/lang/ko.js b/plugins/filetools/lang/ko.js
index a701abf1..b73db679 100644
--- a/plugins/filetools/lang/ko.js
+++ b/plugins/filetools/lang/ko.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'ko', {
diff --git a/plugins/filetools/lang/ku.js b/plugins/filetools/lang/ku.js
index 182275ea..cb137808 100644
--- a/plugins/filetools/lang/ku.js
+++ b/plugins/filetools/lang/ku.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'ku', {
diff --git a/plugins/filetools/lang/lv.js b/plugins/filetools/lang/lv.js
index be216cdd..c15c180d 100644
--- a/plugins/filetools/lang/lv.js
+++ b/plugins/filetools/lang/lv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'lv', {
diff --git a/plugins/filetools/lang/nb.js b/plugins/filetools/lang/nb.js
index a4d299c0..596b5f4d 100644
--- a/plugins/filetools/lang/nb.js
+++ b/plugins/filetools/lang/nb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'nb', {
diff --git a/plugins/filetools/lang/nl.js b/plugins/filetools/lang/nl.js
index f21d02a5..dff36bfd 100644
--- a/plugins/filetools/lang/nl.js
+++ b/plugins/filetools/lang/nl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'nl', {
diff --git a/plugins/filetools/lang/no.js b/plugins/filetools/lang/no.js
index 6b10b4c3..e76d8869 100644
--- a/plugins/filetools/lang/no.js
+++ b/plugins/filetools/lang/no.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'no', {
diff --git a/plugins/filetools/lang/oc.js b/plugins/filetools/lang/oc.js
index 2a942460..1174bc7f 100644
--- a/plugins/filetools/lang/oc.js
+++ b/plugins/filetools/lang/oc.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'oc', {
diff --git a/plugins/filetools/lang/pl.js b/plugins/filetools/lang/pl.js
index feada07b..bfd14883 100644
--- a/plugins/filetools/lang/pl.js
+++ b/plugins/filetools/lang/pl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'pl', {
diff --git a/plugins/filetools/lang/pt-br.js b/plugins/filetools/lang/pt-br.js
index 119f5f16..54d952cf 100644
--- a/plugins/filetools/lang/pt-br.js
+++ b/plugins/filetools/lang/pt-br.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'pt-br', {
diff --git a/plugins/filetools/lang/pt.js b/plugins/filetools/lang/pt.js
index 67d44962..3f4c106a 100644
--- a/plugins/filetools/lang/pt.js
+++ b/plugins/filetools/lang/pt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'pt', {
diff --git a/plugins/filetools/lang/ro.js b/plugins/filetools/lang/ro.js
index 9739c54f..1735dd1f 100644
--- a/plugins/filetools/lang/ro.js
+++ b/plugins/filetools/lang/ro.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'ro', {
diff --git a/plugins/filetools/lang/ru.js b/plugins/filetools/lang/ru.js
index 9b1c3550..a3a59af1 100644
--- a/plugins/filetools/lang/ru.js
+++ b/plugins/filetools/lang/ru.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'ru', {
diff --git a/plugins/filetools/lang/sk.js b/plugins/filetools/lang/sk.js
index dc992160..6373865c 100644
--- a/plugins/filetools/lang/sk.js
+++ b/plugins/filetools/lang/sk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'sk', {
diff --git a/plugins/filetools/lang/sq.js b/plugins/filetools/lang/sq.js
index c520f3ef..bf8644c7 100644
--- a/plugins/filetools/lang/sq.js
+++ b/plugins/filetools/lang/sq.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'sq', {
diff --git a/plugins/filetools/lang/sr-latn.js b/plugins/filetools/lang/sr-latn.js
index cfb7cd28..c981e570 100644
--- a/plugins/filetools/lang/sr-latn.js
+++ b/plugins/filetools/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'sr-latn', {
diff --git a/plugins/filetools/lang/sr.js b/plugins/filetools/lang/sr.js
index e931df2e..ab8182b2 100644
--- a/plugins/filetools/lang/sr.js
+++ b/plugins/filetools/lang/sr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'sr', {
diff --git a/plugins/filetools/lang/sv.js b/plugins/filetools/lang/sv.js
index 0ae36f38..b0d20815 100644
--- a/plugins/filetools/lang/sv.js
+++ b/plugins/filetools/lang/sv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'sv', {
diff --git a/plugins/filetools/lang/tr.js b/plugins/filetools/lang/tr.js
index acbbcee9..0e5056d7 100644
--- a/plugins/filetools/lang/tr.js
+++ b/plugins/filetools/lang/tr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'tr', {
diff --git a/plugins/filetools/lang/ug.js b/plugins/filetools/lang/ug.js
index 84dd1e1d..a771f3a6 100644
--- a/plugins/filetools/lang/ug.js
+++ b/plugins/filetools/lang/ug.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'ug', {
diff --git a/plugins/filetools/lang/uk.js b/plugins/filetools/lang/uk.js
index d0d09247..24d62d92 100644
--- a/plugins/filetools/lang/uk.js
+++ b/plugins/filetools/lang/uk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'uk', {
diff --git a/plugins/filetools/lang/vi.js b/plugins/filetools/lang/vi.js
index 79f7f03e..a139bc4e 100644
--- a/plugins/filetools/lang/vi.js
+++ b/plugins/filetools/lang/vi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'vi', {
diff --git a/plugins/filetools/lang/zh-cn.js b/plugins/filetools/lang/zh-cn.js
index 85b2e458..c8dcdecb 100644
--- a/plugins/filetools/lang/zh-cn.js
+++ b/plugins/filetools/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'zh-cn', {
diff --git a/plugins/filetools/lang/zh.js b/plugins/filetools/lang/zh.js
index e0ab8932..6017b7c8 100644
--- a/plugins/filetools/lang/zh.js
+++ b/plugins/filetools/lang/zh.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'filetools', 'zh', {
diff --git a/plugins/filetools/plugin.js b/plugins/filetools/plugin.js
index 631ff116..16fe4825 100644
--- a/plugins/filetools/plugin.js
+++ b/plugins/filetools/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/find/dialogs/find.js b/plugins/find/dialogs/find.js
index 8eef21a4..d27d9570 100755
--- a/plugins/find/dialogs/find.js
+++ b/plugins/find/dialogs/find.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/find/lang/af.js b/plugins/find/lang/af.js
index 36f47d11..fa5df90b 100644
--- a/plugins/find/lang/af.js
+++ b/plugins/find/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'af', {
diff --git a/plugins/find/lang/ar.js b/plugins/find/lang/ar.js
index 9f88b75e..d68851a7 100644
--- a/plugins/find/lang/ar.js
+++ b/plugins/find/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'ar', {
diff --git a/plugins/find/lang/az.js b/plugins/find/lang/az.js
index 08b5397e..2362f8fb 100644
--- a/plugins/find/lang/az.js
+++ b/plugins/find/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'az', {
diff --git a/plugins/find/lang/bg.js b/plugins/find/lang/bg.js
index 5c9558bb..35a9acde 100644
--- a/plugins/find/lang/bg.js
+++ b/plugins/find/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'bg', {
diff --git a/plugins/find/lang/bn.js b/plugins/find/lang/bn.js
index 476d4bf4..ac64eff5 100644
--- a/plugins/find/lang/bn.js
+++ b/plugins/find/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'bn', {
diff --git a/plugins/find/lang/bs.js b/plugins/find/lang/bs.js
index 37099d0d..564313dd 100644
--- a/plugins/find/lang/bs.js
+++ b/plugins/find/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'bs', {
diff --git a/plugins/find/lang/ca.js b/plugins/find/lang/ca.js
index 83f40853..4868ec96 100644
--- a/plugins/find/lang/ca.js
+++ b/plugins/find/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'ca', {
diff --git a/plugins/find/lang/cs.js b/plugins/find/lang/cs.js
index 26faded7..2d0e96ec 100644
--- a/plugins/find/lang/cs.js
+++ b/plugins/find/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'cs', {
diff --git a/plugins/find/lang/cy.js b/plugins/find/lang/cy.js
index ffa95fe0..5b470775 100644
--- a/plugins/find/lang/cy.js
+++ b/plugins/find/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'cy', {
diff --git a/plugins/find/lang/da.js b/plugins/find/lang/da.js
index 8fde0342..23d5172f 100644
--- a/plugins/find/lang/da.js
+++ b/plugins/find/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'da', {
diff --git a/plugins/find/lang/de-ch.js b/plugins/find/lang/de-ch.js
index d4361717..f02a0136 100644
--- a/plugins/find/lang/de-ch.js
+++ b/plugins/find/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'de-ch', {
diff --git a/plugins/find/lang/de.js b/plugins/find/lang/de.js
index ebb40281..de2b4cf1 100644
--- a/plugins/find/lang/de.js
+++ b/plugins/find/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'de', {
diff --git a/plugins/find/lang/el.js b/plugins/find/lang/el.js
index 90445bb9..61551f4e 100644
--- a/plugins/find/lang/el.js
+++ b/plugins/find/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'el', {
diff --git a/plugins/find/lang/en-au.js b/plugins/find/lang/en-au.js
index 76bc6abc..57ec2eda 100644
--- a/plugins/find/lang/en-au.js
+++ b/plugins/find/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'en-au', {
diff --git a/plugins/find/lang/en-ca.js b/plugins/find/lang/en-ca.js
index 41a81615..ed275119 100644
--- a/plugins/find/lang/en-ca.js
+++ b/plugins/find/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'en-ca', {
diff --git a/plugins/find/lang/en-gb.js b/plugins/find/lang/en-gb.js
index d09773cf..6beda3fd 100644
--- a/plugins/find/lang/en-gb.js
+++ b/plugins/find/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'en-gb', {
diff --git a/plugins/find/lang/en.js b/plugins/find/lang/en.js
index b4517f31..838c90d8 100644
--- a/plugins/find/lang/en.js
+++ b/plugins/find/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'en', {
diff --git a/plugins/find/lang/eo.js b/plugins/find/lang/eo.js
index ef440333..1898209c 100644
--- a/plugins/find/lang/eo.js
+++ b/plugins/find/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'eo', {
diff --git a/plugins/find/lang/es-mx.js b/plugins/find/lang/es-mx.js
index 1b3c9685..90d5a594 100644
--- a/plugins/find/lang/es-mx.js
+++ b/plugins/find/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'es-mx', {
diff --git a/plugins/find/lang/es.js b/plugins/find/lang/es.js
index fe841a25..43173676 100644
--- a/plugins/find/lang/es.js
+++ b/plugins/find/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'es', {
diff --git a/plugins/find/lang/et.js b/plugins/find/lang/et.js
index 7ffdc54c..e676b830 100644
--- a/plugins/find/lang/et.js
+++ b/plugins/find/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'et', {
diff --git a/plugins/find/lang/eu.js b/plugins/find/lang/eu.js
index 3ac8d51e..8f8d0e22 100644
--- a/plugins/find/lang/eu.js
+++ b/plugins/find/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'eu', {
diff --git a/plugins/find/lang/fa.js b/plugins/find/lang/fa.js
index 5857c7e5..04100eb7 100644
--- a/plugins/find/lang/fa.js
+++ b/plugins/find/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'fa', {
diff --git a/plugins/find/lang/fi.js b/plugins/find/lang/fi.js
index 5b7ca8cd..4630172f 100644
--- a/plugins/find/lang/fi.js
+++ b/plugins/find/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'fi', {
diff --git a/plugins/find/lang/fo.js b/plugins/find/lang/fo.js
index a21e232a..37e0f56c 100644
--- a/plugins/find/lang/fo.js
+++ b/plugins/find/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'fo', {
diff --git a/plugins/find/lang/fr-ca.js b/plugins/find/lang/fr-ca.js
index fa583a60..612b28e8 100644
--- a/plugins/find/lang/fr-ca.js
+++ b/plugins/find/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'fr-ca', {
diff --git a/plugins/find/lang/fr.js b/plugins/find/lang/fr.js
index f94d4459..d3668c39 100644
--- a/plugins/find/lang/fr.js
+++ b/plugins/find/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'fr', {
diff --git a/plugins/find/lang/gl.js b/plugins/find/lang/gl.js
index c079aa86..5958c18e 100644
--- a/plugins/find/lang/gl.js
+++ b/plugins/find/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'gl', {
diff --git a/plugins/find/lang/gu.js b/plugins/find/lang/gu.js
index cb51f997..df486e36 100644
--- a/plugins/find/lang/gu.js
+++ b/plugins/find/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'gu', {
diff --git a/plugins/find/lang/he.js b/plugins/find/lang/he.js
index 8389382c..ea54ba01 100644
--- a/plugins/find/lang/he.js
+++ b/plugins/find/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'he', {
diff --git a/plugins/find/lang/hi.js b/plugins/find/lang/hi.js
index 183c0bd1..bd179e76 100644
--- a/plugins/find/lang/hi.js
+++ b/plugins/find/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'hi', {
diff --git a/plugins/find/lang/hr.js b/plugins/find/lang/hr.js
index 90f4be41..e5c8c447 100644
--- a/plugins/find/lang/hr.js
+++ b/plugins/find/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'hr', {
diff --git a/plugins/find/lang/hu.js b/plugins/find/lang/hu.js
index c326bb7d..55f0239c 100644
--- a/plugins/find/lang/hu.js
+++ b/plugins/find/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'hu', {
diff --git a/plugins/find/lang/id.js b/plugins/find/lang/id.js
index 229b7f3f..767375c1 100644
--- a/plugins/find/lang/id.js
+++ b/plugins/find/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'id', {
diff --git a/plugins/find/lang/is.js b/plugins/find/lang/is.js
index 1a994ac7..82cca03a 100644
--- a/plugins/find/lang/is.js
+++ b/plugins/find/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'is', {
diff --git a/plugins/find/lang/it.js b/plugins/find/lang/it.js
index 1ed503ed..2a9cacc4 100644
--- a/plugins/find/lang/it.js
+++ b/plugins/find/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'it', {
diff --git a/plugins/find/lang/ja.js b/plugins/find/lang/ja.js
index 0ff6fa14..0656dddf 100644
--- a/plugins/find/lang/ja.js
+++ b/plugins/find/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'ja', {
diff --git a/plugins/find/lang/ka.js b/plugins/find/lang/ka.js
index e68f8af4..81c09f75 100644
--- a/plugins/find/lang/ka.js
+++ b/plugins/find/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'ka', {
diff --git a/plugins/find/lang/km.js b/plugins/find/lang/km.js
index 3b39e201..b0ecd499 100644
--- a/plugins/find/lang/km.js
+++ b/plugins/find/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'km', {
diff --git a/plugins/find/lang/ko.js b/plugins/find/lang/ko.js
index 1c2b5f0e..a123a48b 100644
--- a/plugins/find/lang/ko.js
+++ b/plugins/find/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'ko', {
diff --git a/plugins/find/lang/ku.js b/plugins/find/lang/ku.js
index b23fbccc..a80b9c92 100644
--- a/plugins/find/lang/ku.js
+++ b/plugins/find/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'ku', {
diff --git a/plugins/find/lang/lt.js b/plugins/find/lang/lt.js
index a85ce4da..7abaa6a3 100644
--- a/plugins/find/lang/lt.js
+++ b/plugins/find/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'lt', {
diff --git a/plugins/find/lang/lv.js b/plugins/find/lang/lv.js
index d7ccf20d..cb93b69e 100644
--- a/plugins/find/lang/lv.js
+++ b/plugins/find/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'lv', {
diff --git a/plugins/find/lang/mk.js b/plugins/find/lang/mk.js
index b70b48a4..8f2cea1d 100644
--- a/plugins/find/lang/mk.js
+++ b/plugins/find/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'mk', {
diff --git a/plugins/find/lang/mn.js b/plugins/find/lang/mn.js
index ebd78179..a199a361 100644
--- a/plugins/find/lang/mn.js
+++ b/plugins/find/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'mn', {
diff --git a/plugins/find/lang/ms.js b/plugins/find/lang/ms.js
index 18d8d54d..c567f05e 100644
--- a/plugins/find/lang/ms.js
+++ b/plugins/find/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'ms', {
diff --git a/plugins/find/lang/nb.js b/plugins/find/lang/nb.js
index b0e7b2a4..d717152d 100644
--- a/plugins/find/lang/nb.js
+++ b/plugins/find/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'nb', {
diff --git a/plugins/find/lang/nl.js b/plugins/find/lang/nl.js
index f84cd578..06d8a4c2 100644
--- a/plugins/find/lang/nl.js
+++ b/plugins/find/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'nl', {
diff --git a/plugins/find/lang/no.js b/plugins/find/lang/no.js
index d11e7240..bc9ead40 100644
--- a/plugins/find/lang/no.js
+++ b/plugins/find/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'no', {
diff --git a/plugins/find/lang/oc.js b/plugins/find/lang/oc.js
index 336ba98a..4357da5b 100644
--- a/plugins/find/lang/oc.js
+++ b/plugins/find/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'oc', {
diff --git a/plugins/find/lang/pl.js b/plugins/find/lang/pl.js
index 902ef045..bfad3dac 100644
--- a/plugins/find/lang/pl.js
+++ b/plugins/find/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'pl', {
diff --git a/plugins/find/lang/pt-br.js b/plugins/find/lang/pt-br.js
index 2f8781e3..21e84ee6 100644
--- a/plugins/find/lang/pt-br.js
+++ b/plugins/find/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'pt-br', {
diff --git a/plugins/find/lang/pt.js b/plugins/find/lang/pt.js
index 293c2a15..6b56165e 100644
--- a/plugins/find/lang/pt.js
+++ b/plugins/find/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'pt', {
diff --git a/plugins/find/lang/ro.js b/plugins/find/lang/ro.js
index 4852b33d..68b49f0d 100644
--- a/plugins/find/lang/ro.js
+++ b/plugins/find/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'ro', {
diff --git a/plugins/find/lang/ru.js b/plugins/find/lang/ru.js
index 664d252d..086ef08b 100644
--- a/plugins/find/lang/ru.js
+++ b/plugins/find/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'ru', {
diff --git a/plugins/find/lang/si.js b/plugins/find/lang/si.js
index 50d6811c..7974ac2d 100644
--- a/plugins/find/lang/si.js
+++ b/plugins/find/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'si', {
diff --git a/plugins/find/lang/sk.js b/plugins/find/lang/sk.js
index 1527ea39..c9871f0a 100644
--- a/plugins/find/lang/sk.js
+++ b/plugins/find/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'sk', {
diff --git a/plugins/find/lang/sl.js b/plugins/find/lang/sl.js
index 2693761f..ae5e8d11 100644
--- a/plugins/find/lang/sl.js
+++ b/plugins/find/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'sl', {
diff --git a/plugins/find/lang/sq.js b/plugins/find/lang/sq.js
index 73b58f52..0e69f7ce 100644
--- a/plugins/find/lang/sq.js
+++ b/plugins/find/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'sq', {
diff --git a/plugins/find/lang/sr-latn.js b/plugins/find/lang/sr-latn.js
index 341517d9..86e1b907 100644
--- a/plugins/find/lang/sr-latn.js
+++ b/plugins/find/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'sr-latn', {
diff --git a/plugins/find/lang/sr.js b/plugins/find/lang/sr.js
index 2337aa1d..b48d388b 100644
--- a/plugins/find/lang/sr.js
+++ b/plugins/find/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'sr', {
diff --git a/plugins/find/lang/sv.js b/plugins/find/lang/sv.js
index d655963d..154c3f80 100644
--- a/plugins/find/lang/sv.js
+++ b/plugins/find/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'sv', {
diff --git a/plugins/find/lang/th.js b/plugins/find/lang/th.js
index 460bb362..592e2dfd 100644
--- a/plugins/find/lang/th.js
+++ b/plugins/find/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'th', {
diff --git a/plugins/find/lang/tr.js b/plugins/find/lang/tr.js
index 9428e448..080324d4 100644
--- a/plugins/find/lang/tr.js
+++ b/plugins/find/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'tr', {
diff --git a/plugins/find/lang/tt.js b/plugins/find/lang/tt.js
index 364131ae..6d5621f4 100644
--- a/plugins/find/lang/tt.js
+++ b/plugins/find/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'tt', {
diff --git a/plugins/find/lang/ug.js b/plugins/find/lang/ug.js
index 001c2b3c..81e3ad39 100644
--- a/plugins/find/lang/ug.js
+++ b/plugins/find/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'ug', {
diff --git a/plugins/find/lang/uk.js b/plugins/find/lang/uk.js
index e6123f5e..35feb193 100644
--- a/plugins/find/lang/uk.js
+++ b/plugins/find/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'uk', {
diff --git a/plugins/find/lang/vi.js b/plugins/find/lang/vi.js
index cb2451ca..ab9014c0 100644
--- a/plugins/find/lang/vi.js
+++ b/plugins/find/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'vi', {
diff --git a/plugins/find/lang/zh-cn.js b/plugins/find/lang/zh-cn.js
index 9c0997ec..b7217c3d 100644
--- a/plugins/find/lang/zh-cn.js
+++ b/plugins/find/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'zh-cn', {
diff --git a/plugins/find/lang/zh.js b/plugins/find/lang/zh.js
index 5837c076..00f63221 100644
--- a/plugins/find/lang/zh.js
+++ b/plugins/find/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'find', 'zh', {
diff --git a/plugins/find/plugin.js b/plugins/find/plugin.js
index cdcef9ff..61efe3d9 100755
--- a/plugins/find/plugin.js
+++ b/plugins/find/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/flash/plugin.js b/plugins/flash/plugin.js
index 504e3a73..42d0ea3d 100644
--- a/plugins/flash/plugin.js
+++ b/plugins/flash/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/floatingspace/plugin.js b/plugins/floatingspace/plugin.js
index fe7aac55..a38ed802 100644
--- a/plugins/floatingspace/plugin.js
+++ b/plugins/floatingspace/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/floatpanel/plugin.js b/plugins/floatpanel/plugin.js
index 35bb1073..0ad8344d 100644
--- a/plugins/floatpanel/plugin.js
+++ b/plugins/floatpanel/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/font/lang/af.js b/plugins/font/lang/af.js
index 5d08f59d..070c1f35 100644
--- a/plugins/font/lang/af.js
+++ b/plugins/font/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'af', {
diff --git a/plugins/font/lang/ar.js b/plugins/font/lang/ar.js
index 47f3d056..a4b34f1b 100644
--- a/plugins/font/lang/ar.js
+++ b/plugins/font/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'ar', {
diff --git a/plugins/font/lang/az.js b/plugins/font/lang/az.js
index 245f5928..cae5dbad 100644
--- a/plugins/font/lang/az.js
+++ b/plugins/font/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'az', {
diff --git a/plugins/font/lang/bg.js b/plugins/font/lang/bg.js
index 2552bcb3..bc556daa 100644
--- a/plugins/font/lang/bg.js
+++ b/plugins/font/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'bg', {
diff --git a/plugins/font/lang/bn.js b/plugins/font/lang/bn.js
index 8969bca2..cda5eec6 100644
--- a/plugins/font/lang/bn.js
+++ b/plugins/font/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'bn', {
diff --git a/plugins/font/lang/bs.js b/plugins/font/lang/bs.js
index ca0f0ffa..dd4b0ee8 100644
--- a/plugins/font/lang/bs.js
+++ b/plugins/font/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'bs', {
diff --git a/plugins/font/lang/ca.js b/plugins/font/lang/ca.js
index 4aacbae7..7ad9a959 100644
--- a/plugins/font/lang/ca.js
+++ b/plugins/font/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'ca', {
diff --git a/plugins/font/lang/cs.js b/plugins/font/lang/cs.js
index 0393df01..8f1edaa8 100644
--- a/plugins/font/lang/cs.js
+++ b/plugins/font/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'cs', {
diff --git a/plugins/font/lang/cy.js b/plugins/font/lang/cy.js
index 660080ca..45b78b37 100644
--- a/plugins/font/lang/cy.js
+++ b/plugins/font/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'cy', {
diff --git a/plugins/font/lang/da.js b/plugins/font/lang/da.js
index f67ec3ae..207f8592 100644
--- a/plugins/font/lang/da.js
+++ b/plugins/font/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'da', {
diff --git a/plugins/font/lang/de-ch.js b/plugins/font/lang/de-ch.js
index 27452dfb..b283b5ed 100644
--- a/plugins/font/lang/de-ch.js
+++ b/plugins/font/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'de-ch', {
diff --git a/plugins/font/lang/de.js b/plugins/font/lang/de.js
index ba9bc4b6..8b204a9d 100644
--- a/plugins/font/lang/de.js
+++ b/plugins/font/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'de', {
diff --git a/plugins/font/lang/el.js b/plugins/font/lang/el.js
index d7f01381..5a6866f3 100644
--- a/plugins/font/lang/el.js
+++ b/plugins/font/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'el', {
diff --git a/plugins/font/lang/en-au.js b/plugins/font/lang/en-au.js
index e96d4846..94e9d54f 100644
--- a/plugins/font/lang/en-au.js
+++ b/plugins/font/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'en-au', {
diff --git a/plugins/font/lang/en-ca.js b/plugins/font/lang/en-ca.js
index 63a1009b..b5e40363 100644
--- a/plugins/font/lang/en-ca.js
+++ b/plugins/font/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'en-ca', {
diff --git a/plugins/font/lang/en-gb.js b/plugins/font/lang/en-gb.js
index 31a47e5a..0996f591 100644
--- a/plugins/font/lang/en-gb.js
+++ b/plugins/font/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'en-gb', {
diff --git a/plugins/font/lang/en.js b/plugins/font/lang/en.js
index 21747aed..5113eb2f 100644
--- a/plugins/font/lang/en.js
+++ b/plugins/font/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'en', {
diff --git a/plugins/font/lang/eo.js b/plugins/font/lang/eo.js
index 66d2372d..3ac8504b 100644
--- a/plugins/font/lang/eo.js
+++ b/plugins/font/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'eo', {
diff --git a/plugins/font/lang/es-mx.js b/plugins/font/lang/es-mx.js
index 692aac54..44fcdde9 100644
--- a/plugins/font/lang/es-mx.js
+++ b/plugins/font/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'es-mx', {
diff --git a/plugins/font/lang/es.js b/plugins/font/lang/es.js
index 6f9890d4..499d0445 100644
--- a/plugins/font/lang/es.js
+++ b/plugins/font/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'es', {
diff --git a/plugins/font/lang/et.js b/plugins/font/lang/et.js
index 6d25ef8d..ebb26730 100644
--- a/plugins/font/lang/et.js
+++ b/plugins/font/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'et', {
diff --git a/plugins/font/lang/eu.js b/plugins/font/lang/eu.js
index 7de39212..f2c9a2bf 100644
--- a/plugins/font/lang/eu.js
+++ b/plugins/font/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'eu', {
diff --git a/plugins/font/lang/fa.js b/plugins/font/lang/fa.js
index f0a2529f..e5f2867a 100644
--- a/plugins/font/lang/fa.js
+++ b/plugins/font/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'fa', {
diff --git a/plugins/font/lang/fi.js b/plugins/font/lang/fi.js
index 105b3b4f..4f58be89 100644
--- a/plugins/font/lang/fi.js
+++ b/plugins/font/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'fi', {
diff --git a/plugins/font/lang/fo.js b/plugins/font/lang/fo.js
index c630f38e..f5c49f9e 100644
--- a/plugins/font/lang/fo.js
+++ b/plugins/font/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'fo', {
diff --git a/plugins/font/lang/fr-ca.js b/plugins/font/lang/fr-ca.js
index 6549a24f..db06e268 100644
--- a/plugins/font/lang/fr-ca.js
+++ b/plugins/font/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'fr-ca', {
diff --git a/plugins/font/lang/fr.js b/plugins/font/lang/fr.js
index 6ac0516b..baec1073 100644
--- a/plugins/font/lang/fr.js
+++ b/plugins/font/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'fr', {
diff --git a/plugins/font/lang/gl.js b/plugins/font/lang/gl.js
index 7912f856..eae10e5e 100644
--- a/plugins/font/lang/gl.js
+++ b/plugins/font/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'gl', {
diff --git a/plugins/font/lang/gu.js b/plugins/font/lang/gu.js
index 428f239d..797c4f0c 100644
--- a/plugins/font/lang/gu.js
+++ b/plugins/font/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'gu', {
diff --git a/plugins/font/lang/he.js b/plugins/font/lang/he.js
index 2964a178..bab0b0a5 100644
--- a/plugins/font/lang/he.js
+++ b/plugins/font/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'he', {
diff --git a/plugins/font/lang/hi.js b/plugins/font/lang/hi.js
index 686464a5..d644cdd3 100644
--- a/plugins/font/lang/hi.js
+++ b/plugins/font/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'hi', {
diff --git a/plugins/font/lang/hr.js b/plugins/font/lang/hr.js
index af5f93dc..6a07a12d 100644
--- a/plugins/font/lang/hr.js
+++ b/plugins/font/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'hr', {
diff --git a/plugins/font/lang/hu.js b/plugins/font/lang/hu.js
index 5f92c5d6..6483ecec 100644
--- a/plugins/font/lang/hu.js
+++ b/plugins/font/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'hu', {
diff --git a/plugins/font/lang/id.js b/plugins/font/lang/id.js
index 94428820..3170b154 100644
--- a/plugins/font/lang/id.js
+++ b/plugins/font/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'id', {
diff --git a/plugins/font/lang/is.js b/plugins/font/lang/is.js
index 43bbe959..c41e6d49 100644
--- a/plugins/font/lang/is.js
+++ b/plugins/font/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'is', {
diff --git a/plugins/font/lang/it.js b/plugins/font/lang/it.js
index cfcac0bf..a75f99a6 100644
--- a/plugins/font/lang/it.js
+++ b/plugins/font/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'it', {
diff --git a/plugins/font/lang/ja.js b/plugins/font/lang/ja.js
index aea31d01..e9b4e45c 100644
--- a/plugins/font/lang/ja.js
+++ b/plugins/font/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'ja', {
diff --git a/plugins/font/lang/ka.js b/plugins/font/lang/ka.js
index a7882810..df2a3cf1 100644
--- a/plugins/font/lang/ka.js
+++ b/plugins/font/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'ka', {
diff --git a/plugins/font/lang/km.js b/plugins/font/lang/km.js
index a90908c7..8bb91dee 100644
--- a/plugins/font/lang/km.js
+++ b/plugins/font/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'km', {
diff --git a/plugins/font/lang/ko.js b/plugins/font/lang/ko.js
index a3472280..04bf9ec8 100644
--- a/plugins/font/lang/ko.js
+++ b/plugins/font/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'ko', {
diff --git a/plugins/font/lang/ku.js b/plugins/font/lang/ku.js
index 9ab04353..7a29a360 100644
--- a/plugins/font/lang/ku.js
+++ b/plugins/font/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'ku', {
diff --git a/plugins/font/lang/lt.js b/plugins/font/lang/lt.js
index 3704b28a..96fd3938 100644
--- a/plugins/font/lang/lt.js
+++ b/plugins/font/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'lt', {
diff --git a/plugins/font/lang/lv.js b/plugins/font/lang/lv.js
index 7d832a6f..6e00baa7 100644
--- a/plugins/font/lang/lv.js
+++ b/plugins/font/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'lv', {
diff --git a/plugins/font/lang/mk.js b/plugins/font/lang/mk.js
index 506e0690..52aff2b1 100644
--- a/plugins/font/lang/mk.js
+++ b/plugins/font/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'mk', {
diff --git a/plugins/font/lang/mn.js b/plugins/font/lang/mn.js
index b240950c..d70dd84c 100644
--- a/plugins/font/lang/mn.js
+++ b/plugins/font/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'mn', {
diff --git a/plugins/font/lang/ms.js b/plugins/font/lang/ms.js
index 773e25a8..2b7d1250 100644
--- a/plugins/font/lang/ms.js
+++ b/plugins/font/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'ms', {
diff --git a/plugins/font/lang/nb.js b/plugins/font/lang/nb.js
index 401913f1..13d0ef25 100644
--- a/plugins/font/lang/nb.js
+++ b/plugins/font/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'nb', {
diff --git a/plugins/font/lang/nl.js b/plugins/font/lang/nl.js
index 5763437f..548d357a 100644
--- a/plugins/font/lang/nl.js
+++ b/plugins/font/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'nl', {
diff --git a/plugins/font/lang/no.js b/plugins/font/lang/no.js
index 632895dc..755bc93b 100644
--- a/plugins/font/lang/no.js
+++ b/plugins/font/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'no', {
diff --git a/plugins/font/lang/oc.js b/plugins/font/lang/oc.js
index d18f2243..edd04e5d 100644
--- a/plugins/font/lang/oc.js
+++ b/plugins/font/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'oc', {
diff --git a/plugins/font/lang/pl.js b/plugins/font/lang/pl.js
index 4b027d26..a32c179b 100644
--- a/plugins/font/lang/pl.js
+++ b/plugins/font/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'pl', {
diff --git a/plugins/font/lang/pt-br.js b/plugins/font/lang/pt-br.js
index e9e50942..8e309d96 100644
--- a/plugins/font/lang/pt-br.js
+++ b/plugins/font/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'pt-br', {
diff --git a/plugins/font/lang/pt.js b/plugins/font/lang/pt.js
index 8795e9a6..27ff55eb 100644
--- a/plugins/font/lang/pt.js
+++ b/plugins/font/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'pt', {
diff --git a/plugins/font/lang/ro.js b/plugins/font/lang/ro.js
index 705f4f71..4dec1932 100644
--- a/plugins/font/lang/ro.js
+++ b/plugins/font/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'ro', {
diff --git a/plugins/font/lang/ru.js b/plugins/font/lang/ru.js
index 51696159..3b4f39f5 100644
--- a/plugins/font/lang/ru.js
+++ b/plugins/font/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'ru', {
diff --git a/plugins/font/lang/si.js b/plugins/font/lang/si.js
index bd3a557b..4fe1de79 100644
--- a/plugins/font/lang/si.js
+++ b/plugins/font/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'si', {
diff --git a/plugins/font/lang/sk.js b/plugins/font/lang/sk.js
index 7f051745..e317ca0a 100644
--- a/plugins/font/lang/sk.js
+++ b/plugins/font/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'sk', {
diff --git a/plugins/font/lang/sl.js b/plugins/font/lang/sl.js
index c75009d4..93d1feb0 100644
--- a/plugins/font/lang/sl.js
+++ b/plugins/font/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'sl', {
diff --git a/plugins/font/lang/sq.js b/plugins/font/lang/sq.js
index 36ddf4bb..9887014f 100644
--- a/plugins/font/lang/sq.js
+++ b/plugins/font/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'sq', {
diff --git a/plugins/font/lang/sr-latn.js b/plugins/font/lang/sr-latn.js
index bc976014..3675ce3d 100644
--- a/plugins/font/lang/sr-latn.js
+++ b/plugins/font/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'sr-latn', {
diff --git a/plugins/font/lang/sr.js b/plugins/font/lang/sr.js
index 0011201e..6fde79be 100644
--- a/plugins/font/lang/sr.js
+++ b/plugins/font/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'sr', {
diff --git a/plugins/font/lang/sv.js b/plugins/font/lang/sv.js
index f1b49af5..7bc74af2 100644
--- a/plugins/font/lang/sv.js
+++ b/plugins/font/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'sv', {
diff --git a/plugins/font/lang/th.js b/plugins/font/lang/th.js
index a90398dd..51e41b8d 100644
--- a/plugins/font/lang/th.js
+++ b/plugins/font/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'th', {
diff --git a/plugins/font/lang/tr.js b/plugins/font/lang/tr.js
index 9ed715d4..31e121c6 100644
--- a/plugins/font/lang/tr.js
+++ b/plugins/font/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'tr', {
diff --git a/plugins/font/lang/tt.js b/plugins/font/lang/tt.js
index 8b9decda..2687e241 100644
--- a/plugins/font/lang/tt.js
+++ b/plugins/font/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'tt', {
diff --git a/plugins/font/lang/ug.js b/plugins/font/lang/ug.js
index 106cc819..30163f57 100644
--- a/plugins/font/lang/ug.js
+++ b/plugins/font/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'ug', {
diff --git a/plugins/font/lang/uk.js b/plugins/font/lang/uk.js
index 15a65fb1..ceeeebef 100644
--- a/plugins/font/lang/uk.js
+++ b/plugins/font/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'uk', {
diff --git a/plugins/font/lang/vi.js b/plugins/font/lang/vi.js
index a4110857..fd2a755a 100644
--- a/plugins/font/lang/vi.js
+++ b/plugins/font/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'vi', {
diff --git a/plugins/font/lang/zh-cn.js b/plugins/font/lang/zh-cn.js
index e34c81e3..b882c714 100644
--- a/plugins/font/lang/zh-cn.js
+++ b/plugins/font/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'zh-cn', {
diff --git a/plugins/font/lang/zh.js b/plugins/font/lang/zh.js
index dd7be789..a5846ebd 100644
--- a/plugins/font/lang/zh.js
+++ b/plugins/font/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'font', 'zh', {
diff --git a/plugins/font/plugin.js b/plugins/font/plugin.js
index 3e4bc280..116fdba3 100644
--- a/plugins/font/plugin.js
+++ b/plugins/font/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/format/lang/af.js b/plugins/format/lang/af.js
index ac74923b..b3c0c21d 100644
--- a/plugins/format/lang/af.js
+++ b/plugins/format/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'af', {
diff --git a/plugins/format/lang/ar.js b/plugins/format/lang/ar.js
index 94b3f61a..bd996eb2 100644
--- a/plugins/format/lang/ar.js
+++ b/plugins/format/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'ar', {
diff --git a/plugins/format/lang/az.js b/plugins/format/lang/az.js
index 9032d32f..05bb3d46 100644
--- a/plugins/format/lang/az.js
+++ b/plugins/format/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'az', {
diff --git a/plugins/format/lang/bg.js b/plugins/format/lang/bg.js
index fcc40299..97e11ce2 100644
--- a/plugins/format/lang/bg.js
+++ b/plugins/format/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'bg', {
diff --git a/plugins/format/lang/bn.js b/plugins/format/lang/bn.js
index b6829b43..be9c679c 100644
--- a/plugins/format/lang/bn.js
+++ b/plugins/format/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'bn', {
diff --git a/plugins/format/lang/bs.js b/plugins/format/lang/bs.js
index 3b68abae..9c420925 100644
--- a/plugins/format/lang/bs.js
+++ b/plugins/format/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'bs', {
diff --git a/plugins/format/lang/ca.js b/plugins/format/lang/ca.js
index 5247756b..fd59e446 100644
--- a/plugins/format/lang/ca.js
+++ b/plugins/format/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'ca', {
diff --git a/plugins/format/lang/cs.js b/plugins/format/lang/cs.js
index 9704e88d..9899f22a 100644
--- a/plugins/format/lang/cs.js
+++ b/plugins/format/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'cs', {
diff --git a/plugins/format/lang/cy.js b/plugins/format/lang/cy.js
index b4bf2f12..01a2d74a 100644
--- a/plugins/format/lang/cy.js
+++ b/plugins/format/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'cy', {
diff --git a/plugins/format/lang/da.js b/plugins/format/lang/da.js
index 652171fd..59d92cfa 100644
--- a/plugins/format/lang/da.js
+++ b/plugins/format/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'da', {
diff --git a/plugins/format/lang/de-ch.js b/plugins/format/lang/de-ch.js
index b22991c8..0f596786 100644
--- a/plugins/format/lang/de-ch.js
+++ b/plugins/format/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'de-ch', {
diff --git a/plugins/format/lang/de.js b/plugins/format/lang/de.js
index 37fdf3e4..bc348d58 100644
--- a/plugins/format/lang/de.js
+++ b/plugins/format/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'de', {
diff --git a/plugins/format/lang/el.js b/plugins/format/lang/el.js
index 651f134f..c0917226 100644
--- a/plugins/format/lang/el.js
+++ b/plugins/format/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'el', {
diff --git a/plugins/format/lang/en-au.js b/plugins/format/lang/en-au.js
index c89951f0..eb27b6a5 100644
--- a/plugins/format/lang/en-au.js
+++ b/plugins/format/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'en-au', {
diff --git a/plugins/format/lang/en-ca.js b/plugins/format/lang/en-ca.js
index 48167232..90f921fe 100644
--- a/plugins/format/lang/en-ca.js
+++ b/plugins/format/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'en-ca', {
diff --git a/plugins/format/lang/en-gb.js b/plugins/format/lang/en-gb.js
index ef60a407..a1457fc8 100644
--- a/plugins/format/lang/en-gb.js
+++ b/plugins/format/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'en-gb', {
diff --git a/plugins/format/lang/en.js b/plugins/format/lang/en.js
index cec61518..222bbc80 100644
--- a/plugins/format/lang/en.js
+++ b/plugins/format/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'en', {
diff --git a/plugins/format/lang/eo.js b/plugins/format/lang/eo.js
index ccb9607b..d4cc9c50 100644
--- a/plugins/format/lang/eo.js
+++ b/plugins/format/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'eo', {
diff --git a/plugins/format/lang/es-mx.js b/plugins/format/lang/es-mx.js
index 17f52f88..7c628f70 100644
--- a/plugins/format/lang/es-mx.js
+++ b/plugins/format/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'es-mx', {
diff --git a/plugins/format/lang/es.js b/plugins/format/lang/es.js
index f3c0358e..3b4391c8 100644
--- a/plugins/format/lang/es.js
+++ b/plugins/format/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'es', {
diff --git a/plugins/format/lang/et.js b/plugins/format/lang/et.js
index bd393a07..fdc54c17 100644
--- a/plugins/format/lang/et.js
+++ b/plugins/format/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'et', {
diff --git a/plugins/format/lang/eu.js b/plugins/format/lang/eu.js
index ecb0a13a..fee0fd66 100644
--- a/plugins/format/lang/eu.js
+++ b/plugins/format/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'eu', {
diff --git a/plugins/format/lang/fa.js b/plugins/format/lang/fa.js
index fc2fce6f..0b3711ec 100644
--- a/plugins/format/lang/fa.js
+++ b/plugins/format/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'fa', {
diff --git a/plugins/format/lang/fi.js b/plugins/format/lang/fi.js
index 3af8f6d4..77371789 100644
--- a/plugins/format/lang/fi.js
+++ b/plugins/format/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'fi', {
diff --git a/plugins/format/lang/fo.js b/plugins/format/lang/fo.js
index 8a830162..df0604f2 100644
--- a/plugins/format/lang/fo.js
+++ b/plugins/format/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'fo', {
diff --git a/plugins/format/lang/fr-ca.js b/plugins/format/lang/fr-ca.js
index 00d7340d..cd71ab94 100644
--- a/plugins/format/lang/fr-ca.js
+++ b/plugins/format/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'fr-ca', {
diff --git a/plugins/format/lang/fr.js b/plugins/format/lang/fr.js
index 23db7ec3..c60ed8dd 100644
--- a/plugins/format/lang/fr.js
+++ b/plugins/format/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'fr', {
diff --git a/plugins/format/lang/gl.js b/plugins/format/lang/gl.js
index 7440c56a..b088be86 100644
--- a/plugins/format/lang/gl.js
+++ b/plugins/format/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'gl', {
diff --git a/plugins/format/lang/gu.js b/plugins/format/lang/gu.js
index 7361856e..b23d1dbb 100644
--- a/plugins/format/lang/gu.js
+++ b/plugins/format/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'gu', {
diff --git a/plugins/format/lang/he.js b/plugins/format/lang/he.js
index 61fbf4aa..37b573e9 100644
--- a/plugins/format/lang/he.js
+++ b/plugins/format/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'he', {
diff --git a/plugins/format/lang/hi.js b/plugins/format/lang/hi.js
index 9b996dbf..b454692c 100644
--- a/plugins/format/lang/hi.js
+++ b/plugins/format/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'hi', {
diff --git a/plugins/format/lang/hr.js b/plugins/format/lang/hr.js
index 4c3d1aef..b80b43a9 100644
--- a/plugins/format/lang/hr.js
+++ b/plugins/format/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'hr', {
diff --git a/plugins/format/lang/hu.js b/plugins/format/lang/hu.js
index 01b95b23..ab524895 100644
--- a/plugins/format/lang/hu.js
+++ b/plugins/format/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'hu', {
diff --git a/plugins/format/lang/id.js b/plugins/format/lang/id.js
index 288eeac7..45480cc8 100644
--- a/plugins/format/lang/id.js
+++ b/plugins/format/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'id', {
diff --git a/plugins/format/lang/is.js b/plugins/format/lang/is.js
index 65b798bd..7dc5d762 100644
--- a/plugins/format/lang/is.js
+++ b/plugins/format/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'is', {
diff --git a/plugins/format/lang/it.js b/plugins/format/lang/it.js
index 659cbde8..9f1b16b4 100644
--- a/plugins/format/lang/it.js
+++ b/plugins/format/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'it', {
diff --git a/plugins/format/lang/ja.js b/plugins/format/lang/ja.js
index b13f1c24..f4f10c0d 100644
--- a/plugins/format/lang/ja.js
+++ b/plugins/format/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'ja', {
diff --git a/plugins/format/lang/ka.js b/plugins/format/lang/ka.js
index bba0a68d..5eaa9191 100644
--- a/plugins/format/lang/ka.js
+++ b/plugins/format/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'ka', {
diff --git a/plugins/format/lang/km.js b/plugins/format/lang/km.js
index c9d99e6c..d4ccf5a1 100644
--- a/plugins/format/lang/km.js
+++ b/plugins/format/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'km', {
diff --git a/plugins/format/lang/ko.js b/plugins/format/lang/ko.js
index 08663952..5c646b65 100644
--- a/plugins/format/lang/ko.js
+++ b/plugins/format/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'ko', {
diff --git a/plugins/format/lang/ku.js b/plugins/format/lang/ku.js
index 20c153ed..94fd237e 100644
--- a/plugins/format/lang/ku.js
+++ b/plugins/format/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'ku', {
diff --git a/plugins/format/lang/lt.js b/plugins/format/lang/lt.js
index ed1990cd..4547bb0f 100644
--- a/plugins/format/lang/lt.js
+++ b/plugins/format/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'lt', {
diff --git a/plugins/format/lang/lv.js b/plugins/format/lang/lv.js
index 0798706b..7646e77d 100644
--- a/plugins/format/lang/lv.js
+++ b/plugins/format/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'lv', {
diff --git a/plugins/format/lang/mk.js b/plugins/format/lang/mk.js
index eb065263..9cbc3733 100644
--- a/plugins/format/lang/mk.js
+++ b/plugins/format/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'mk', {
diff --git a/plugins/format/lang/mn.js b/plugins/format/lang/mn.js
index 8abc059b..f9644e5e 100644
--- a/plugins/format/lang/mn.js
+++ b/plugins/format/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'mn', {
diff --git a/plugins/format/lang/ms.js b/plugins/format/lang/ms.js
index 0eac4480..c16e98f0 100644
--- a/plugins/format/lang/ms.js
+++ b/plugins/format/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'ms', {
diff --git a/plugins/format/lang/nb.js b/plugins/format/lang/nb.js
index 9f62bff7..974531fb 100644
--- a/plugins/format/lang/nb.js
+++ b/plugins/format/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'nb', {
diff --git a/plugins/format/lang/nl.js b/plugins/format/lang/nl.js
index 123088ab..0bef523a 100644
--- a/plugins/format/lang/nl.js
+++ b/plugins/format/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'nl', {
diff --git a/plugins/format/lang/no.js b/plugins/format/lang/no.js
index a20f3871..b0092793 100644
--- a/plugins/format/lang/no.js
+++ b/plugins/format/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'no', {
diff --git a/plugins/format/lang/oc.js b/plugins/format/lang/oc.js
index 585199e7..6e4003e0 100644
--- a/plugins/format/lang/oc.js
+++ b/plugins/format/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'oc', {
diff --git a/plugins/format/lang/pl.js b/plugins/format/lang/pl.js
index 5ca87710..8ed46ba6 100644
--- a/plugins/format/lang/pl.js
+++ b/plugins/format/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'pl', {
diff --git a/plugins/format/lang/pt-br.js b/plugins/format/lang/pt-br.js
index ed502a77..3711cae5 100644
--- a/plugins/format/lang/pt-br.js
+++ b/plugins/format/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'pt-br', {
diff --git a/plugins/format/lang/pt.js b/plugins/format/lang/pt.js
index 5d7ed7d7..3055770a 100644
--- a/plugins/format/lang/pt.js
+++ b/plugins/format/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'pt', {
diff --git a/plugins/format/lang/ro.js b/plugins/format/lang/ro.js
index 73b9c564..07e72d19 100644
--- a/plugins/format/lang/ro.js
+++ b/plugins/format/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'ro', {
diff --git a/plugins/format/lang/ru.js b/plugins/format/lang/ru.js
index 1c8876d7..ea684396 100644
--- a/plugins/format/lang/ru.js
+++ b/plugins/format/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'ru', {
diff --git a/plugins/format/lang/si.js b/plugins/format/lang/si.js
index f48a55fb..e84670e2 100644
--- a/plugins/format/lang/si.js
+++ b/plugins/format/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'si', {
diff --git a/plugins/format/lang/sk.js b/plugins/format/lang/sk.js
index 89a4ef40..86e2cfe3 100644
--- a/plugins/format/lang/sk.js
+++ b/plugins/format/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'sk', {
diff --git a/plugins/format/lang/sl.js b/plugins/format/lang/sl.js
index 574de831..5049e6c4 100644
--- a/plugins/format/lang/sl.js
+++ b/plugins/format/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'sl', {
diff --git a/plugins/format/lang/sq.js b/plugins/format/lang/sq.js
index ab77841d..9a709087 100644
--- a/plugins/format/lang/sq.js
+++ b/plugins/format/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'sq', {
diff --git a/plugins/format/lang/sr-latn.js b/plugins/format/lang/sr-latn.js
index 6158bbbc..e168a50c 100644
--- a/plugins/format/lang/sr-latn.js
+++ b/plugins/format/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'sr-latn', {
diff --git a/plugins/format/lang/sr.js b/plugins/format/lang/sr.js
index 7468cbea..16d8706f 100644
--- a/plugins/format/lang/sr.js
+++ b/plugins/format/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'sr', {
diff --git a/plugins/format/lang/sv.js b/plugins/format/lang/sv.js
index effe71d6..e43877d6 100644
--- a/plugins/format/lang/sv.js
+++ b/plugins/format/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'sv', {
diff --git a/plugins/format/lang/th.js b/plugins/format/lang/th.js
index 52ec1cb4..0632dec1 100644
--- a/plugins/format/lang/th.js
+++ b/plugins/format/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'th', {
diff --git a/plugins/format/lang/tr.js b/plugins/format/lang/tr.js
index f262c34d..25875748 100644
--- a/plugins/format/lang/tr.js
+++ b/plugins/format/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'tr', {
diff --git a/plugins/format/lang/tt.js b/plugins/format/lang/tt.js
index d07551d9..132a0f15 100644
--- a/plugins/format/lang/tt.js
+++ b/plugins/format/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'tt', {
diff --git a/plugins/format/lang/ug.js b/plugins/format/lang/ug.js
index 4968b31d..2b642ee7 100644
--- a/plugins/format/lang/ug.js
+++ b/plugins/format/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'ug', {
diff --git a/plugins/format/lang/uk.js b/plugins/format/lang/uk.js
index d53c0102..b89b8776 100644
--- a/plugins/format/lang/uk.js
+++ b/plugins/format/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'uk', {
diff --git a/plugins/format/lang/vi.js b/plugins/format/lang/vi.js
index cd831bf0..8cc0143a 100644
--- a/plugins/format/lang/vi.js
+++ b/plugins/format/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'vi', {
diff --git a/plugins/format/lang/zh-cn.js b/plugins/format/lang/zh-cn.js
index d6ef9ca9..54d78777 100644
--- a/plugins/format/lang/zh-cn.js
+++ b/plugins/format/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'zh-cn', {
diff --git a/plugins/format/lang/zh.js b/plugins/format/lang/zh.js
index 9651d3e8..3236712a 100644
--- a/plugins/format/lang/zh.js
+++ b/plugins/format/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'format', 'zh', {
diff --git a/plugins/format/plugin.js b/plugins/format/plugin.js
index 7954db86..404aa8ad 100644
--- a/plugins/format/plugin.js
+++ b/plugins/format/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/forms/dialogs/button.js b/plugins/forms/dialogs/button.js
index 54f92eb1..8b09de3a 100644
--- a/plugins/forms/dialogs/button.js
+++ b/plugins/forms/dialogs/button.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/forms/dialogs/checkbox.js b/plugins/forms/dialogs/checkbox.js
index d79d73c9..5855596e 100644
--- a/plugins/forms/dialogs/checkbox.js
+++ b/plugins/forms/dialogs/checkbox.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/forms/dialogs/form.js b/plugins/forms/dialogs/form.js
index b97c6c62..dce29d39 100644
--- a/plugins/forms/dialogs/form.js
+++ b/plugins/forms/dialogs/form.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/forms/dialogs/hiddenfield.js b/plugins/forms/dialogs/hiddenfield.js
index 084fa2cd..cf260341 100644
--- a/plugins/forms/dialogs/hiddenfield.js
+++ b/plugins/forms/dialogs/hiddenfield.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/forms/dialogs/radio.js b/plugins/forms/dialogs/radio.js
index 38397f91..d69b4cce 100644
--- a/plugins/forms/dialogs/radio.js
+++ b/plugins/forms/dialogs/radio.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/forms/dialogs/select.js b/plugins/forms/dialogs/select.js
index 4cb88052..c4bbbc88 100644
--- a/plugins/forms/dialogs/select.js
+++ b/plugins/forms/dialogs/select.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.dialog.add( 'select', function( editor ) {
diff --git a/plugins/forms/dialogs/textarea.js b/plugins/forms/dialogs/textarea.js
index 3deb252f..5b14277c 100644
--- a/plugins/forms/dialogs/textarea.js
+++ b/plugins/forms/dialogs/textarea.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.dialog.add( 'textarea', function( editor ) {
diff --git a/plugins/forms/dialogs/textfield.js b/plugins/forms/dialogs/textfield.js
index 6c589ab0..cd498d15 100644
--- a/plugins/forms/dialogs/textfield.js
+++ b/plugins/forms/dialogs/textfield.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.dialog.add( 'textfield', function( editor ) {
diff --git a/plugins/forms/lang/af.js b/plugins/forms/lang/af.js
index e11a7f35..2e973638 100644
--- a/plugins/forms/lang/af.js
+++ b/plugins/forms/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'af', {
diff --git a/plugins/forms/lang/ar.js b/plugins/forms/lang/ar.js
index 32b35289..802983f1 100644
--- a/plugins/forms/lang/ar.js
+++ b/plugins/forms/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'ar', {
diff --git a/plugins/forms/lang/az.js b/plugins/forms/lang/az.js
index 9c0ebacc..4cb3c7eb 100644
--- a/plugins/forms/lang/az.js
+++ b/plugins/forms/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'az', {
diff --git a/plugins/forms/lang/bg.js b/plugins/forms/lang/bg.js
index b70c094f..b7235d70 100644
--- a/plugins/forms/lang/bg.js
+++ b/plugins/forms/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'bg', {
diff --git a/plugins/forms/lang/bn.js b/plugins/forms/lang/bn.js
index a88c68a9..29acd2d5 100644
--- a/plugins/forms/lang/bn.js
+++ b/plugins/forms/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'bn', {
diff --git a/plugins/forms/lang/bs.js b/plugins/forms/lang/bs.js
index 5002c6d9..00d6701d 100644
--- a/plugins/forms/lang/bs.js
+++ b/plugins/forms/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'bs', {
diff --git a/plugins/forms/lang/ca.js b/plugins/forms/lang/ca.js
index 859ab2fb..634764f3 100644
--- a/plugins/forms/lang/ca.js
+++ b/plugins/forms/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'ca', {
diff --git a/plugins/forms/lang/cs.js b/plugins/forms/lang/cs.js
index f079fdb3..214cce3c 100644
--- a/plugins/forms/lang/cs.js
+++ b/plugins/forms/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'cs', {
diff --git a/plugins/forms/lang/cy.js b/plugins/forms/lang/cy.js
index 2ca4d333..4df63b04 100644
--- a/plugins/forms/lang/cy.js
+++ b/plugins/forms/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'cy', {
diff --git a/plugins/forms/lang/da.js b/plugins/forms/lang/da.js
index 85d86f22..de851f1c 100644
--- a/plugins/forms/lang/da.js
+++ b/plugins/forms/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'da', {
diff --git a/plugins/forms/lang/de-ch.js b/plugins/forms/lang/de-ch.js
index 97fcaac9..52589072 100644
--- a/plugins/forms/lang/de-ch.js
+++ b/plugins/forms/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'de-ch', {
diff --git a/plugins/forms/lang/de.js b/plugins/forms/lang/de.js
index de360f3d..4e4cec21 100644
--- a/plugins/forms/lang/de.js
+++ b/plugins/forms/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'de', {
diff --git a/plugins/forms/lang/el.js b/plugins/forms/lang/el.js
index 323fecba..8dad068f 100644
--- a/plugins/forms/lang/el.js
+++ b/plugins/forms/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'el', {
diff --git a/plugins/forms/lang/en-au.js b/plugins/forms/lang/en-au.js
index 34416bc9..ef743688 100644
--- a/plugins/forms/lang/en-au.js
+++ b/plugins/forms/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'en-au', {
diff --git a/plugins/forms/lang/en-ca.js b/plugins/forms/lang/en-ca.js
index ca6d4781..4b7922d0 100644
--- a/plugins/forms/lang/en-ca.js
+++ b/plugins/forms/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'en-ca', {
diff --git a/plugins/forms/lang/en-gb.js b/plugins/forms/lang/en-gb.js
index 35cb02d5..29a929d4 100644
--- a/plugins/forms/lang/en-gb.js
+++ b/plugins/forms/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'en-gb', {
diff --git a/plugins/forms/lang/en.js b/plugins/forms/lang/en.js
index 4aa5487f..8a5eac07 100644
--- a/plugins/forms/lang/en.js
+++ b/plugins/forms/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'en', {
diff --git a/plugins/forms/lang/eo.js b/plugins/forms/lang/eo.js
index bb49e45e..d69766da 100644
--- a/plugins/forms/lang/eo.js
+++ b/plugins/forms/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'eo', {
diff --git a/plugins/forms/lang/es-mx.js b/plugins/forms/lang/es-mx.js
index 80540342..90c0b1c3 100644
--- a/plugins/forms/lang/es-mx.js
+++ b/plugins/forms/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'es-mx', {
diff --git a/plugins/forms/lang/es.js b/plugins/forms/lang/es.js
index ebe1e5ae..feb7ba81 100644
--- a/plugins/forms/lang/es.js
+++ b/plugins/forms/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'es', {
diff --git a/plugins/forms/lang/et.js b/plugins/forms/lang/et.js
index 747f68f0..9a709a68 100644
--- a/plugins/forms/lang/et.js
+++ b/plugins/forms/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'et', {
diff --git a/plugins/forms/lang/eu.js b/plugins/forms/lang/eu.js
index 00101e05..e1308f59 100644
--- a/plugins/forms/lang/eu.js
+++ b/plugins/forms/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'eu', {
diff --git a/plugins/forms/lang/fa.js b/plugins/forms/lang/fa.js
index b4276061..2106c09b 100644
--- a/plugins/forms/lang/fa.js
+++ b/plugins/forms/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'fa', {
diff --git a/plugins/forms/lang/fi.js b/plugins/forms/lang/fi.js
index acbeab2c..db9b070b 100644
--- a/plugins/forms/lang/fi.js
+++ b/plugins/forms/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'fi', {
diff --git a/plugins/forms/lang/fo.js b/plugins/forms/lang/fo.js
index 6972b510..22a2ba93 100644
--- a/plugins/forms/lang/fo.js
+++ b/plugins/forms/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'fo', {
diff --git a/plugins/forms/lang/fr-ca.js b/plugins/forms/lang/fr-ca.js
index 1fc4f918..82a5faaf 100644
--- a/plugins/forms/lang/fr-ca.js
+++ b/plugins/forms/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'fr-ca', {
diff --git a/plugins/forms/lang/fr.js b/plugins/forms/lang/fr.js
index f259a79d..41d90557 100644
--- a/plugins/forms/lang/fr.js
+++ b/plugins/forms/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'fr', {
diff --git a/plugins/forms/lang/gl.js b/plugins/forms/lang/gl.js
index 0bbb9bc9..6f3ee4e0 100644
--- a/plugins/forms/lang/gl.js
+++ b/plugins/forms/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'gl', {
diff --git a/plugins/forms/lang/gu.js b/plugins/forms/lang/gu.js
index c8676ca8..0bd8ca15 100644
--- a/plugins/forms/lang/gu.js
+++ b/plugins/forms/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'gu', {
diff --git a/plugins/forms/lang/he.js b/plugins/forms/lang/he.js
index 886b2dae..fa6a2b8b 100644
--- a/plugins/forms/lang/he.js
+++ b/plugins/forms/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'he', {
diff --git a/plugins/forms/lang/hi.js b/plugins/forms/lang/hi.js
index 57b08886..603bf3ec 100644
--- a/plugins/forms/lang/hi.js
+++ b/plugins/forms/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'hi', {
diff --git a/plugins/forms/lang/hr.js b/plugins/forms/lang/hr.js
index 1efd189e..a18d7f12 100644
--- a/plugins/forms/lang/hr.js
+++ b/plugins/forms/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'hr', {
diff --git a/plugins/forms/lang/hu.js b/plugins/forms/lang/hu.js
index f652c095..1c19c3ce 100644
--- a/plugins/forms/lang/hu.js
+++ b/plugins/forms/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'hu', {
diff --git a/plugins/forms/lang/id.js b/plugins/forms/lang/id.js
index 36bc190a..3a596d13 100644
--- a/plugins/forms/lang/id.js
+++ b/plugins/forms/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'id', {
diff --git a/plugins/forms/lang/is.js b/plugins/forms/lang/is.js
index 5fe266db..d1d45d0c 100644
--- a/plugins/forms/lang/is.js
+++ b/plugins/forms/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'is', {
diff --git a/plugins/forms/lang/it.js b/plugins/forms/lang/it.js
index 1a48cd5c..d9afdae1 100644
--- a/plugins/forms/lang/it.js
+++ b/plugins/forms/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'it', {
diff --git a/plugins/forms/lang/ja.js b/plugins/forms/lang/ja.js
index 01387539..b7341e0d 100644
--- a/plugins/forms/lang/ja.js
+++ b/plugins/forms/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'ja', {
diff --git a/plugins/forms/lang/ka.js b/plugins/forms/lang/ka.js
index 3175e6f9..4ca63cb0 100644
--- a/plugins/forms/lang/ka.js
+++ b/plugins/forms/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'ka', {
diff --git a/plugins/forms/lang/km.js b/plugins/forms/lang/km.js
index 8345c6e2..966f32a6 100644
--- a/plugins/forms/lang/km.js
+++ b/plugins/forms/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'km', {
diff --git a/plugins/forms/lang/ko.js b/plugins/forms/lang/ko.js
index 60c698da..8689124b 100644
--- a/plugins/forms/lang/ko.js
+++ b/plugins/forms/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'ko', {
diff --git a/plugins/forms/lang/ku.js b/plugins/forms/lang/ku.js
index 98ff0e78..fe00a962 100644
--- a/plugins/forms/lang/ku.js
+++ b/plugins/forms/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'ku', {
diff --git a/plugins/forms/lang/lt.js b/plugins/forms/lang/lt.js
index b3f79bbe..3bf0818e 100644
--- a/plugins/forms/lang/lt.js
+++ b/plugins/forms/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'lt', {
diff --git a/plugins/forms/lang/lv.js b/plugins/forms/lang/lv.js
index a3a1ce33..351ade13 100644
--- a/plugins/forms/lang/lv.js
+++ b/plugins/forms/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'lv', {
diff --git a/plugins/forms/lang/mk.js b/plugins/forms/lang/mk.js
index 888cfe9c..5aeeb987 100644
--- a/plugins/forms/lang/mk.js
+++ b/plugins/forms/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'mk', {
diff --git a/plugins/forms/lang/mn.js b/plugins/forms/lang/mn.js
index 33a54cac..40e082a1 100644
--- a/plugins/forms/lang/mn.js
+++ b/plugins/forms/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'mn', {
diff --git a/plugins/forms/lang/ms.js b/plugins/forms/lang/ms.js
index 37140fcd..3bf4481e 100644
--- a/plugins/forms/lang/ms.js
+++ b/plugins/forms/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'ms', {
diff --git a/plugins/forms/lang/nb.js b/plugins/forms/lang/nb.js
index e187ca06..17beaf22 100644
--- a/plugins/forms/lang/nb.js
+++ b/plugins/forms/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'nb', {
diff --git a/plugins/forms/lang/nl.js b/plugins/forms/lang/nl.js
index 359e0cf5..3f85c35e 100644
--- a/plugins/forms/lang/nl.js
+++ b/plugins/forms/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'nl', {
diff --git a/plugins/forms/lang/no.js b/plugins/forms/lang/no.js
index aa7ff040..80074ff5 100644
--- a/plugins/forms/lang/no.js
+++ b/plugins/forms/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'no', {
diff --git a/plugins/forms/lang/oc.js b/plugins/forms/lang/oc.js
index 6bcd7734..6afefe52 100644
--- a/plugins/forms/lang/oc.js
+++ b/plugins/forms/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'oc', {
diff --git a/plugins/forms/lang/pl.js b/plugins/forms/lang/pl.js
index 5c516477..7bce72b4 100644
--- a/plugins/forms/lang/pl.js
+++ b/plugins/forms/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'pl', {
diff --git a/plugins/forms/lang/pt-br.js b/plugins/forms/lang/pt-br.js
index ad77a11b..f94e2374 100644
--- a/plugins/forms/lang/pt-br.js
+++ b/plugins/forms/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'pt-br', {
diff --git a/plugins/forms/lang/pt.js b/plugins/forms/lang/pt.js
index 97b7f500..505b79a2 100644
--- a/plugins/forms/lang/pt.js
+++ b/plugins/forms/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'pt', {
diff --git a/plugins/forms/lang/ro.js b/plugins/forms/lang/ro.js
index 12bfc92d..35a03048 100644
--- a/plugins/forms/lang/ro.js
+++ b/plugins/forms/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'ro', {
diff --git a/plugins/forms/lang/ru.js b/plugins/forms/lang/ru.js
index a35fbfa7..0487c632 100644
--- a/plugins/forms/lang/ru.js
+++ b/plugins/forms/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'ru', {
diff --git a/plugins/forms/lang/si.js b/plugins/forms/lang/si.js
index e8111f26..d505c741 100644
--- a/plugins/forms/lang/si.js
+++ b/plugins/forms/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'si', {
diff --git a/plugins/forms/lang/sk.js b/plugins/forms/lang/sk.js
index f053bc18..4870f493 100644
--- a/plugins/forms/lang/sk.js
+++ b/plugins/forms/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'sk', {
diff --git a/plugins/forms/lang/sl.js b/plugins/forms/lang/sl.js
index 3d170c4f..132b4e1d 100644
--- a/plugins/forms/lang/sl.js
+++ b/plugins/forms/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'sl', {
diff --git a/plugins/forms/lang/sq.js b/plugins/forms/lang/sq.js
index 7d96d6e7..3186ade0 100644
--- a/plugins/forms/lang/sq.js
+++ b/plugins/forms/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'sq', {
diff --git a/plugins/forms/lang/sr-latn.js b/plugins/forms/lang/sr-latn.js
index b9880d20..49972f44 100644
--- a/plugins/forms/lang/sr-latn.js
+++ b/plugins/forms/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'sr-latn', {
diff --git a/plugins/forms/lang/sr.js b/plugins/forms/lang/sr.js
index 65da831d..9b9f62a7 100644
--- a/plugins/forms/lang/sr.js
+++ b/plugins/forms/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'sr', {
diff --git a/plugins/forms/lang/sv.js b/plugins/forms/lang/sv.js
index d9b804b3..5284efe0 100644
--- a/plugins/forms/lang/sv.js
+++ b/plugins/forms/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'sv', {
diff --git a/plugins/forms/lang/th.js b/plugins/forms/lang/th.js
index 410853ce..c173ab12 100644
--- a/plugins/forms/lang/th.js
+++ b/plugins/forms/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'th', {
diff --git a/plugins/forms/lang/tr.js b/plugins/forms/lang/tr.js
index 5368db6b..f3c75b6e 100644
--- a/plugins/forms/lang/tr.js
+++ b/plugins/forms/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'tr', {
diff --git a/plugins/forms/lang/tt.js b/plugins/forms/lang/tt.js
index e2be938e..5eea2306 100644
--- a/plugins/forms/lang/tt.js
+++ b/plugins/forms/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'tt', {
diff --git a/plugins/forms/lang/ug.js b/plugins/forms/lang/ug.js
index 6ee1e859..8f6d04d3 100644
--- a/plugins/forms/lang/ug.js
+++ b/plugins/forms/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'ug', {
diff --git a/plugins/forms/lang/uk.js b/plugins/forms/lang/uk.js
index c86a19d0..6dfb5109 100644
--- a/plugins/forms/lang/uk.js
+++ b/plugins/forms/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'uk', {
diff --git a/plugins/forms/lang/vi.js b/plugins/forms/lang/vi.js
index 66d8ce53..eca41b87 100644
--- a/plugins/forms/lang/vi.js
+++ b/plugins/forms/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'vi', {
diff --git a/plugins/forms/lang/zh-cn.js b/plugins/forms/lang/zh-cn.js
index 099b748e..035c0863 100644
--- a/plugins/forms/lang/zh-cn.js
+++ b/plugins/forms/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'zh-cn', {
diff --git a/plugins/forms/lang/zh.js b/plugins/forms/lang/zh.js
index 79433e69..9d09bd78 100644
--- a/plugins/forms/lang/zh.js
+++ b/plugins/forms/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'forms', 'zh', {
diff --git a/plugins/forms/plugin.js b/plugins/forms/plugin.js
index f7d5787c..8a88eb48 100644
--- a/plugins/forms/plugin.js
+++ b/plugins/forms/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/horizontalrule/lang/af.js b/plugins/horizontalrule/lang/af.js
index ac19e636..29c5457e 100644
--- a/plugins/horizontalrule/lang/af.js
+++ b/plugins/horizontalrule/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'af', {
diff --git a/plugins/horizontalrule/lang/ar.js b/plugins/horizontalrule/lang/ar.js
index 951c0ce8..3c2cd463 100644
--- a/plugins/horizontalrule/lang/ar.js
+++ b/plugins/horizontalrule/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'ar', {
diff --git a/plugins/horizontalrule/lang/az.js b/plugins/horizontalrule/lang/az.js
index ca6033dc..1175183f 100644
--- a/plugins/horizontalrule/lang/az.js
+++ b/plugins/horizontalrule/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'az', {
diff --git a/plugins/horizontalrule/lang/bg.js b/plugins/horizontalrule/lang/bg.js
index c5975ecf..64f470ac 100644
--- a/plugins/horizontalrule/lang/bg.js
+++ b/plugins/horizontalrule/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'bg', {
diff --git a/plugins/horizontalrule/lang/bn.js b/plugins/horizontalrule/lang/bn.js
index 711d91be..0ac8130b 100644
--- a/plugins/horizontalrule/lang/bn.js
+++ b/plugins/horizontalrule/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'bn', {
diff --git a/plugins/horizontalrule/lang/bs.js b/plugins/horizontalrule/lang/bs.js
index 9e3283fd..4234ac56 100644
--- a/plugins/horizontalrule/lang/bs.js
+++ b/plugins/horizontalrule/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'bs', {
diff --git a/plugins/horizontalrule/lang/ca.js b/plugins/horizontalrule/lang/ca.js
index 4709197d..91b73299 100644
--- a/plugins/horizontalrule/lang/ca.js
+++ b/plugins/horizontalrule/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'ca', {
diff --git a/plugins/horizontalrule/lang/cs.js b/plugins/horizontalrule/lang/cs.js
index 0c098edc..76b0937e 100644
--- a/plugins/horizontalrule/lang/cs.js
+++ b/plugins/horizontalrule/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'cs', {
diff --git a/plugins/horizontalrule/lang/cy.js b/plugins/horizontalrule/lang/cy.js
index 874a6c82..c586c304 100644
--- a/plugins/horizontalrule/lang/cy.js
+++ b/plugins/horizontalrule/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'cy', {
diff --git a/plugins/horizontalrule/lang/da.js b/plugins/horizontalrule/lang/da.js
index b434c85c..877c9fe1 100644
--- a/plugins/horizontalrule/lang/da.js
+++ b/plugins/horizontalrule/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'da', {
diff --git a/plugins/horizontalrule/lang/de-ch.js b/plugins/horizontalrule/lang/de-ch.js
index 2ca0d5e9..25252ae1 100644
--- a/plugins/horizontalrule/lang/de-ch.js
+++ b/plugins/horizontalrule/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'de-ch', {
diff --git a/plugins/horizontalrule/lang/de.js b/plugins/horizontalrule/lang/de.js
index 0b6849be..250b6ff5 100644
--- a/plugins/horizontalrule/lang/de.js
+++ b/plugins/horizontalrule/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'de', {
diff --git a/plugins/horizontalrule/lang/el.js b/plugins/horizontalrule/lang/el.js
index a91f7a9d..1cbc8972 100644
--- a/plugins/horizontalrule/lang/el.js
+++ b/plugins/horizontalrule/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'el', {
diff --git a/plugins/horizontalrule/lang/en-au.js b/plugins/horizontalrule/lang/en-au.js
index d49aed31..5bc72e88 100644
--- a/plugins/horizontalrule/lang/en-au.js
+++ b/plugins/horizontalrule/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'en-au', {
diff --git a/plugins/horizontalrule/lang/en-ca.js b/plugins/horizontalrule/lang/en-ca.js
index 90457390..f08948ec 100644
--- a/plugins/horizontalrule/lang/en-ca.js
+++ b/plugins/horizontalrule/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'en-ca', {
diff --git a/plugins/horizontalrule/lang/en-gb.js b/plugins/horizontalrule/lang/en-gb.js
index 8b7086b4..2ea9087f 100644
--- a/plugins/horizontalrule/lang/en-gb.js
+++ b/plugins/horizontalrule/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'en-gb', {
diff --git a/plugins/horizontalrule/lang/en.js b/plugins/horizontalrule/lang/en.js
index bc8a6205..ff038bee 100644
--- a/plugins/horizontalrule/lang/en.js
+++ b/plugins/horizontalrule/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'en', {
diff --git a/plugins/horizontalrule/lang/eo.js b/plugins/horizontalrule/lang/eo.js
index 4dc67848..dc35cce1 100644
--- a/plugins/horizontalrule/lang/eo.js
+++ b/plugins/horizontalrule/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'eo', {
diff --git a/plugins/horizontalrule/lang/es-mx.js b/plugins/horizontalrule/lang/es-mx.js
index 0902f750..e4bf23fd 100644
--- a/plugins/horizontalrule/lang/es-mx.js
+++ b/plugins/horizontalrule/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'es-mx', {
diff --git a/plugins/horizontalrule/lang/es.js b/plugins/horizontalrule/lang/es.js
index 125dc665..c5873fcc 100644
--- a/plugins/horizontalrule/lang/es.js
+++ b/plugins/horizontalrule/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'es', {
diff --git a/plugins/horizontalrule/lang/et.js b/plugins/horizontalrule/lang/et.js
index 09284a93..1c75ca5e 100644
--- a/plugins/horizontalrule/lang/et.js
+++ b/plugins/horizontalrule/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'et', {
diff --git a/plugins/horizontalrule/lang/eu.js b/plugins/horizontalrule/lang/eu.js
index 61ad4c4a..80d8fa72 100644
--- a/plugins/horizontalrule/lang/eu.js
+++ b/plugins/horizontalrule/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'eu', {
diff --git a/plugins/horizontalrule/lang/fa.js b/plugins/horizontalrule/lang/fa.js
index 15a3ea63..f0239560 100644
--- a/plugins/horizontalrule/lang/fa.js
+++ b/plugins/horizontalrule/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'fa', {
diff --git a/plugins/horizontalrule/lang/fi.js b/plugins/horizontalrule/lang/fi.js
index 587e20a0..c8ee4922 100644
--- a/plugins/horizontalrule/lang/fi.js
+++ b/plugins/horizontalrule/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'fi', {
diff --git a/plugins/horizontalrule/lang/fo.js b/plugins/horizontalrule/lang/fo.js
index 4e7ddaac..4685020e 100644
--- a/plugins/horizontalrule/lang/fo.js
+++ b/plugins/horizontalrule/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'fo', {
diff --git a/plugins/horizontalrule/lang/fr-ca.js b/plugins/horizontalrule/lang/fr-ca.js
index 6aacef44..f8108e7f 100644
--- a/plugins/horizontalrule/lang/fr-ca.js
+++ b/plugins/horizontalrule/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'fr-ca', {
diff --git a/plugins/horizontalrule/lang/fr.js b/plugins/horizontalrule/lang/fr.js
index e46bcdc0..f510cea4 100644
--- a/plugins/horizontalrule/lang/fr.js
+++ b/plugins/horizontalrule/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'fr', {
diff --git a/plugins/horizontalrule/lang/gl.js b/plugins/horizontalrule/lang/gl.js
index 6aeeb759..21f4694c 100644
--- a/plugins/horizontalrule/lang/gl.js
+++ b/plugins/horizontalrule/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'gl', {
diff --git a/plugins/horizontalrule/lang/gu.js b/plugins/horizontalrule/lang/gu.js
index 5770f410..511914ba 100644
--- a/plugins/horizontalrule/lang/gu.js
+++ b/plugins/horizontalrule/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'gu', {
diff --git a/plugins/horizontalrule/lang/he.js b/plugins/horizontalrule/lang/he.js
index 328fea0b..fb8905b0 100644
--- a/plugins/horizontalrule/lang/he.js
+++ b/plugins/horizontalrule/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'he', {
diff --git a/plugins/horizontalrule/lang/hi.js b/plugins/horizontalrule/lang/hi.js
index 122aab80..dc21b1ea 100644
--- a/plugins/horizontalrule/lang/hi.js
+++ b/plugins/horizontalrule/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'hi', {
diff --git a/plugins/horizontalrule/lang/hr.js b/plugins/horizontalrule/lang/hr.js
index 74ab44b0..bf488608 100644
--- a/plugins/horizontalrule/lang/hr.js
+++ b/plugins/horizontalrule/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'hr', {
diff --git a/plugins/horizontalrule/lang/hu.js b/plugins/horizontalrule/lang/hu.js
index e4fe84e4..fdd58ea8 100644
--- a/plugins/horizontalrule/lang/hu.js
+++ b/plugins/horizontalrule/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'hu', {
diff --git a/plugins/horizontalrule/lang/id.js b/plugins/horizontalrule/lang/id.js
index b2074e69..a886e56d 100644
--- a/plugins/horizontalrule/lang/id.js
+++ b/plugins/horizontalrule/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'id', {
diff --git a/plugins/horizontalrule/lang/is.js b/plugins/horizontalrule/lang/is.js
index c249b13d..fbea1f39 100644
--- a/plugins/horizontalrule/lang/is.js
+++ b/plugins/horizontalrule/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'is', {
diff --git a/plugins/horizontalrule/lang/it.js b/plugins/horizontalrule/lang/it.js
index f6f68c4b..ff357662 100644
--- a/plugins/horizontalrule/lang/it.js
+++ b/plugins/horizontalrule/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'it', {
diff --git a/plugins/horizontalrule/lang/ja.js b/plugins/horizontalrule/lang/ja.js
index 6a962115..4390cf65 100644
--- a/plugins/horizontalrule/lang/ja.js
+++ b/plugins/horizontalrule/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'ja', {
diff --git a/plugins/horizontalrule/lang/ka.js b/plugins/horizontalrule/lang/ka.js
index c1ef68cd..95e37eae 100644
--- a/plugins/horizontalrule/lang/ka.js
+++ b/plugins/horizontalrule/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'ka', {
diff --git a/plugins/horizontalrule/lang/km.js b/plugins/horizontalrule/lang/km.js
index 7af42274..b33003be 100644
--- a/plugins/horizontalrule/lang/km.js
+++ b/plugins/horizontalrule/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'km', {
diff --git a/plugins/horizontalrule/lang/ko.js b/plugins/horizontalrule/lang/ko.js
index 356b6766..96057547 100644
--- a/plugins/horizontalrule/lang/ko.js
+++ b/plugins/horizontalrule/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'ko', {
diff --git a/plugins/horizontalrule/lang/ku.js b/plugins/horizontalrule/lang/ku.js
index e0331a3f..af4737ee 100644
--- a/plugins/horizontalrule/lang/ku.js
+++ b/plugins/horizontalrule/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'ku', {
diff --git a/plugins/horizontalrule/lang/lt.js b/plugins/horizontalrule/lang/lt.js
index a5131734..5fd84256 100644
--- a/plugins/horizontalrule/lang/lt.js
+++ b/plugins/horizontalrule/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'lt', {
diff --git a/plugins/horizontalrule/lang/lv.js b/plugins/horizontalrule/lang/lv.js
index 5d9fef5b..b7220f50 100644
--- a/plugins/horizontalrule/lang/lv.js
+++ b/plugins/horizontalrule/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'lv', {
diff --git a/plugins/horizontalrule/lang/mk.js b/plugins/horizontalrule/lang/mk.js
index ce151bc5..50f77a56 100644
--- a/plugins/horizontalrule/lang/mk.js
+++ b/plugins/horizontalrule/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'mk', {
diff --git a/plugins/horizontalrule/lang/mn.js b/plugins/horizontalrule/lang/mn.js
index a6deeb72..6288bd56 100644
--- a/plugins/horizontalrule/lang/mn.js
+++ b/plugins/horizontalrule/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'mn', {
diff --git a/plugins/horizontalrule/lang/ms.js b/plugins/horizontalrule/lang/ms.js
index f4f909e3..04391778 100644
--- a/plugins/horizontalrule/lang/ms.js
+++ b/plugins/horizontalrule/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'ms', {
diff --git a/plugins/horizontalrule/lang/nb.js b/plugins/horizontalrule/lang/nb.js
index 68351fb8..435f8660 100644
--- a/plugins/horizontalrule/lang/nb.js
+++ b/plugins/horizontalrule/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'nb', {
diff --git a/plugins/horizontalrule/lang/nl.js b/plugins/horizontalrule/lang/nl.js
index a18d9a73..423ece5d 100644
--- a/plugins/horizontalrule/lang/nl.js
+++ b/plugins/horizontalrule/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'nl', {
diff --git a/plugins/horizontalrule/lang/no.js b/plugins/horizontalrule/lang/no.js
index 0dc291cd..f3a133b8 100644
--- a/plugins/horizontalrule/lang/no.js
+++ b/plugins/horizontalrule/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'no', {
diff --git a/plugins/horizontalrule/lang/oc.js b/plugins/horizontalrule/lang/oc.js
index 4ceb76ca..5a90dac4 100644
--- a/plugins/horizontalrule/lang/oc.js
+++ b/plugins/horizontalrule/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'oc', {
diff --git a/plugins/horizontalrule/lang/pl.js b/plugins/horizontalrule/lang/pl.js
index 4c5c16ee..37634fa5 100644
--- a/plugins/horizontalrule/lang/pl.js
+++ b/plugins/horizontalrule/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'pl', {
diff --git a/plugins/horizontalrule/lang/pt-br.js b/plugins/horizontalrule/lang/pt-br.js
index b7f0a577..c46880a7 100644
--- a/plugins/horizontalrule/lang/pt-br.js
+++ b/plugins/horizontalrule/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'pt-br', {
diff --git a/plugins/horizontalrule/lang/pt.js b/plugins/horizontalrule/lang/pt.js
index 0802322e..c636df0f 100644
--- a/plugins/horizontalrule/lang/pt.js
+++ b/plugins/horizontalrule/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'pt', {
diff --git a/plugins/horizontalrule/lang/ro.js b/plugins/horizontalrule/lang/ro.js
index e9a7d2f8..e1422a41 100644
--- a/plugins/horizontalrule/lang/ro.js
+++ b/plugins/horizontalrule/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'ro', {
diff --git a/plugins/horizontalrule/lang/ru.js b/plugins/horizontalrule/lang/ru.js
index 96adcb9d..7d15649e 100644
--- a/plugins/horizontalrule/lang/ru.js
+++ b/plugins/horizontalrule/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'ru', {
diff --git a/plugins/horizontalrule/lang/si.js b/plugins/horizontalrule/lang/si.js
index fb260d9e..df2176d1 100644
--- a/plugins/horizontalrule/lang/si.js
+++ b/plugins/horizontalrule/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'si', {
diff --git a/plugins/horizontalrule/lang/sk.js b/plugins/horizontalrule/lang/sk.js
index bfdf852a..408b1433 100644
--- a/plugins/horizontalrule/lang/sk.js
+++ b/plugins/horizontalrule/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'sk', {
diff --git a/plugins/horizontalrule/lang/sl.js b/plugins/horizontalrule/lang/sl.js
index 3bbda7d8..87cd69b8 100644
--- a/plugins/horizontalrule/lang/sl.js
+++ b/plugins/horizontalrule/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'sl', {
diff --git a/plugins/horizontalrule/lang/sq.js b/plugins/horizontalrule/lang/sq.js
index 340120a8..3785b6a4 100644
--- a/plugins/horizontalrule/lang/sq.js
+++ b/plugins/horizontalrule/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'sq', {
diff --git a/plugins/horizontalrule/lang/sr-latn.js b/plugins/horizontalrule/lang/sr-latn.js
index 2e4f5c7f..0d2d938c 100644
--- a/plugins/horizontalrule/lang/sr-latn.js
+++ b/plugins/horizontalrule/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'sr-latn', {
diff --git a/plugins/horizontalrule/lang/sr.js b/plugins/horizontalrule/lang/sr.js
index 10981c74..d068ddd0 100644
--- a/plugins/horizontalrule/lang/sr.js
+++ b/plugins/horizontalrule/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'sr', {
diff --git a/plugins/horizontalrule/lang/sv.js b/plugins/horizontalrule/lang/sv.js
index a51099ca..dcbca1b4 100644
--- a/plugins/horizontalrule/lang/sv.js
+++ b/plugins/horizontalrule/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'sv', {
diff --git a/plugins/horizontalrule/lang/th.js b/plugins/horizontalrule/lang/th.js
index edd10b63..4f19f939 100644
--- a/plugins/horizontalrule/lang/th.js
+++ b/plugins/horizontalrule/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'th', {
diff --git a/plugins/horizontalrule/lang/tr.js b/plugins/horizontalrule/lang/tr.js
index f65ea501..998c5bb9 100644
--- a/plugins/horizontalrule/lang/tr.js
+++ b/plugins/horizontalrule/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'tr', {
diff --git a/plugins/horizontalrule/lang/tt.js b/plugins/horizontalrule/lang/tt.js
index 2da6090f..f331919e 100644
--- a/plugins/horizontalrule/lang/tt.js
+++ b/plugins/horizontalrule/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'tt', {
diff --git a/plugins/horizontalrule/lang/ug.js b/plugins/horizontalrule/lang/ug.js
index 210427e9..f65a8581 100644
--- a/plugins/horizontalrule/lang/ug.js
+++ b/plugins/horizontalrule/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'ug', {
diff --git a/plugins/horizontalrule/lang/uk.js b/plugins/horizontalrule/lang/uk.js
index 2acdd1ce..0632d20a 100644
--- a/plugins/horizontalrule/lang/uk.js
+++ b/plugins/horizontalrule/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'uk', {
diff --git a/plugins/horizontalrule/lang/vi.js b/plugins/horizontalrule/lang/vi.js
index 8cdb888c..cfe72dcd 100644
--- a/plugins/horizontalrule/lang/vi.js
+++ b/plugins/horizontalrule/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'vi', {
diff --git a/plugins/horizontalrule/lang/zh-cn.js b/plugins/horizontalrule/lang/zh-cn.js
index f14826fe..58ed0c35 100644
--- a/plugins/horizontalrule/lang/zh-cn.js
+++ b/plugins/horizontalrule/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'zh-cn', {
diff --git a/plugins/horizontalrule/lang/zh.js b/plugins/horizontalrule/lang/zh.js
index 8e6d1b66..2372de61 100644
--- a/plugins/horizontalrule/lang/zh.js
+++ b/plugins/horizontalrule/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'horizontalrule', 'zh', {
diff --git a/plugins/horizontalrule/plugin.js b/plugins/horizontalrule/plugin.js
index f44a176f..cf6f1cc9 100644
--- a/plugins/horizontalrule/plugin.js
+++ b/plugins/horizontalrule/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/htmlwriter/plugin.js b/plugins/htmlwriter/plugin.js
index 6003f794..05327423 100644
--- a/plugins/htmlwriter/plugin.js
+++ b/plugins/htmlwriter/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/iframe/dialogs/iframe.js b/plugins/iframe/dialogs/iframe.js
index 6ae9e79e..871f3f55 100644
--- a/plugins/iframe/dialogs/iframe.js
+++ b/plugins/iframe/dialogs/iframe.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/iframe/lang/af.js b/plugins/iframe/lang/af.js
index f957f2d3..8e922961 100644
--- a/plugins/iframe/lang/af.js
+++ b/plugins/iframe/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'af', {
diff --git a/plugins/iframe/lang/ar.js b/plugins/iframe/lang/ar.js
index e312bb91..f6a712d7 100644
--- a/plugins/iframe/lang/ar.js
+++ b/plugins/iframe/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'ar', {
diff --git a/plugins/iframe/lang/az.js b/plugins/iframe/lang/az.js
index e194b2a4..5badc1c6 100644
--- a/plugins/iframe/lang/az.js
+++ b/plugins/iframe/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'az', {
diff --git a/plugins/iframe/lang/bg.js b/plugins/iframe/lang/bg.js
index f7225a22..3adf14bb 100644
--- a/plugins/iframe/lang/bg.js
+++ b/plugins/iframe/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'bg', {
diff --git a/plugins/iframe/lang/bn.js b/plugins/iframe/lang/bn.js
index 19ebc8da..b5ba0280 100644
--- a/plugins/iframe/lang/bn.js
+++ b/plugins/iframe/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'bn', {
diff --git a/plugins/iframe/lang/bs.js b/plugins/iframe/lang/bs.js
index 0920e90d..8e5a30a5 100644
--- a/plugins/iframe/lang/bs.js
+++ b/plugins/iframe/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'bs', {
diff --git a/plugins/iframe/lang/ca.js b/plugins/iframe/lang/ca.js
index 4f0fd351..2cff270f 100644
--- a/plugins/iframe/lang/ca.js
+++ b/plugins/iframe/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'ca', {
diff --git a/plugins/iframe/lang/cs.js b/plugins/iframe/lang/cs.js
index 7fc0d12b..f7ec265e 100644
--- a/plugins/iframe/lang/cs.js
+++ b/plugins/iframe/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'cs', {
diff --git a/plugins/iframe/lang/cy.js b/plugins/iframe/lang/cy.js
index 04a3d6ca..e949e2d7 100644
--- a/plugins/iframe/lang/cy.js
+++ b/plugins/iframe/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'cy', {
diff --git a/plugins/iframe/lang/da.js b/plugins/iframe/lang/da.js
index f7b8a70d..a256852d 100644
--- a/plugins/iframe/lang/da.js
+++ b/plugins/iframe/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'da', {
diff --git a/plugins/iframe/lang/de-ch.js b/plugins/iframe/lang/de-ch.js
index 827443bf..71b419dd 100644
--- a/plugins/iframe/lang/de-ch.js
+++ b/plugins/iframe/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'de-ch', {
diff --git a/plugins/iframe/lang/de.js b/plugins/iframe/lang/de.js
index 56dd5b4a..d68171a8 100644
--- a/plugins/iframe/lang/de.js
+++ b/plugins/iframe/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'de', {
diff --git a/plugins/iframe/lang/el.js b/plugins/iframe/lang/el.js
index f516946c..1123f632 100644
--- a/plugins/iframe/lang/el.js
+++ b/plugins/iframe/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'el', {
diff --git a/plugins/iframe/lang/en-au.js b/plugins/iframe/lang/en-au.js
index ec92acff..4b55a3ad 100644
--- a/plugins/iframe/lang/en-au.js
+++ b/plugins/iframe/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'en-au', {
diff --git a/plugins/iframe/lang/en-ca.js b/plugins/iframe/lang/en-ca.js
index e3893307..d3cdbeed 100644
--- a/plugins/iframe/lang/en-ca.js
+++ b/plugins/iframe/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'en-ca', {
diff --git a/plugins/iframe/lang/en-gb.js b/plugins/iframe/lang/en-gb.js
index 063ab858..9e5b19fd 100644
--- a/plugins/iframe/lang/en-gb.js
+++ b/plugins/iframe/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'en-gb', {
diff --git a/plugins/iframe/lang/en.js b/plugins/iframe/lang/en.js
index 00b5efd5..de094dd7 100644
--- a/plugins/iframe/lang/en.js
+++ b/plugins/iframe/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'en', {
diff --git a/plugins/iframe/lang/eo.js b/plugins/iframe/lang/eo.js
index e71f8edf..534caa9f 100644
--- a/plugins/iframe/lang/eo.js
+++ b/plugins/iframe/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'eo', {
diff --git a/plugins/iframe/lang/es-mx.js b/plugins/iframe/lang/es-mx.js
index e4bde4aa..26f0274d 100644
--- a/plugins/iframe/lang/es-mx.js
+++ b/plugins/iframe/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'es-mx', {
diff --git a/plugins/iframe/lang/es.js b/plugins/iframe/lang/es.js
index 24fa3c53..3f829aa0 100644
--- a/plugins/iframe/lang/es.js
+++ b/plugins/iframe/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'es', {
diff --git a/plugins/iframe/lang/et.js b/plugins/iframe/lang/et.js
index 8876a1bc..efa89732 100644
--- a/plugins/iframe/lang/et.js
+++ b/plugins/iframe/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'et', {
diff --git a/plugins/iframe/lang/eu.js b/plugins/iframe/lang/eu.js
index 05d379f7..55eccec1 100644
--- a/plugins/iframe/lang/eu.js
+++ b/plugins/iframe/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'eu', {
diff --git a/plugins/iframe/lang/fa.js b/plugins/iframe/lang/fa.js
index d0992e04..dafc3d97 100644
--- a/plugins/iframe/lang/fa.js
+++ b/plugins/iframe/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'fa', {
diff --git a/plugins/iframe/lang/fi.js b/plugins/iframe/lang/fi.js
index 195f8fe4..5f73598b 100644
--- a/plugins/iframe/lang/fi.js
+++ b/plugins/iframe/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'fi', {
diff --git a/plugins/iframe/lang/fo.js b/plugins/iframe/lang/fo.js
index 12e51f1d..56ca7ed5 100644
--- a/plugins/iframe/lang/fo.js
+++ b/plugins/iframe/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'fo', {
diff --git a/plugins/iframe/lang/fr-ca.js b/plugins/iframe/lang/fr-ca.js
index fd75f5c4..6b62f5f0 100644
--- a/plugins/iframe/lang/fr-ca.js
+++ b/plugins/iframe/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'fr-ca', {
diff --git a/plugins/iframe/lang/fr.js b/plugins/iframe/lang/fr.js
index c32c05ed..eefbe781 100644
--- a/plugins/iframe/lang/fr.js
+++ b/plugins/iframe/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'fr', {
diff --git a/plugins/iframe/lang/gl.js b/plugins/iframe/lang/gl.js
index c0481c03..f5d61e3e 100644
--- a/plugins/iframe/lang/gl.js
+++ b/plugins/iframe/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'gl', {
diff --git a/plugins/iframe/lang/gu.js b/plugins/iframe/lang/gu.js
index 9cd604e8..c8811022 100644
--- a/plugins/iframe/lang/gu.js
+++ b/plugins/iframe/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'gu', {
diff --git a/plugins/iframe/lang/he.js b/plugins/iframe/lang/he.js
index 7d4ea4c9..82bfb86a 100644
--- a/plugins/iframe/lang/he.js
+++ b/plugins/iframe/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'he', {
diff --git a/plugins/iframe/lang/hi.js b/plugins/iframe/lang/hi.js
index 054d0dee..63b8081d 100644
--- a/plugins/iframe/lang/hi.js
+++ b/plugins/iframe/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'hi', {
diff --git a/plugins/iframe/lang/hr.js b/plugins/iframe/lang/hr.js
index 50411feb..5055a1b1 100644
--- a/plugins/iframe/lang/hr.js
+++ b/plugins/iframe/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'hr', {
diff --git a/plugins/iframe/lang/hu.js b/plugins/iframe/lang/hu.js
index e0f41490..030909eb 100644
--- a/plugins/iframe/lang/hu.js
+++ b/plugins/iframe/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'hu', {
diff --git a/plugins/iframe/lang/id.js b/plugins/iframe/lang/id.js
index 8a33bc80..ff589b21 100644
--- a/plugins/iframe/lang/id.js
+++ b/plugins/iframe/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'id', {
diff --git a/plugins/iframe/lang/is.js b/plugins/iframe/lang/is.js
index a774b2cc..cf0aae56 100644
--- a/plugins/iframe/lang/is.js
+++ b/plugins/iframe/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'is', {
diff --git a/plugins/iframe/lang/it.js b/plugins/iframe/lang/it.js
index f780c537..e10231d4 100644
--- a/plugins/iframe/lang/it.js
+++ b/plugins/iframe/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'it', {
diff --git a/plugins/iframe/lang/ja.js b/plugins/iframe/lang/ja.js
index f8373163..fe07141b 100644
--- a/plugins/iframe/lang/ja.js
+++ b/plugins/iframe/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'ja', {
diff --git a/plugins/iframe/lang/ka.js b/plugins/iframe/lang/ka.js
index aa79fc40..6d29f9f1 100644
--- a/plugins/iframe/lang/ka.js
+++ b/plugins/iframe/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'ka', {
diff --git a/plugins/iframe/lang/km.js b/plugins/iframe/lang/km.js
index 7fde0a24..623dab5d 100644
--- a/plugins/iframe/lang/km.js
+++ b/plugins/iframe/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'km', {
diff --git a/plugins/iframe/lang/ko.js b/plugins/iframe/lang/ko.js
index 637a21b0..d8de11ae 100644
--- a/plugins/iframe/lang/ko.js
+++ b/plugins/iframe/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'ko', {
diff --git a/plugins/iframe/lang/ku.js b/plugins/iframe/lang/ku.js
index 6947f5d6..2b4f393d 100644
--- a/plugins/iframe/lang/ku.js
+++ b/plugins/iframe/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'ku', {
diff --git a/plugins/iframe/lang/lt.js b/plugins/iframe/lang/lt.js
index 5b47b14d..9f81712f 100644
--- a/plugins/iframe/lang/lt.js
+++ b/plugins/iframe/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'lt', {
diff --git a/plugins/iframe/lang/lv.js b/plugins/iframe/lang/lv.js
index 67f7c7ed..223be3cb 100644
--- a/plugins/iframe/lang/lv.js
+++ b/plugins/iframe/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'lv', {
diff --git a/plugins/iframe/lang/mk.js b/plugins/iframe/lang/mk.js
index 1e5f0fae..dca22206 100644
--- a/plugins/iframe/lang/mk.js
+++ b/plugins/iframe/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'mk', {
diff --git a/plugins/iframe/lang/mn.js b/plugins/iframe/lang/mn.js
index ab953081..c6744022 100644
--- a/plugins/iframe/lang/mn.js
+++ b/plugins/iframe/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'mn', {
diff --git a/plugins/iframe/lang/ms.js b/plugins/iframe/lang/ms.js
index 05147501..00c6c3c6 100644
--- a/plugins/iframe/lang/ms.js
+++ b/plugins/iframe/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'ms', {
diff --git a/plugins/iframe/lang/nb.js b/plugins/iframe/lang/nb.js
index 56a6d046..0038e502 100644
--- a/plugins/iframe/lang/nb.js
+++ b/plugins/iframe/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'nb', {
diff --git a/plugins/iframe/lang/nl.js b/plugins/iframe/lang/nl.js
index 6f892372..a76ce88b 100644
--- a/plugins/iframe/lang/nl.js
+++ b/plugins/iframe/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'nl', {
diff --git a/plugins/iframe/lang/no.js b/plugins/iframe/lang/no.js
index f53b1810..8c5e5c38 100644
--- a/plugins/iframe/lang/no.js
+++ b/plugins/iframe/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'no', {
diff --git a/plugins/iframe/lang/oc.js b/plugins/iframe/lang/oc.js
index 3561a25b..54a322d8 100644
--- a/plugins/iframe/lang/oc.js
+++ b/plugins/iframe/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'oc', {
diff --git a/plugins/iframe/lang/pl.js b/plugins/iframe/lang/pl.js
index 056754ac..c2874e8f 100644
--- a/plugins/iframe/lang/pl.js
+++ b/plugins/iframe/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'pl', {
diff --git a/plugins/iframe/lang/pt-br.js b/plugins/iframe/lang/pt-br.js
index 94033b80..5ba131e3 100644
--- a/plugins/iframe/lang/pt-br.js
+++ b/plugins/iframe/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'pt-br', {
@@ -8,5 +8,5 @@ CKEDITOR.plugins.setLang( 'iframe', 'pt-br', {
 	scrolling: 'Abilita scrollbars',
 	title: 'Propriedade do IFrame',
 	toolbar: 'IFrame',
-	tabindex: 'Remove from tabindex' // MISSING
+	tabindex: 'Remover da tabulação'
 } );
diff --git a/plugins/iframe/lang/pt.js b/plugins/iframe/lang/pt.js
index e70fc9ea..78f74968 100644
--- a/plugins/iframe/lang/pt.js
+++ b/plugins/iframe/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'pt', {
diff --git a/plugins/iframe/lang/ro.js b/plugins/iframe/lang/ro.js
index d64186e8..ea9a6a8e 100644
--- a/plugins/iframe/lang/ro.js
+++ b/plugins/iframe/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'ro', {
diff --git a/plugins/iframe/lang/ru.js b/plugins/iframe/lang/ru.js
index 74d0beac..6e44ed2d 100644
--- a/plugins/iframe/lang/ru.js
+++ b/plugins/iframe/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'ru', {
diff --git a/plugins/iframe/lang/si.js b/plugins/iframe/lang/si.js
index b16d1b36..df6e38cc 100644
--- a/plugins/iframe/lang/si.js
+++ b/plugins/iframe/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'si', {
diff --git a/plugins/iframe/lang/sk.js b/plugins/iframe/lang/sk.js
index e1d1bd64..d342388d 100644
--- a/plugins/iframe/lang/sk.js
+++ b/plugins/iframe/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'sk', {
diff --git a/plugins/iframe/lang/sl.js b/plugins/iframe/lang/sl.js
index 551ccef5..c3b220e2 100644
--- a/plugins/iframe/lang/sl.js
+++ b/plugins/iframe/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'sl', {
diff --git a/plugins/iframe/lang/sq.js b/plugins/iframe/lang/sq.js
index 4cf5e11a..c5e0b8f7 100644
--- a/plugins/iframe/lang/sq.js
+++ b/plugins/iframe/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'sq', {
diff --git a/plugins/iframe/lang/sr-latn.js b/plugins/iframe/lang/sr-latn.js
index e1287a3c..cfb8772b 100644
--- a/plugins/iframe/lang/sr-latn.js
+++ b/plugins/iframe/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'sr-latn', {
diff --git a/plugins/iframe/lang/sr.js b/plugins/iframe/lang/sr.js
index 5073bc58..fc628da4 100644
--- a/plugins/iframe/lang/sr.js
+++ b/plugins/iframe/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'sr', {
diff --git a/plugins/iframe/lang/sv.js b/plugins/iframe/lang/sv.js
index 92568220..94ff6e09 100644
--- a/plugins/iframe/lang/sv.js
+++ b/plugins/iframe/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'sv', {
diff --git a/plugins/iframe/lang/th.js b/plugins/iframe/lang/th.js
index 5b738569..75e009cd 100644
--- a/plugins/iframe/lang/th.js
+++ b/plugins/iframe/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'th', {
diff --git a/plugins/iframe/lang/tr.js b/plugins/iframe/lang/tr.js
index 26c5a2b5..d5cd4bd6 100644
--- a/plugins/iframe/lang/tr.js
+++ b/plugins/iframe/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'tr', {
diff --git a/plugins/iframe/lang/tt.js b/plugins/iframe/lang/tt.js
index f0c79d7c..1c1842ba 100644
--- a/plugins/iframe/lang/tt.js
+++ b/plugins/iframe/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'tt', {
diff --git a/plugins/iframe/lang/ug.js b/plugins/iframe/lang/ug.js
index acec4668..c2c8af32 100644
--- a/plugins/iframe/lang/ug.js
+++ b/plugins/iframe/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'ug', {
diff --git a/plugins/iframe/lang/uk.js b/plugins/iframe/lang/uk.js
index dddd1730..23797f1f 100644
--- a/plugins/iframe/lang/uk.js
+++ b/plugins/iframe/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'uk', {
diff --git a/plugins/iframe/lang/vi.js b/plugins/iframe/lang/vi.js
index 3c873924..655774c1 100644
--- a/plugins/iframe/lang/vi.js
+++ b/plugins/iframe/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'vi', {
diff --git a/plugins/iframe/lang/zh-cn.js b/plugins/iframe/lang/zh-cn.js
index 4e301d06..58edef58 100644
--- a/plugins/iframe/lang/zh-cn.js
+++ b/plugins/iframe/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'zh-cn', {
diff --git a/plugins/iframe/lang/zh.js b/plugins/iframe/lang/zh.js
index 021a05e8..f23a891f 100644
--- a/plugins/iframe/lang/zh.js
+++ b/plugins/iframe/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'iframe', 'zh', {
diff --git a/plugins/iframe/plugin.js b/plugins/iframe/plugin.js
index 1d755d0c..cf708532 100644
--- a/plugins/iframe/plugin.js
+++ b/plugins/iframe/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/iframedialog/plugin.js b/plugins/iframedialog/plugin.js
index 560d0f8b..21d0f3f1 100644
--- a/plugins/iframedialog/plugin.js
+++ b/plugins/iframedialog/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/image/dialogs/image.js b/plugins/image/dialogs/image.js
index 471b2791..25c3aa71 100644
--- a/plugins/image/dialogs/image.js
+++ b/plugins/image/dialogs/image.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/image/lang/af.js b/plugins/image/lang/af.js
index 784a5f42..5fb4f12c 100644
--- a/plugins/image/lang/af.js
+++ b/plugins/image/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'af', {
diff --git a/plugins/image/lang/ar.js b/plugins/image/lang/ar.js
index 08f967b7..7de89dfe 100644
--- a/plugins/image/lang/ar.js
+++ b/plugins/image/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'ar', {
diff --git a/plugins/image/lang/az.js b/plugins/image/lang/az.js
index b7adb1d9..ded163e9 100644
--- a/plugins/image/lang/az.js
+++ b/plugins/image/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'az', {
diff --git a/plugins/image/lang/bg.js b/plugins/image/lang/bg.js
index 5b265a84..2f1a3dc8 100644
--- a/plugins/image/lang/bg.js
+++ b/plugins/image/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'bg', {
diff --git a/plugins/image/lang/bn.js b/plugins/image/lang/bn.js
index c287fd50..49dd382d 100644
--- a/plugins/image/lang/bn.js
+++ b/plugins/image/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'bn', {
diff --git a/plugins/image/lang/bs.js b/plugins/image/lang/bs.js
index 7e93ef13..901d8923 100644
--- a/plugins/image/lang/bs.js
+++ b/plugins/image/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'bs', {
diff --git a/plugins/image/lang/ca.js b/plugins/image/lang/ca.js
index 61b85215..d460b1b8 100644
--- a/plugins/image/lang/ca.js
+++ b/plugins/image/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'ca', {
diff --git a/plugins/image/lang/cs.js b/plugins/image/lang/cs.js
index 9ed959a3..45ee18f6 100644
--- a/plugins/image/lang/cs.js
+++ b/plugins/image/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'cs', {
diff --git a/plugins/image/lang/cy.js b/plugins/image/lang/cy.js
index 94f98c52..769c7374 100644
--- a/plugins/image/lang/cy.js
+++ b/plugins/image/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'cy', {
diff --git a/plugins/image/lang/da.js b/plugins/image/lang/da.js
index 16940825..9432fc2c 100644
--- a/plugins/image/lang/da.js
+++ b/plugins/image/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'da', {
diff --git a/plugins/image/lang/de-ch.js b/plugins/image/lang/de-ch.js
index 21ff5ffb..e4959caa 100644
--- a/plugins/image/lang/de-ch.js
+++ b/plugins/image/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'de-ch', {
diff --git a/plugins/image/lang/de.js b/plugins/image/lang/de.js
index f3578423..0cb9d4ec 100644
--- a/plugins/image/lang/de.js
+++ b/plugins/image/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'de', {
diff --git a/plugins/image/lang/el.js b/plugins/image/lang/el.js
index 8678befd..61f75c63 100644
--- a/plugins/image/lang/el.js
+++ b/plugins/image/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'el', {
diff --git a/plugins/image/lang/en-au.js b/plugins/image/lang/en-au.js
index 13f2be2e..fb27cdfd 100644
--- a/plugins/image/lang/en-au.js
+++ b/plugins/image/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'en-au', {
diff --git a/plugins/image/lang/en-ca.js b/plugins/image/lang/en-ca.js
index 0568df5d..0d419531 100644
--- a/plugins/image/lang/en-ca.js
+++ b/plugins/image/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'en-ca', {
diff --git a/plugins/image/lang/en-gb.js b/plugins/image/lang/en-gb.js
index ad34d355..31eba939 100644
--- a/plugins/image/lang/en-gb.js
+++ b/plugins/image/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'en-gb', {
diff --git a/plugins/image/lang/en.js b/plugins/image/lang/en.js
index 4be17909..d746249f 100644
--- a/plugins/image/lang/en.js
+++ b/plugins/image/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'en', {
diff --git a/plugins/image/lang/eo.js b/plugins/image/lang/eo.js
index 697a5fbf..be83e1be 100644
--- a/plugins/image/lang/eo.js
+++ b/plugins/image/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'eo', {
diff --git a/plugins/image/lang/es-mx.js b/plugins/image/lang/es-mx.js
index 66cad51a..2fbe3ce5 100644
--- a/plugins/image/lang/es-mx.js
+++ b/plugins/image/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'es-mx', {
diff --git a/plugins/image/lang/es.js b/plugins/image/lang/es.js
index 3075aa2b..d22f5bc9 100644
--- a/plugins/image/lang/es.js
+++ b/plugins/image/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'es', {
diff --git a/plugins/image/lang/et.js b/plugins/image/lang/et.js
index 89827190..e60010e0 100644
--- a/plugins/image/lang/et.js
+++ b/plugins/image/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'et', {
diff --git a/plugins/image/lang/eu.js b/plugins/image/lang/eu.js
index bb288fac..d3114a3b 100644
--- a/plugins/image/lang/eu.js
+++ b/plugins/image/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'eu', {
diff --git a/plugins/image/lang/fa.js b/plugins/image/lang/fa.js
index b91fc307..951a5919 100644
--- a/plugins/image/lang/fa.js
+++ b/plugins/image/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'fa', {
diff --git a/plugins/image/lang/fi.js b/plugins/image/lang/fi.js
index e1b3188e..a9d1762d 100644
--- a/plugins/image/lang/fi.js
+++ b/plugins/image/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'fi', {
diff --git a/plugins/image/lang/fo.js b/plugins/image/lang/fo.js
index 9b64fc7d..46a4cd9f 100644
--- a/plugins/image/lang/fo.js
+++ b/plugins/image/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'fo', {
diff --git a/plugins/image/lang/fr-ca.js b/plugins/image/lang/fr-ca.js
index 8d4f67b5..463d8c30 100644
--- a/plugins/image/lang/fr-ca.js
+++ b/plugins/image/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'fr-ca', {
diff --git a/plugins/image/lang/fr.js b/plugins/image/lang/fr.js
index d0085715..9e43558f 100644
--- a/plugins/image/lang/fr.js
+++ b/plugins/image/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'fr', {
diff --git a/plugins/image/lang/gl.js b/plugins/image/lang/gl.js
index 710c40ed..3b104126 100644
--- a/plugins/image/lang/gl.js
+++ b/plugins/image/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'gl', {
diff --git a/plugins/image/lang/gu.js b/plugins/image/lang/gu.js
index 74fb4ad6..14d921f9 100644
--- a/plugins/image/lang/gu.js
+++ b/plugins/image/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'gu', {
diff --git a/plugins/image/lang/he.js b/plugins/image/lang/he.js
index 3180af2a..9d7440dd 100644
--- a/plugins/image/lang/he.js
+++ b/plugins/image/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'he', {
diff --git a/plugins/image/lang/hi.js b/plugins/image/lang/hi.js
index 8c86a19f..e7c14732 100644
--- a/plugins/image/lang/hi.js
+++ b/plugins/image/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'hi', {
diff --git a/plugins/image/lang/hr.js b/plugins/image/lang/hr.js
index e3b4085a..0e80b188 100644
--- a/plugins/image/lang/hr.js
+++ b/plugins/image/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'hr', {
diff --git a/plugins/image/lang/hu.js b/plugins/image/lang/hu.js
index ddbbf0b7..532f3d9f 100644
--- a/plugins/image/lang/hu.js
+++ b/plugins/image/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'hu', {
diff --git a/plugins/image/lang/id.js b/plugins/image/lang/id.js
index 6d42d8d3..9b83cd52 100644
--- a/plugins/image/lang/id.js
+++ b/plugins/image/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'id', {
diff --git a/plugins/image/lang/is.js b/plugins/image/lang/is.js
index f2b9ab7a..fbddf331 100644
--- a/plugins/image/lang/is.js
+++ b/plugins/image/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'is', {
diff --git a/plugins/image/lang/it.js b/plugins/image/lang/it.js
index a56feed1..19ea6a3a 100644
--- a/plugins/image/lang/it.js
+++ b/plugins/image/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'it', {
diff --git a/plugins/image/lang/ja.js b/plugins/image/lang/ja.js
index c69f0521..89645f57 100644
--- a/plugins/image/lang/ja.js
+++ b/plugins/image/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'ja', {
diff --git a/plugins/image/lang/ka.js b/plugins/image/lang/ka.js
index 3bfa6057..b5b11dfb 100644
--- a/plugins/image/lang/ka.js
+++ b/plugins/image/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'ka', {
diff --git a/plugins/image/lang/km.js b/plugins/image/lang/km.js
index 53b2ec25..bf860281 100644
--- a/plugins/image/lang/km.js
+++ b/plugins/image/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'km', {
diff --git a/plugins/image/lang/ko.js b/plugins/image/lang/ko.js
index 6706e666..017a1bc1 100644
--- a/plugins/image/lang/ko.js
+++ b/plugins/image/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'ko', {
diff --git a/plugins/image/lang/ku.js b/plugins/image/lang/ku.js
index 8afca31c..b2545381 100644
--- a/plugins/image/lang/ku.js
+++ b/plugins/image/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'ku', {
diff --git a/plugins/image/lang/lt.js b/plugins/image/lang/lt.js
index f1c0e340..aa976998 100644
--- a/plugins/image/lang/lt.js
+++ b/plugins/image/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'lt', {
diff --git a/plugins/image/lang/lv.js b/plugins/image/lang/lv.js
index ff3d2c49..6a10004d 100644
--- a/plugins/image/lang/lv.js
+++ b/plugins/image/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'lv', {
diff --git a/plugins/image/lang/mk.js b/plugins/image/lang/mk.js
index 8924ef5b..3722185c 100644
--- a/plugins/image/lang/mk.js
+++ b/plugins/image/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'mk', {
diff --git a/plugins/image/lang/mn.js b/plugins/image/lang/mn.js
index d69632cc..d708f15b 100644
--- a/plugins/image/lang/mn.js
+++ b/plugins/image/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'mn', {
diff --git a/plugins/image/lang/ms.js b/plugins/image/lang/ms.js
index 2d5e82ee..9d687422 100644
--- a/plugins/image/lang/ms.js
+++ b/plugins/image/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'ms', {
diff --git a/plugins/image/lang/nb.js b/plugins/image/lang/nb.js
index b183f622..31c3dc97 100644
--- a/plugins/image/lang/nb.js
+++ b/plugins/image/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'nb', {
diff --git a/plugins/image/lang/nl.js b/plugins/image/lang/nl.js
index 5660fbf1..dd58ce52 100644
--- a/plugins/image/lang/nl.js
+++ b/plugins/image/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'nl', {
diff --git a/plugins/image/lang/no.js b/plugins/image/lang/no.js
index 8a0b8c9e..054769b3 100644
--- a/plugins/image/lang/no.js
+++ b/plugins/image/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'no', {
diff --git a/plugins/image/lang/oc.js b/plugins/image/lang/oc.js
index 7da657d1..c161f802 100644
--- a/plugins/image/lang/oc.js
+++ b/plugins/image/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'oc', {
diff --git a/plugins/image/lang/pl.js b/plugins/image/lang/pl.js
index fe5a95ee..31705565 100644
--- a/plugins/image/lang/pl.js
+++ b/plugins/image/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'pl', {
diff --git a/plugins/image/lang/pt-br.js b/plugins/image/lang/pt-br.js
index 92aed72a..22c6f0a2 100644
--- a/plugins/image/lang/pt-br.js
+++ b/plugins/image/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'pt-br', {
diff --git a/plugins/image/lang/pt.js b/plugins/image/lang/pt.js
index 3202a7db..641c1de7 100644
--- a/plugins/image/lang/pt.js
+++ b/plugins/image/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'pt', {
diff --git a/plugins/image/lang/ro.js b/plugins/image/lang/ro.js
index 47643a98..2a823171 100644
--- a/plugins/image/lang/ro.js
+++ b/plugins/image/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'ro', {
diff --git a/plugins/image/lang/ru.js b/plugins/image/lang/ru.js
index e9600345..407ab445 100644
--- a/plugins/image/lang/ru.js
+++ b/plugins/image/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'ru', {
diff --git a/plugins/image/lang/si.js b/plugins/image/lang/si.js
index 58198439..7186cbc7 100644
--- a/plugins/image/lang/si.js
+++ b/plugins/image/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'si', {
diff --git a/plugins/image/lang/sk.js b/plugins/image/lang/sk.js
index 6b6c92e1..ddb38925 100644
--- a/plugins/image/lang/sk.js
+++ b/plugins/image/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'sk', {
diff --git a/plugins/image/lang/sl.js b/plugins/image/lang/sl.js
index 2f0433d6..40f3fbba 100644
--- a/plugins/image/lang/sl.js
+++ b/plugins/image/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'sl', {
diff --git a/plugins/image/lang/sq.js b/plugins/image/lang/sq.js
index dcff20a2..a6f0bbc2 100644
--- a/plugins/image/lang/sq.js
+++ b/plugins/image/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'sq', {
diff --git a/plugins/image/lang/sr-latn.js b/plugins/image/lang/sr-latn.js
index b8d2ab5a..981878b1 100644
--- a/plugins/image/lang/sr-latn.js
+++ b/plugins/image/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'sr-latn', {
diff --git a/plugins/image/lang/sr.js b/plugins/image/lang/sr.js
index 7206564d..698fc971 100644
--- a/plugins/image/lang/sr.js
+++ b/plugins/image/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'sr', {
diff --git a/plugins/image/lang/sv.js b/plugins/image/lang/sv.js
index 96b6f80b..35e65b84 100644
--- a/plugins/image/lang/sv.js
+++ b/plugins/image/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'sv', {
diff --git a/plugins/image/lang/th.js b/plugins/image/lang/th.js
index ff650d53..380e365a 100644
--- a/plugins/image/lang/th.js
+++ b/plugins/image/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'th', {
diff --git a/plugins/image/lang/tr.js b/plugins/image/lang/tr.js
index 6a98cd8a..7553eca6 100644
--- a/plugins/image/lang/tr.js
+++ b/plugins/image/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'tr', {
diff --git a/plugins/image/lang/tt.js b/plugins/image/lang/tt.js
index 8814500c..38d4568f 100644
--- a/plugins/image/lang/tt.js
+++ b/plugins/image/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'tt', {
diff --git a/plugins/image/lang/ug.js b/plugins/image/lang/ug.js
index 1032728c..47554bc1 100644
--- a/plugins/image/lang/ug.js
+++ b/plugins/image/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'ug', {
diff --git a/plugins/image/lang/uk.js b/plugins/image/lang/uk.js
index a16a5093..df97b757 100644
--- a/plugins/image/lang/uk.js
+++ b/plugins/image/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'uk', {
diff --git a/plugins/image/lang/vi.js b/plugins/image/lang/vi.js
index d1b36e22..f94cd244 100644
--- a/plugins/image/lang/vi.js
+++ b/plugins/image/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'vi', {
diff --git a/plugins/image/lang/zh-cn.js b/plugins/image/lang/zh-cn.js
index 84f1635a..f13e89bd 100644
--- a/plugins/image/lang/zh-cn.js
+++ b/plugins/image/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'zh-cn', {
diff --git a/plugins/image/lang/zh.js b/plugins/image/lang/zh.js
index 49842438..e9c16d64 100644
--- a/plugins/image/lang/zh.js
+++ b/plugins/image/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image', 'zh', {
diff --git a/plugins/image/plugin.js b/plugins/image/plugin.js
index 6ea792bf..277a025c 100644
--- a/plugins/image/plugin.js
+++ b/plugins/image/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/image2/dev/contents.css b/plugins/image2/dev/contents.css
index 705ba47b..dbeb9e9e 100644
--- a/plugins/image2/dev/contents.css
+++ b/plugins/image2/dev/contents.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/image2/dev/image2.html b/plugins/image2/dev/image2.html
index abaa123a..464582ae 100644
--- a/plugins/image2/dev/image2.html
+++ b/plugins/image2/dev/image2.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
@@ -331,7 +331,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/image2/dialogs/image2.js b/plugins/image2/dialogs/image2.js
index 655a0907..12bdf884 100644
--- a/plugins/image2/dialogs/image2.js
+++ b/plugins/image2/dialogs/image2.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -133,7 +133,9 @@ CKEDITOR.dialog.add( 'image2', function( editor ) {
 	// "src" field is altered. Along with dimensions, also the
 	// dimensions lock is adjusted.
 	function onChangeSrc() {
-		var value = this.getValue();
+		var value = this.getValue(),
+			lockRatioValue = editor.config.image2_defaultLockRatio,
+			isLockRatioSet = lockRatioValue !== undefined;
 
 		toggleDimensions( false );
 
@@ -146,7 +148,7 @@ CKEDITOR.dialog.add( 'image2', function( editor ) {
 
 				// There was problem loading the image. Unlock ratio.
 				if ( !image )
-					return toggleLockRatio( false );
+					return toggleLockRatio( ( isLockRatioSet ? lockRatioValue : false ) );
 
 				// Fill width field with the width of the new image.
 				widthField.setValue( editor.config.image2_prefillDimensions === false ? 0 : width );
@@ -161,7 +163,7 @@ CKEDITOR.dialog.add( 'image2', function( editor ) {
 				preLoadedHeight = domHeight = height;
 
 				// Check for new lock value if image exist.
-				toggleLockRatio( helpers.checkHasNaturalRatio( image ) );
+				toggleLockRatio( ( isLockRatioSet ? lockRatioValue : helpers.checkHasNaturalRatio( image ) ) );
 			} );
 
 			srcChanged = true;
diff --git a/plugins/image2/lang/af.js b/plugins/image2/lang/af.js
index 245233cd..dab4e068 100644
--- a/plugins/image2/lang/af.js
+++ b/plugins/image2/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'af', {
diff --git a/plugins/image2/lang/ar.js b/plugins/image2/lang/ar.js
index 69ac2c14..b3f324bb 100644
--- a/plugins/image2/lang/ar.js
+++ b/plugins/image2/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'ar', {
diff --git a/plugins/image2/lang/az.js b/plugins/image2/lang/az.js
index df8edfc5..6e597344 100644
--- a/plugins/image2/lang/az.js
+++ b/plugins/image2/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'az', {
diff --git a/plugins/image2/lang/bg.js b/plugins/image2/lang/bg.js
index e4d49b2c..4dad4cf6 100644
--- a/plugins/image2/lang/bg.js
+++ b/plugins/image2/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'bg', {
diff --git a/plugins/image2/lang/bn.js b/plugins/image2/lang/bn.js
index 15e1879e..92632834 100644
--- a/plugins/image2/lang/bn.js
+++ b/plugins/image2/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'bn', {
diff --git a/plugins/image2/lang/bs.js b/plugins/image2/lang/bs.js
index 2f25ef5d..5a257087 100644
--- a/plugins/image2/lang/bs.js
+++ b/plugins/image2/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'bs', {
diff --git a/plugins/image2/lang/ca.js b/plugins/image2/lang/ca.js
index 7c1336e9..b2b9a9b7 100644
--- a/plugins/image2/lang/ca.js
+++ b/plugins/image2/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'ca', {
diff --git a/plugins/image2/lang/cs.js b/plugins/image2/lang/cs.js
index 1b59ee7a..69afebab 100644
--- a/plugins/image2/lang/cs.js
+++ b/plugins/image2/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'cs', {
diff --git a/plugins/image2/lang/cy.js b/plugins/image2/lang/cy.js
index a20698e1..31412057 100644
--- a/plugins/image2/lang/cy.js
+++ b/plugins/image2/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'cy', {
diff --git a/plugins/image2/lang/da.js b/plugins/image2/lang/da.js
index 03fda0fd..0ce774d4 100644
--- a/plugins/image2/lang/da.js
+++ b/plugins/image2/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'da', {
diff --git a/plugins/image2/lang/de-ch.js b/plugins/image2/lang/de-ch.js
index 1c035d2f..97a2c8b2 100644
--- a/plugins/image2/lang/de-ch.js
+++ b/plugins/image2/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'de-ch', {
diff --git a/plugins/image2/lang/de.js b/plugins/image2/lang/de.js
index 751c8515..df2e089c 100644
--- a/plugins/image2/lang/de.js
+++ b/plugins/image2/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'de', {
diff --git a/plugins/image2/lang/el.js b/plugins/image2/lang/el.js
index a2ffa3ed..495bb802 100644
--- a/plugins/image2/lang/el.js
+++ b/plugins/image2/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'el', {
diff --git a/plugins/image2/lang/en-au.js b/plugins/image2/lang/en-au.js
index 05c36915..cf01f14f 100644
--- a/plugins/image2/lang/en-au.js
+++ b/plugins/image2/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'en-au', {
diff --git a/plugins/image2/lang/en-ca.js b/plugins/image2/lang/en-ca.js
index 899ace3e..9e0fa5aa 100644
--- a/plugins/image2/lang/en-ca.js
+++ b/plugins/image2/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'en-ca', {
diff --git a/plugins/image2/lang/en-gb.js b/plugins/image2/lang/en-gb.js
index 386336cb..59fa07f9 100644
--- a/plugins/image2/lang/en-gb.js
+++ b/plugins/image2/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'en-gb', {
diff --git a/plugins/image2/lang/en.js b/plugins/image2/lang/en.js
index fee000d6..2d471569 100644
--- a/plugins/image2/lang/en.js
+++ b/plugins/image2/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'en', {
diff --git a/plugins/image2/lang/eo.js b/plugins/image2/lang/eo.js
index 14112f11..f53b4610 100644
--- a/plugins/image2/lang/eo.js
+++ b/plugins/image2/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'eo', {
diff --git a/plugins/image2/lang/es-mx.js b/plugins/image2/lang/es-mx.js
index 1ad76d5d..dc42beee 100644
--- a/plugins/image2/lang/es-mx.js
+++ b/plugins/image2/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'es-mx', {
diff --git a/plugins/image2/lang/es.js b/plugins/image2/lang/es.js
index a18074db..a4839318 100644
--- a/plugins/image2/lang/es.js
+++ b/plugins/image2/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'es', {
diff --git a/plugins/image2/lang/et.js b/plugins/image2/lang/et.js
index 7b3009e3..423583c6 100644
--- a/plugins/image2/lang/et.js
+++ b/plugins/image2/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'et', {
diff --git a/plugins/image2/lang/eu.js b/plugins/image2/lang/eu.js
index 2c31686a..15348ca0 100644
--- a/plugins/image2/lang/eu.js
+++ b/plugins/image2/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'eu', {
diff --git a/plugins/image2/lang/fa.js b/plugins/image2/lang/fa.js
index e92032b1..2fcadf77 100644
--- a/plugins/image2/lang/fa.js
+++ b/plugins/image2/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'fa', {
diff --git a/plugins/image2/lang/fi.js b/plugins/image2/lang/fi.js
index 4bf04933..ae043f7f 100644
--- a/plugins/image2/lang/fi.js
+++ b/plugins/image2/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'fi', {
diff --git a/plugins/image2/lang/fo.js b/plugins/image2/lang/fo.js
index 515f2614..89fcb2a2 100644
--- a/plugins/image2/lang/fo.js
+++ b/plugins/image2/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'fo', {
diff --git a/plugins/image2/lang/fr-ca.js b/plugins/image2/lang/fr-ca.js
index cafa43cf..63242e9f 100644
--- a/plugins/image2/lang/fr-ca.js
+++ b/plugins/image2/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'fr-ca', {
diff --git a/plugins/image2/lang/fr.js b/plugins/image2/lang/fr.js
index f43f47c9..3f0480b0 100644
--- a/plugins/image2/lang/fr.js
+++ b/plugins/image2/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'fr', {
diff --git a/plugins/image2/lang/gl.js b/plugins/image2/lang/gl.js
index 863cd001..b92b3b2b 100644
--- a/plugins/image2/lang/gl.js
+++ b/plugins/image2/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'gl', {
diff --git a/plugins/image2/lang/gu.js b/plugins/image2/lang/gu.js
index 0555bb6b..7a636c5e 100644
--- a/plugins/image2/lang/gu.js
+++ b/plugins/image2/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'gu', {
diff --git a/plugins/image2/lang/he.js b/plugins/image2/lang/he.js
index 858b79ee..04f3f773 100644
--- a/plugins/image2/lang/he.js
+++ b/plugins/image2/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'he', {
diff --git a/plugins/image2/lang/hi.js b/plugins/image2/lang/hi.js
index f516f150..ae2b850b 100644
--- a/plugins/image2/lang/hi.js
+++ b/plugins/image2/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'hi', {
diff --git a/plugins/image2/lang/hr.js b/plugins/image2/lang/hr.js
index 8aec4ee1..12d6856d 100644
--- a/plugins/image2/lang/hr.js
+++ b/plugins/image2/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'hr', {
diff --git a/plugins/image2/lang/hu.js b/plugins/image2/lang/hu.js
index fc64894d..a711a3ae 100644
--- a/plugins/image2/lang/hu.js
+++ b/plugins/image2/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'hu', {
diff --git a/plugins/image2/lang/id.js b/plugins/image2/lang/id.js
index 02d84a38..b5896a1a 100644
--- a/plugins/image2/lang/id.js
+++ b/plugins/image2/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'id', {
diff --git a/plugins/image2/lang/is.js b/plugins/image2/lang/is.js
index a8157e96..e89c9582 100644
--- a/plugins/image2/lang/is.js
+++ b/plugins/image2/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'is', {
diff --git a/plugins/image2/lang/it.js b/plugins/image2/lang/it.js
index adaeaa58..bc4ea1c5 100644
--- a/plugins/image2/lang/it.js
+++ b/plugins/image2/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'it', {
diff --git a/plugins/image2/lang/ja.js b/plugins/image2/lang/ja.js
index 0ef28dfc..cf06ae4b 100644
--- a/plugins/image2/lang/ja.js
+++ b/plugins/image2/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'ja', {
diff --git a/plugins/image2/lang/ka.js b/plugins/image2/lang/ka.js
index cd88fe05..7b446b0e 100644
--- a/plugins/image2/lang/ka.js
+++ b/plugins/image2/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'ka', {
diff --git a/plugins/image2/lang/km.js b/plugins/image2/lang/km.js
index 79f77178..4814f1f8 100644
--- a/plugins/image2/lang/km.js
+++ b/plugins/image2/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'km', {
diff --git a/plugins/image2/lang/ko.js b/plugins/image2/lang/ko.js
index 6d6a6ffc..b99e3bf9 100644
--- a/plugins/image2/lang/ko.js
+++ b/plugins/image2/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'ko', {
diff --git a/plugins/image2/lang/ku.js b/plugins/image2/lang/ku.js
index 61459cb2..82191a6d 100644
--- a/plugins/image2/lang/ku.js
+++ b/plugins/image2/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'ku', {
diff --git a/plugins/image2/lang/lt.js b/plugins/image2/lang/lt.js
index 62c55781..29edbdc6 100644
--- a/plugins/image2/lang/lt.js
+++ b/plugins/image2/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'lt', {
diff --git a/plugins/image2/lang/lv.js b/plugins/image2/lang/lv.js
index e958a346..3f104cba 100644
--- a/plugins/image2/lang/lv.js
+++ b/plugins/image2/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'lv', {
diff --git a/plugins/image2/lang/mk.js b/plugins/image2/lang/mk.js
index 2a41e66a..c60b522f 100644
--- a/plugins/image2/lang/mk.js
+++ b/plugins/image2/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'mk', {
diff --git a/plugins/image2/lang/mn.js b/plugins/image2/lang/mn.js
index 1d8a314a..3b6cb218 100644
--- a/plugins/image2/lang/mn.js
+++ b/plugins/image2/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'mn', {
diff --git a/plugins/image2/lang/ms.js b/plugins/image2/lang/ms.js
index e2005c05..a23e3186 100644
--- a/plugins/image2/lang/ms.js
+++ b/plugins/image2/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'ms', {
diff --git a/plugins/image2/lang/nb.js b/plugins/image2/lang/nb.js
index 94642c37..c9eed387 100644
--- a/plugins/image2/lang/nb.js
+++ b/plugins/image2/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'nb', {
diff --git a/plugins/image2/lang/nl.js b/plugins/image2/lang/nl.js
index 59765a69..0a7550a7 100644
--- a/plugins/image2/lang/nl.js
+++ b/plugins/image2/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'nl', {
diff --git a/plugins/image2/lang/no.js b/plugins/image2/lang/no.js
index 009e2281..0a1d316e 100644
--- a/plugins/image2/lang/no.js
+++ b/plugins/image2/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'no', {
diff --git a/plugins/image2/lang/oc.js b/plugins/image2/lang/oc.js
index 7a861974..211c6300 100644
--- a/plugins/image2/lang/oc.js
+++ b/plugins/image2/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'oc', {
diff --git a/plugins/image2/lang/pl.js b/plugins/image2/lang/pl.js
index 4dc8814e..c1796efb 100644
--- a/plugins/image2/lang/pl.js
+++ b/plugins/image2/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'pl', {
diff --git a/plugins/image2/lang/pt-br.js b/plugins/image2/lang/pt-br.js
index 9f8bf581..161c23e7 100644
--- a/plugins/image2/lang/pt-br.js
+++ b/plugins/image2/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'pt-br', {
diff --git a/plugins/image2/lang/pt.js b/plugins/image2/lang/pt.js
index 0bfab76e..5b087e66 100644
--- a/plugins/image2/lang/pt.js
+++ b/plugins/image2/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'pt', {
diff --git a/plugins/image2/lang/ro.js b/plugins/image2/lang/ro.js
index a22d78b5..6550bc07 100644
--- a/plugins/image2/lang/ro.js
+++ b/plugins/image2/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'ro', {
diff --git a/plugins/image2/lang/ru.js b/plugins/image2/lang/ru.js
index 0bd0d999..10fd1d99 100644
--- a/plugins/image2/lang/ru.js
+++ b/plugins/image2/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'ru', {
diff --git a/plugins/image2/lang/si.js b/plugins/image2/lang/si.js
index ce9b53d2..2346ce40 100644
--- a/plugins/image2/lang/si.js
+++ b/plugins/image2/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'si', {
diff --git a/plugins/image2/lang/sk.js b/plugins/image2/lang/sk.js
index ed07cca8..1aa73567 100644
--- a/plugins/image2/lang/sk.js
+++ b/plugins/image2/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'sk', {
diff --git a/plugins/image2/lang/sl.js b/plugins/image2/lang/sl.js
index d86689d4..cba9b0d4 100644
--- a/plugins/image2/lang/sl.js
+++ b/plugins/image2/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'sl', {
diff --git a/plugins/image2/lang/sq.js b/plugins/image2/lang/sq.js
index 611251a0..28664522 100644
--- a/plugins/image2/lang/sq.js
+++ b/plugins/image2/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'sq', {
diff --git a/plugins/image2/lang/sr-latn.js b/plugins/image2/lang/sr-latn.js
index 19e650f9..1436e369 100644
--- a/plugins/image2/lang/sr-latn.js
+++ b/plugins/image2/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'sr-latn', {
diff --git a/plugins/image2/lang/sr.js b/plugins/image2/lang/sr.js
index 1752f5aa..83451d13 100644
--- a/plugins/image2/lang/sr.js
+++ b/plugins/image2/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'sr', {
diff --git a/plugins/image2/lang/sv.js b/plugins/image2/lang/sv.js
index 29716f8a..24e73368 100644
--- a/plugins/image2/lang/sv.js
+++ b/plugins/image2/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'sv', {
diff --git a/plugins/image2/lang/th.js b/plugins/image2/lang/th.js
index 17792de0..aadbcab3 100644
--- a/plugins/image2/lang/th.js
+++ b/plugins/image2/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'th', {
diff --git a/plugins/image2/lang/tr.js b/plugins/image2/lang/tr.js
index d4106dff..7096ea1f 100644
--- a/plugins/image2/lang/tr.js
+++ b/plugins/image2/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'tr', {
diff --git a/plugins/image2/lang/tt.js b/plugins/image2/lang/tt.js
index ba512019..1789e8ae 100644
--- a/plugins/image2/lang/tt.js
+++ b/plugins/image2/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'tt', {
diff --git a/plugins/image2/lang/ug.js b/plugins/image2/lang/ug.js
index 823f7f02..4638f438 100644
--- a/plugins/image2/lang/ug.js
+++ b/plugins/image2/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'ug', {
diff --git a/plugins/image2/lang/uk.js b/plugins/image2/lang/uk.js
index 50ad481c..f1678dfb 100644
--- a/plugins/image2/lang/uk.js
+++ b/plugins/image2/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'uk', {
diff --git a/plugins/image2/lang/vi.js b/plugins/image2/lang/vi.js
index 87ce2655..03a3178b 100644
--- a/plugins/image2/lang/vi.js
+++ b/plugins/image2/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'vi', {
diff --git a/plugins/image2/lang/zh-cn.js b/plugins/image2/lang/zh-cn.js
index 16865d82..b2898eef 100644
--- a/plugins/image2/lang/zh-cn.js
+++ b/plugins/image2/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'zh-cn', {
diff --git a/plugins/image2/lang/zh.js b/plugins/image2/lang/zh.js
index eef9895d..a671ac42 100644
--- a/plugins/image2/lang/zh.js
+++ b/plugins/image2/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'image2', 'zh', {
diff --git a/plugins/image2/plugin.js b/plugins/image2/plugin.js
index 69ba8c79..63de6333 100644
--- a/plugins/image2/plugin.js
+++ b/plugins/image2/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -371,6 +371,7 @@
 			init: function() {
 				var helpers = CKEDITOR.plugins.image2,
 					image = this.parts.image,
+					legacyLockBehavior = this.ready ? helpers.checkHasNaturalRatio( image ) : true,
 					data = {
 						hasCaption: !!this.parts.caption,
 						src: image.getAttribute( 'src' ),
@@ -378,8 +379,11 @@
 						width: image.getAttribute( 'width' ) || '',
 						height: image.getAttribute( 'height' ) || '',
 
-						// Lock ratio is on by default (https://dev.ckeditor.com/ticket/10833).
-						lock: this.ready ? helpers.checkHasNaturalRatio( image ) : true
+						// Lock ratio should respect the value of the config.image2_defaultLockRatio.
+						// If the variable is not set, then it fallback to the legacy one
+						// (#5219, https://dev.ckeditor.com/ticket/10833).
+						lock: editor.config.image2_defaultLockRatio !== undefined ?
+							editor.config.image2_defaultLockRatio : legacyLockBehavior
 					};
 
 				// If we used 'a' in widget#parts definition, it could happen that
@@ -1781,3 +1785,14 @@ CKEDITOR.config.image2_captionedClass = 'image';
  * @cfg {Object.<String, Number/String>} [image2_maxSize]
  * @member CKEDITOR.config
  */
+
+/**
+ * Indicates the default state of the "Lock ratio" switch in the image dialog.
+ * If set to `true`, the ratio will be locked. If set to `false`, it will be unlocked.
+ * If the value is not set at all, the "Lock ratio" switch will indicate
+ * if the image has preserved aspect ratio upon loading.
+ *
+ * @since 4.20.0
+ * @cfg {Boolean} [image2_defaultLockRatio]
+ * @member CKEDITOR.config
+ */
diff --git a/plugins/image2/samples/image2.html b/plugins/image2/samples/image2.html
index 6a003578..569b8c88 100644
--- a/plugins/image2/samples/image2.html
+++ b/plugins/image2/samples/image2.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -61,7 +61,7 @@ CKEDITOR.replace( '<em>textarea_id</em>', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/imagebase/lang/az.js b/plugins/imagebase/lang/az.js
index dbc0bef3..1c7b85ad 100644
--- a/plugins/imagebase/lang/az.js
+++ b/plugins/imagebase/lang/az.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/bg.js b/plugins/imagebase/lang/bg.js
index 3deeea35..2693bc3e 100644
--- a/plugins/imagebase/lang/bg.js
+++ b/plugins/imagebase/lang/bg.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/cs.js b/plugins/imagebase/lang/cs.js
index b047afe8..cb4e9088 100644
--- a/plugins/imagebase/lang/cs.js
+++ b/plugins/imagebase/lang/cs.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/da.js b/plugins/imagebase/lang/da.js
index b1afd733..e624bae0 100644
--- a/plugins/imagebase/lang/da.js
+++ b/plugins/imagebase/lang/da.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/de-ch.js b/plugins/imagebase/lang/de-ch.js
index 4a02073a..438ca3c4 100644
--- a/plugins/imagebase/lang/de-ch.js
+++ b/plugins/imagebase/lang/de-ch.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/de.js b/plugins/imagebase/lang/de.js
index 9f62e1e1..b7e8a63d 100644
--- a/plugins/imagebase/lang/de.js
+++ b/plugins/imagebase/lang/de.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/el.js b/plugins/imagebase/lang/el.js
index 7bcdd462..52e71fd4 100644
--- a/plugins/imagebase/lang/el.js
+++ b/plugins/imagebase/lang/el.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/en-au.js b/plugins/imagebase/lang/en-au.js
index b2ff4fb4..666e6e4c 100644
--- a/plugins/imagebase/lang/en-au.js
+++ b/plugins/imagebase/lang/en-au.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/en.js b/plugins/imagebase/lang/en.js
index 3d7a1671..0f6056bf 100644
--- a/plugins/imagebase/lang/en.js
+++ b/plugins/imagebase/lang/en.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/et.js b/plugins/imagebase/lang/et.js
index 494052f9..4a2840ac 100644
--- a/plugins/imagebase/lang/et.js
+++ b/plugins/imagebase/lang/et.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/fa.js b/plugins/imagebase/lang/fa.js
index 1c7c5801..14d3a77b 100644
--- a/plugins/imagebase/lang/fa.js
+++ b/plugins/imagebase/lang/fa.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/fr.js b/plugins/imagebase/lang/fr.js
index 10d42bf2..f8d79408 100644
--- a/plugins/imagebase/lang/fr.js
+++ b/plugins/imagebase/lang/fr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/gl.js b/plugins/imagebase/lang/gl.js
index 73538394..48d4d3cd 100644
--- a/plugins/imagebase/lang/gl.js
+++ b/plugins/imagebase/lang/gl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/hr.js b/plugins/imagebase/lang/hr.js
index 4615dc22..59a975a4 100644
--- a/plugins/imagebase/lang/hr.js
+++ b/plugins/imagebase/lang/hr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/hu.js b/plugins/imagebase/lang/hu.js
index 65e56734..419eec4a 100644
--- a/plugins/imagebase/lang/hu.js
+++ b/plugins/imagebase/lang/hu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/it.js b/plugins/imagebase/lang/it.js
index 1ad4df28..1378ffe2 100644
--- a/plugins/imagebase/lang/it.js
+++ b/plugins/imagebase/lang/it.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/ku.js b/plugins/imagebase/lang/ku.js
index 5cc212aa..a7dc270a 100644
--- a/plugins/imagebase/lang/ku.js
+++ b/plugins/imagebase/lang/ku.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/lt.js b/plugins/imagebase/lang/lt.js
index f903778a..b074366a 100644
--- a/plugins/imagebase/lang/lt.js
+++ b/plugins/imagebase/lang/lt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/lv.js b/plugins/imagebase/lang/lv.js
index 6c3078ff..29f99fa2 100644
--- a/plugins/imagebase/lang/lv.js
+++ b/plugins/imagebase/lang/lv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/nb.js b/plugins/imagebase/lang/nb.js
index 79e55e4c..59583503 100644
--- a/plugins/imagebase/lang/nb.js
+++ b/plugins/imagebase/lang/nb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/nl.js b/plugins/imagebase/lang/nl.js
index 72e0c714..862bb999 100644
--- a/plugins/imagebase/lang/nl.js
+++ b/plugins/imagebase/lang/nl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/pl.js b/plugins/imagebase/lang/pl.js
index 447ecec4..12a9b53b 100644
--- a/plugins/imagebase/lang/pl.js
+++ b/plugins/imagebase/lang/pl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/pt-br.js b/plugins/imagebase/lang/pt-br.js
index 33a5f297..55e856da 100644
--- a/plugins/imagebase/lang/pt-br.js
+++ b/plugins/imagebase/lang/pt-br.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/pt.js b/plugins/imagebase/lang/pt.js
index b27afc35..4219ca22 100644
--- a/plugins/imagebase/lang/pt.js
+++ b/plugins/imagebase/lang/pt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/ro.js b/plugins/imagebase/lang/ro.js
index ce719850..caaea3c9 100644
--- a/plugins/imagebase/lang/ro.js
+++ b/plugins/imagebase/lang/ro.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/ru.js b/plugins/imagebase/lang/ru.js
index b774f87b..1904d1f5 100644
--- a/plugins/imagebase/lang/ru.js
+++ b/plugins/imagebase/lang/ru.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/sk.js b/plugins/imagebase/lang/sk.js
index faf830da..6f6b7ab1 100644
--- a/plugins/imagebase/lang/sk.js
+++ b/plugins/imagebase/lang/sk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/sq.js b/plugins/imagebase/lang/sq.js
index 1b28cd39..b1c07610 100644
--- a/plugins/imagebase/lang/sq.js
+++ b/plugins/imagebase/lang/sq.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/sr-latn.js b/plugins/imagebase/lang/sr-latn.js
index 9ba4c3b8..3bff1bd8 100644
--- a/plugins/imagebase/lang/sr-latn.js
+++ b/plugins/imagebase/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/sr.js b/plugins/imagebase/lang/sr.js
index 997d2130..c8064bff 100644
--- a/plugins/imagebase/lang/sr.js
+++ b/plugins/imagebase/lang/sr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/sv.js b/plugins/imagebase/lang/sv.js
index 8af01284..9291f58d 100644
--- a/plugins/imagebase/lang/sv.js
+++ b/plugins/imagebase/lang/sv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/tr.js b/plugins/imagebase/lang/tr.js
index 69071581..cdcef328 100644
--- a/plugins/imagebase/lang/tr.js
+++ b/plugins/imagebase/lang/tr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/ug.js b/plugins/imagebase/lang/ug.js
index c3a7e988..09b2bf53 100644
--- a/plugins/imagebase/lang/ug.js
+++ b/plugins/imagebase/lang/ug.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/uk.js b/plugins/imagebase/lang/uk.js
index d2c7bd22..562549fc 100644
--- a/plugins/imagebase/lang/uk.js
+++ b/plugins/imagebase/lang/uk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/zh-cn.js b/plugins/imagebase/lang/zh-cn.js
index 2a18dfe2..b8e8582d 100644
--- a/plugins/imagebase/lang/zh-cn.js
+++ b/plugins/imagebase/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/lang/zh.js b/plugins/imagebase/lang/zh.js
index d422c655..7f237feb 100644
--- a/plugins/imagebase/lang/zh.js
+++ b/plugins/imagebase/lang/zh.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/imagebase/plugin.js b/plugins/imagebase/plugin.js
index 0317ef5a..0edf4726 100644
--- a/plugins/imagebase/plugin.js
+++ b/plugins/imagebase/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/indent/dev/indent.html b/plugins/indent/dev/indent.html
index bad8a490..55e1b29e 100644
--- a/plugins/indent/dev/indent.html
+++ b/plugins/indent/dev/indent.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
diff --git a/plugins/indent/lang/af.js b/plugins/indent/lang/af.js
index c7711524..e3403125 100644
--- a/plugins/indent/lang/af.js
+++ b/plugins/indent/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'af', {
diff --git a/plugins/indent/lang/ar.js b/plugins/indent/lang/ar.js
index da5f7f9e..3e4797b5 100644
--- a/plugins/indent/lang/ar.js
+++ b/plugins/indent/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'ar', {
diff --git a/plugins/indent/lang/az.js b/plugins/indent/lang/az.js
index fdc20863..63da57e7 100644
--- a/plugins/indent/lang/az.js
+++ b/plugins/indent/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'az', {
diff --git a/plugins/indent/lang/bg.js b/plugins/indent/lang/bg.js
index 10b7a19e..810a4c55 100644
--- a/plugins/indent/lang/bg.js
+++ b/plugins/indent/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'bg', {
diff --git a/plugins/indent/lang/bn.js b/plugins/indent/lang/bn.js
index d93ab8c8..48e7babd 100644
--- a/plugins/indent/lang/bn.js
+++ b/plugins/indent/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'bn', {
diff --git a/plugins/indent/lang/bs.js b/plugins/indent/lang/bs.js
index 9ab22068..d2590de8 100644
--- a/plugins/indent/lang/bs.js
+++ b/plugins/indent/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'bs', {
diff --git a/plugins/indent/lang/ca.js b/plugins/indent/lang/ca.js
index e9b4828d..4a836149 100644
--- a/plugins/indent/lang/ca.js
+++ b/plugins/indent/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'ca', {
diff --git a/plugins/indent/lang/cs.js b/plugins/indent/lang/cs.js
index 56351b91..cdb711a7 100644
--- a/plugins/indent/lang/cs.js
+++ b/plugins/indent/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'cs', {
diff --git a/plugins/indent/lang/cy.js b/plugins/indent/lang/cy.js
index 97fe598a..d82c5ee9 100644
--- a/plugins/indent/lang/cy.js
+++ b/plugins/indent/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'cy', {
diff --git a/plugins/indent/lang/da.js b/plugins/indent/lang/da.js
index 2af0d58a..57fb8fa1 100644
--- a/plugins/indent/lang/da.js
+++ b/plugins/indent/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'da', {
diff --git a/plugins/indent/lang/de-ch.js b/plugins/indent/lang/de-ch.js
index 683d572e..431f273e 100644
--- a/plugins/indent/lang/de-ch.js
+++ b/plugins/indent/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'de-ch', {
diff --git a/plugins/indent/lang/de.js b/plugins/indent/lang/de.js
index 59aff3c6..dd6a969b 100644
--- a/plugins/indent/lang/de.js
+++ b/plugins/indent/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'de', {
diff --git a/plugins/indent/lang/el.js b/plugins/indent/lang/el.js
index 31fccce8..371d44ef 100644
--- a/plugins/indent/lang/el.js
+++ b/plugins/indent/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'el', {
diff --git a/plugins/indent/lang/en-au.js b/plugins/indent/lang/en-au.js
index d9431244..bd48cffb 100644
--- a/plugins/indent/lang/en-au.js
+++ b/plugins/indent/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'en-au', {
diff --git a/plugins/indent/lang/en-ca.js b/plugins/indent/lang/en-ca.js
index 9b54beeb..c54ffc83 100644
--- a/plugins/indent/lang/en-ca.js
+++ b/plugins/indent/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'en-ca', {
diff --git a/plugins/indent/lang/en-gb.js b/plugins/indent/lang/en-gb.js
index 57068d7b..8f233932 100644
--- a/plugins/indent/lang/en-gb.js
+++ b/plugins/indent/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'en-gb', {
diff --git a/plugins/indent/lang/en.js b/plugins/indent/lang/en.js
index c29967ed..9a6fbba6 100644
--- a/plugins/indent/lang/en.js
+++ b/plugins/indent/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'en', {
diff --git a/plugins/indent/lang/eo.js b/plugins/indent/lang/eo.js
index cfe7befe..e85a78a3 100644
--- a/plugins/indent/lang/eo.js
+++ b/plugins/indent/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'eo', {
diff --git a/plugins/indent/lang/es-mx.js b/plugins/indent/lang/es-mx.js
index 4f568517..a4f2b73b 100644
--- a/plugins/indent/lang/es-mx.js
+++ b/plugins/indent/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'es-mx', {
diff --git a/plugins/indent/lang/es.js b/plugins/indent/lang/es.js
index 26aad474..feb61b37 100644
--- a/plugins/indent/lang/es.js
+++ b/plugins/indent/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'es', {
diff --git a/plugins/indent/lang/et.js b/plugins/indent/lang/et.js
index cb33e4f7..2a9ba7da 100644
--- a/plugins/indent/lang/et.js
+++ b/plugins/indent/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'et', {
diff --git a/plugins/indent/lang/eu.js b/plugins/indent/lang/eu.js
index 251e4ab6..58ce5a2c 100644
--- a/plugins/indent/lang/eu.js
+++ b/plugins/indent/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'eu', {
diff --git a/plugins/indent/lang/fa.js b/plugins/indent/lang/fa.js
index f52b0261..09b87bdf 100644
--- a/plugins/indent/lang/fa.js
+++ b/plugins/indent/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'fa', {
diff --git a/plugins/indent/lang/fi.js b/plugins/indent/lang/fi.js
index 8a9a82c4..0ea8d732 100644
--- a/plugins/indent/lang/fi.js
+++ b/plugins/indent/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'fi', {
diff --git a/plugins/indent/lang/fo.js b/plugins/indent/lang/fo.js
index d852f4e2..82b7d04f 100644
--- a/plugins/indent/lang/fo.js
+++ b/plugins/indent/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'fo', {
diff --git a/plugins/indent/lang/fr-ca.js b/plugins/indent/lang/fr-ca.js
index 73352ade..c6e50cc2 100644
--- a/plugins/indent/lang/fr-ca.js
+++ b/plugins/indent/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'fr-ca', {
diff --git a/plugins/indent/lang/fr.js b/plugins/indent/lang/fr.js
index 7c47aaa6..00857ad5 100644
--- a/plugins/indent/lang/fr.js
+++ b/plugins/indent/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'fr', {
diff --git a/plugins/indent/lang/gl.js b/plugins/indent/lang/gl.js
index a02c43c6..602a731f 100644
--- a/plugins/indent/lang/gl.js
+++ b/plugins/indent/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'gl', {
diff --git a/plugins/indent/lang/gu.js b/plugins/indent/lang/gu.js
index 1259d027..07c07731 100644
--- a/plugins/indent/lang/gu.js
+++ b/plugins/indent/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'gu', {
diff --git a/plugins/indent/lang/he.js b/plugins/indent/lang/he.js
index 3e496e2d..93d14fe3 100644
--- a/plugins/indent/lang/he.js
+++ b/plugins/indent/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'he', {
diff --git a/plugins/indent/lang/hi.js b/plugins/indent/lang/hi.js
index f63dcce9..d70794cd 100644
--- a/plugins/indent/lang/hi.js
+++ b/plugins/indent/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'hi', {
diff --git a/plugins/indent/lang/hr.js b/plugins/indent/lang/hr.js
index 148c1c67..af67e0fe 100644
--- a/plugins/indent/lang/hr.js
+++ b/plugins/indent/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'hr', {
diff --git a/plugins/indent/lang/hu.js b/plugins/indent/lang/hu.js
index 3b120bc9..24fb731f 100644
--- a/plugins/indent/lang/hu.js
+++ b/plugins/indent/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'hu', {
diff --git a/plugins/indent/lang/id.js b/plugins/indent/lang/id.js
index e04e3f8d..5125ee03 100644
--- a/plugins/indent/lang/id.js
+++ b/plugins/indent/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'id', {
diff --git a/plugins/indent/lang/is.js b/plugins/indent/lang/is.js
index a7358a25..32594900 100644
--- a/plugins/indent/lang/is.js
+++ b/plugins/indent/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'is', {
diff --git a/plugins/indent/lang/it.js b/plugins/indent/lang/it.js
index b03627b7..068f32fe 100644
--- a/plugins/indent/lang/it.js
+++ b/plugins/indent/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'it', {
diff --git a/plugins/indent/lang/ja.js b/plugins/indent/lang/ja.js
index 72a4cb3b..4f19efc0 100644
--- a/plugins/indent/lang/ja.js
+++ b/plugins/indent/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'ja', {
diff --git a/plugins/indent/lang/ka.js b/plugins/indent/lang/ka.js
index dac99868..df16095b 100644
--- a/plugins/indent/lang/ka.js
+++ b/plugins/indent/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'ka', {
diff --git a/plugins/indent/lang/km.js b/plugins/indent/lang/km.js
index 1a3dcb1b..a37e200c 100644
--- a/plugins/indent/lang/km.js
+++ b/plugins/indent/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'km', {
diff --git a/plugins/indent/lang/ko.js b/plugins/indent/lang/ko.js
index 61c4ec53..c244736c 100644
--- a/plugins/indent/lang/ko.js
+++ b/plugins/indent/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'ko', {
diff --git a/plugins/indent/lang/ku.js b/plugins/indent/lang/ku.js
index f9a40ffd..68cc7c4c 100644
--- a/plugins/indent/lang/ku.js
+++ b/plugins/indent/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'ku', {
diff --git a/plugins/indent/lang/lt.js b/plugins/indent/lang/lt.js
index fcaa9d4b..3681bc73 100644
--- a/plugins/indent/lang/lt.js
+++ b/plugins/indent/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'lt', {
diff --git a/plugins/indent/lang/lv.js b/plugins/indent/lang/lv.js
index 8ff268e4..92f302ef 100644
--- a/plugins/indent/lang/lv.js
+++ b/plugins/indent/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'lv', {
diff --git a/plugins/indent/lang/mk.js b/plugins/indent/lang/mk.js
index a4029471..d18f248e 100644
--- a/plugins/indent/lang/mk.js
+++ b/plugins/indent/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'mk', {
diff --git a/plugins/indent/lang/mn.js b/plugins/indent/lang/mn.js
index 12ac8bd7..ec4529ce 100644
--- a/plugins/indent/lang/mn.js
+++ b/plugins/indent/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'mn', {
diff --git a/plugins/indent/lang/ms.js b/plugins/indent/lang/ms.js
index 86c0e02a..a3463d18 100644
--- a/plugins/indent/lang/ms.js
+++ b/plugins/indent/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'ms', {
diff --git a/plugins/indent/lang/nb.js b/plugins/indent/lang/nb.js
index 1dae99b0..918811fc 100644
--- a/plugins/indent/lang/nb.js
+++ b/plugins/indent/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'nb', {
diff --git a/plugins/indent/lang/nl.js b/plugins/indent/lang/nl.js
index fb394c40..88677c93 100644
--- a/plugins/indent/lang/nl.js
+++ b/plugins/indent/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'nl', {
diff --git a/plugins/indent/lang/no.js b/plugins/indent/lang/no.js
index 24b3aaa8..8a6e3377 100644
--- a/plugins/indent/lang/no.js
+++ b/plugins/indent/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'no', {
diff --git a/plugins/indent/lang/oc.js b/plugins/indent/lang/oc.js
index dbd8d284..090bd502 100644
--- a/plugins/indent/lang/oc.js
+++ b/plugins/indent/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'oc', {
diff --git a/plugins/indent/lang/pl.js b/plugins/indent/lang/pl.js
index d5ebe210..349b1da7 100644
--- a/plugins/indent/lang/pl.js
+++ b/plugins/indent/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'pl', {
diff --git a/plugins/indent/lang/pt-br.js b/plugins/indent/lang/pt-br.js
index 1bf4f768..84850185 100644
--- a/plugins/indent/lang/pt-br.js
+++ b/plugins/indent/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'pt-br', {
diff --git a/plugins/indent/lang/pt.js b/plugins/indent/lang/pt.js
index 86ce72b8..eba71a00 100644
--- a/plugins/indent/lang/pt.js
+++ b/plugins/indent/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'pt', {
diff --git a/plugins/indent/lang/ro.js b/plugins/indent/lang/ro.js
index acc69434..c64e1d15 100644
--- a/plugins/indent/lang/ro.js
+++ b/plugins/indent/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'ro', {
diff --git a/plugins/indent/lang/ru.js b/plugins/indent/lang/ru.js
index 178d361c..236c4d48 100644
--- a/plugins/indent/lang/ru.js
+++ b/plugins/indent/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'ru', {
diff --git a/plugins/indent/lang/si.js b/plugins/indent/lang/si.js
index a306948b..1462c2df 100644
--- a/plugins/indent/lang/si.js
+++ b/plugins/indent/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'si', {
diff --git a/plugins/indent/lang/sk.js b/plugins/indent/lang/sk.js
index da09404e..ebe36e0a 100644
--- a/plugins/indent/lang/sk.js
+++ b/plugins/indent/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'sk', {
diff --git a/plugins/indent/lang/sl.js b/plugins/indent/lang/sl.js
index f84436d6..6118c661 100644
--- a/plugins/indent/lang/sl.js
+++ b/plugins/indent/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'sl', {
diff --git a/plugins/indent/lang/sq.js b/plugins/indent/lang/sq.js
index 5e5cb4e7..ae34cba3 100644
--- a/plugins/indent/lang/sq.js
+++ b/plugins/indent/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'sq', {
diff --git a/plugins/indent/lang/sr-latn.js b/plugins/indent/lang/sr-latn.js
index 0df45ffe..00a1467c 100644
--- a/plugins/indent/lang/sr-latn.js
+++ b/plugins/indent/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'sr-latn', {
diff --git a/plugins/indent/lang/sr.js b/plugins/indent/lang/sr.js
index a56dd59a..a1802107 100644
--- a/plugins/indent/lang/sr.js
+++ b/plugins/indent/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'sr', {
diff --git a/plugins/indent/lang/sv.js b/plugins/indent/lang/sv.js
index 201a1e1d..3f7d2957 100644
--- a/plugins/indent/lang/sv.js
+++ b/plugins/indent/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'sv', {
diff --git a/plugins/indent/lang/th.js b/plugins/indent/lang/th.js
index 8888f787..5df59502 100644
--- a/plugins/indent/lang/th.js
+++ b/plugins/indent/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'th', {
diff --git a/plugins/indent/lang/tr.js b/plugins/indent/lang/tr.js
index f34231ca..63cca04d 100644
--- a/plugins/indent/lang/tr.js
+++ b/plugins/indent/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'tr', {
diff --git a/plugins/indent/lang/tt.js b/plugins/indent/lang/tt.js
index 0a35103a..449e15f6 100644
--- a/plugins/indent/lang/tt.js
+++ b/plugins/indent/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'tt', {
diff --git a/plugins/indent/lang/ug.js b/plugins/indent/lang/ug.js
index c6e1c043..c13cea1f 100644
--- a/plugins/indent/lang/ug.js
+++ b/plugins/indent/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'ug', {
diff --git a/plugins/indent/lang/uk.js b/plugins/indent/lang/uk.js
index 7a9de0e9..31cf3e99 100644
--- a/plugins/indent/lang/uk.js
+++ b/plugins/indent/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'uk', {
diff --git a/plugins/indent/lang/vi.js b/plugins/indent/lang/vi.js
index 9709b0e4..64346c29 100644
--- a/plugins/indent/lang/vi.js
+++ b/plugins/indent/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'vi', {
diff --git a/plugins/indent/lang/zh-cn.js b/plugins/indent/lang/zh-cn.js
index aa5e69c6..20d960f2 100644
--- a/plugins/indent/lang/zh-cn.js
+++ b/plugins/indent/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'zh-cn', {
diff --git a/plugins/indent/lang/zh.js b/plugins/indent/lang/zh.js
index 278ec976..8e70eb64 100644
--- a/plugins/indent/lang/zh.js
+++ b/plugins/indent/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'indent', 'zh', {
diff --git a/plugins/indent/plugin.js b/plugins/indent/plugin.js
index f394ab5c..ad9ed550 100755
--- a/plugins/indent/plugin.js
+++ b/plugins/indent/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/indentblock/plugin.js b/plugins/indentblock/plugin.js
index 6ca6e5c2..42dd230d 100644
--- a/plugins/indentblock/plugin.js
+++ b/plugins/indentblock/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/indentlist/plugin.js b/plugins/indentlist/plugin.js
index 9e397a29..c0d4f3dc 100644
--- a/plugins/indentlist/plugin.js
+++ b/plugins/indentlist/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/justify/plugin.js b/plugins/justify/plugin.js
index f3d9c424..1806e681 100755
--- a/plugins/justify/plugin.js
+++ b/plugins/justify/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/ar.js b/plugins/language/lang/ar.js
index b781b90e..4744790d 100644
--- a/plugins/language/lang/ar.js
+++ b/plugins/language/lang/ar.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/az.js b/plugins/language/lang/az.js
index 72d822de..d6ecd147 100644
--- a/plugins/language/lang/az.js
+++ b/plugins/language/lang/az.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/bg.js b/plugins/language/lang/bg.js
index ee9816e9..52586e22 100644
--- a/plugins/language/lang/bg.js
+++ b/plugins/language/lang/bg.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/ca.js b/plugins/language/lang/ca.js
index bb643a9c..bf7300c1 100644
--- a/plugins/language/lang/ca.js
+++ b/plugins/language/lang/ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/cs.js b/plugins/language/lang/cs.js
index f7da8460..1fd076df 100644
--- a/plugins/language/lang/cs.js
+++ b/plugins/language/lang/cs.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/cy.js b/plugins/language/lang/cy.js
index c4512c91..9d0c2a62 100644
--- a/plugins/language/lang/cy.js
+++ b/plugins/language/lang/cy.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/da.js b/plugins/language/lang/da.js
index 40393eb8..83eabe55 100644
--- a/plugins/language/lang/da.js
+++ b/plugins/language/lang/da.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/de-ch.js b/plugins/language/lang/de-ch.js
index deeb8cd4..1777e467 100644
--- a/plugins/language/lang/de-ch.js
+++ b/plugins/language/lang/de-ch.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/de.js b/plugins/language/lang/de.js
index 52336d2b..a47b8f8b 100644
--- a/plugins/language/lang/de.js
+++ b/plugins/language/lang/de.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/el.js b/plugins/language/lang/el.js
index 0f3beb86..3e4142dd 100644
--- a/plugins/language/lang/el.js
+++ b/plugins/language/lang/el.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/en-au.js b/plugins/language/lang/en-au.js
index f9623169..c46c770e 100644
--- a/plugins/language/lang/en-au.js
+++ b/plugins/language/lang/en-au.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/en-gb.js b/plugins/language/lang/en-gb.js
index b8165aa4..9b66d984 100644
--- a/plugins/language/lang/en-gb.js
+++ b/plugins/language/lang/en-gb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/en.js b/plugins/language/lang/en.js
index 47d3d781..235a9aa3 100644
--- a/plugins/language/lang/en.js
+++ b/plugins/language/lang/en.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/eo.js b/plugins/language/lang/eo.js
index cb9783f4..6430d267 100644
--- a/plugins/language/lang/eo.js
+++ b/plugins/language/lang/eo.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/es-mx.js b/plugins/language/lang/es-mx.js
index 9ffb4aca..bc3734ce 100644
--- a/plugins/language/lang/es-mx.js
+++ b/plugins/language/lang/es-mx.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/es.js b/plugins/language/lang/es.js
index e9669544..7a85c7b2 100644
--- a/plugins/language/lang/es.js
+++ b/plugins/language/lang/es.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/et.js b/plugins/language/lang/et.js
index 01fb11cb..43536e4a 100644
--- a/plugins/language/lang/et.js
+++ b/plugins/language/lang/et.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/eu.js b/plugins/language/lang/eu.js
index ca00d587..aeb2ef74 100644
--- a/plugins/language/lang/eu.js
+++ b/plugins/language/lang/eu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/fa.js b/plugins/language/lang/fa.js
index 5d0125dd..af289283 100644
--- a/plugins/language/lang/fa.js
+++ b/plugins/language/lang/fa.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/fi.js b/plugins/language/lang/fi.js
index ae8a34c6..6c62fbbd 100644
--- a/plugins/language/lang/fi.js
+++ b/plugins/language/lang/fi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/fo.js b/plugins/language/lang/fo.js
index 125f3670..cdcb589e 100644
--- a/plugins/language/lang/fo.js
+++ b/plugins/language/lang/fo.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/fr.js b/plugins/language/lang/fr.js
index 1d94366e..77118dff 100644
--- a/plugins/language/lang/fr.js
+++ b/plugins/language/lang/fr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/gl.js b/plugins/language/lang/gl.js
index 24a29c82..ba79f2a0 100644
--- a/plugins/language/lang/gl.js
+++ b/plugins/language/lang/gl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/he.js b/plugins/language/lang/he.js
index 5a7e96c8..d8a05832 100644
--- a/plugins/language/lang/he.js
+++ b/plugins/language/lang/he.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/hr.js b/plugins/language/lang/hr.js
index 19b88de9..6ed5340b 100644
--- a/plugins/language/lang/hr.js
+++ b/plugins/language/lang/hr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/hu.js b/plugins/language/lang/hu.js
index 5054f2d5..c966b52b 100644
--- a/plugins/language/lang/hu.js
+++ b/plugins/language/lang/hu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/id.js b/plugins/language/lang/id.js
index 6a192221..ca800180 100644
--- a/plugins/language/lang/id.js
+++ b/plugins/language/lang/id.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/it.js b/plugins/language/lang/it.js
index efd0ecd5..a4c4b464 100644
--- a/plugins/language/lang/it.js
+++ b/plugins/language/lang/it.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/ja.js b/plugins/language/lang/ja.js
index fd11a8da..b1231db1 100644
--- a/plugins/language/lang/ja.js
+++ b/plugins/language/lang/ja.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/km.js b/plugins/language/lang/km.js
index 9961fd73..1eb63a1c 100644
--- a/plugins/language/lang/km.js
+++ b/plugins/language/lang/km.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/ko.js b/plugins/language/lang/ko.js
index 83a66cbf..5e5bf8f1 100644
--- a/plugins/language/lang/ko.js
+++ b/plugins/language/lang/ko.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/ku.js b/plugins/language/lang/ku.js
index aab7c82a..6f825b92 100644
--- a/plugins/language/lang/ku.js
+++ b/plugins/language/lang/ku.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/lt.js b/plugins/language/lang/lt.js
index 0d3850a5..538b3e03 100644
--- a/plugins/language/lang/lt.js
+++ b/plugins/language/lang/lt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/lv.js b/plugins/language/lang/lv.js
index d091e4c4..517065be 100644
--- a/plugins/language/lang/lv.js
+++ b/plugins/language/lang/lv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/nb.js b/plugins/language/lang/nb.js
index 1d66ff99..98c9c01d 100644
--- a/plugins/language/lang/nb.js
+++ b/plugins/language/lang/nb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/nl.js b/plugins/language/lang/nl.js
index 8d025806..1f38af20 100644
--- a/plugins/language/lang/nl.js
+++ b/plugins/language/lang/nl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/no.js b/plugins/language/lang/no.js
index 98610a88..0f62f9d0 100644
--- a/plugins/language/lang/no.js
+++ b/plugins/language/lang/no.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/oc.js b/plugins/language/lang/oc.js
index 772ef918..22b4f1dd 100644
--- a/plugins/language/lang/oc.js
+++ b/plugins/language/lang/oc.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/pl.js b/plugins/language/lang/pl.js
index a660710d..7eaee9aa 100644
--- a/plugins/language/lang/pl.js
+++ b/plugins/language/lang/pl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/pt-br.js b/plugins/language/lang/pt-br.js
index 01e0238e..ac5845d9 100644
--- a/plugins/language/lang/pt-br.js
+++ b/plugins/language/lang/pt-br.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/pt.js b/plugins/language/lang/pt.js
index d5473ec4..03c16e07 100644
--- a/plugins/language/lang/pt.js
+++ b/plugins/language/lang/pt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/ro.js b/plugins/language/lang/ro.js
index 6e9455ee..ca782e56 100644
--- a/plugins/language/lang/ro.js
+++ b/plugins/language/lang/ro.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/ru.js b/plugins/language/lang/ru.js
index b9ade9a9..738059b8 100644
--- a/plugins/language/lang/ru.js
+++ b/plugins/language/lang/ru.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/sk.js b/plugins/language/lang/sk.js
index aee27a08..402f6e14 100644
--- a/plugins/language/lang/sk.js
+++ b/plugins/language/lang/sk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/sl.js b/plugins/language/lang/sl.js
index 064313da..a1a3cd49 100644
--- a/plugins/language/lang/sl.js
+++ b/plugins/language/lang/sl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/sq.js b/plugins/language/lang/sq.js
index d421ea24..f2d21fc4 100644
--- a/plugins/language/lang/sq.js
+++ b/plugins/language/lang/sq.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/sr-latn.js b/plugins/language/lang/sr-latn.js
index 50cd539a..4b12638f 100644
--- a/plugins/language/lang/sr-latn.js
+++ b/plugins/language/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/sr.js b/plugins/language/lang/sr.js
index 879b2674..444f9200 100644
--- a/plugins/language/lang/sr.js
+++ b/plugins/language/lang/sr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/sv.js b/plugins/language/lang/sv.js
index 964c272c..1e231f44 100644
--- a/plugins/language/lang/sv.js
+++ b/plugins/language/lang/sv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/tr.js b/plugins/language/lang/tr.js
index 04e6ff86..071f5107 100644
--- a/plugins/language/lang/tr.js
+++ b/plugins/language/lang/tr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/tt.js b/plugins/language/lang/tt.js
index 69ce7620..a48388ad 100644
--- a/plugins/language/lang/tt.js
+++ b/plugins/language/lang/tt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/ug.js b/plugins/language/lang/ug.js
index 1e9fa16a..3faeb342 100644
--- a/plugins/language/lang/ug.js
+++ b/plugins/language/lang/ug.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/uk.js b/plugins/language/lang/uk.js
index 023824da..1b9c7bc1 100644
--- a/plugins/language/lang/uk.js
+++ b/plugins/language/lang/uk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/vi.js b/plugins/language/lang/vi.js
index 2547e502..1eb28d71 100644
--- a/plugins/language/lang/vi.js
+++ b/plugins/language/lang/vi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/zh-cn.js b/plugins/language/lang/zh-cn.js
index 00cae44b..00067e6e 100644
--- a/plugins/language/lang/zh-cn.js
+++ b/plugins/language/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/lang/zh.js b/plugins/language/lang/zh.js
index 8b064794..3de4d4b6 100644
--- a/plugins/language/lang/zh.js
+++ b/plugins/language/lang/zh.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/language/plugin.js b/plugins/language/plugin.js
index a2396583..e9ced082 100644
--- a/plugins/language/plugin.js
+++ b/plugins/language/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/lineutils/dev/dnd.html b/plugins/lineutils/dev/dnd.html
index f01d28bc..3cc1d1d8 100644
--- a/plugins/lineutils/dev/dnd.html
+++ b/plugins/lineutils/dev/dnd.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
@@ -164,7 +164,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/lineutils/dev/magicfinger.html b/plugins/lineutils/dev/magicfinger.html
index 33baa4cd..e6906e7c 100644
--- a/plugins/lineutils/dev/magicfinger.html
+++ b/plugins/lineutils/dev/magicfinger.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
@@ -277,7 +277,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/lineutils/plugin.js b/plugins/lineutils/plugin.js
index 0699fb0b..66da8beb 100644
--- a/plugins/lineutils/plugin.js
+++ b/plugins/lineutils/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/link/dialogs/anchor.js b/plugins/link/dialogs/anchor.js
index 7f15dd25..42ac52c0 100755
--- a/plugins/link/dialogs/anchor.js
+++ b/plugins/link/dialogs/anchor.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -136,10 +136,23 @@ CKEDITOR.dialog.add( 'anchor', function( editor ) {
 				label: editor.lang.link.anchor.name,
 				required: true,
 				validate: function() {
-					if ( !this.getValue() ) {
+					// https://html.spec.whatwg.org/multipage/dom.html#global-attributes
+					// The id attribute value must not contain any space characters (#5305).
+					// [ space, tabulation, line feed, new line, form feed, carriage return ]
+					var disallowedWhitespacesRegex = /[\u0020\u0009\u000a\u000c\u000d]/g,
+						content = this.getValue();
+
+					if ( !content ) {
 						alert( editor.lang.link.anchor.errorName ); // jshint ignore:line
 						return false;
 					}
+
+					// Disallow creating anchors with space characters (#5305).
+					if ( disallowedWhitespacesRegex.test( content ) ) {
+						alert( editor.lang.link.anchor.errorWhitespace ); // jshint ignore:line
+						return false;
+					}
+
 					return true;
 				}
 			} ]
diff --git a/plugins/link/dialogs/link.js b/plugins/link/dialogs/link.js
index 2bad32d9..46e452e7 100755
--- a/plugins/link/dialogs/link.js
+++ b/plugins/link/dialogs/link.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/link/lang/af.js b/plugins/link/lang/af.js
index c7b0c105..a9a81e68 100644
--- a/plugins/link/lang/af.js
+++ b/plugins/link/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'af', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'af', {
 		title: 'Anker-eienskappe',
 		name: 'Ankernaam',
 		errorName: 'Voltooi die ankernaam asseblief',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remove Anchor'
 	},
 	anchorId: 'Op element Id',
diff --git a/plugins/link/lang/ar.js b/plugins/link/lang/ar.js
index a36a3208..14b8a5a6 100644
--- a/plugins/link/lang/ar.js
+++ b/plugins/link/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'ar', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'ar', {
 		title: 'خصائص الإشارة المرجعية',
 		name: 'اسم الإشارة المرجعية',
 		errorName: 'الرجاء كتابة اسم الإشارة المرجعية',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'إزالة الإشارة المرجعية'
 	},
 	anchorId: 'حسب رقم العنصر',
diff --git a/plugins/link/lang/az.js b/plugins/link/lang/az.js
index cfdd4c5f..23527b0a 100644
--- a/plugins/link/lang/az.js
+++ b/plugins/link/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'az', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'az', {
 		title: 'Xeşin seçimləri',
 		name: 'Xeşin adı',
 		errorName: 'Xeşin adı yanlışdır',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Xeşin adı sil'
 	},
 	anchorId: 'ID görə',
diff --git a/plugins/link/lang/bg.js b/plugins/link/lang/bg.js
index 64c07744..c56d9111 100644
--- a/plugins/link/lang/bg.js
+++ b/plugins/link/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'bg', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'bg', {
 		title: 'Настройки на котва',
 		name: 'Име на котва',
 		errorName: 'Моля въведете име на котвата',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Премахване на котва'
 	},
 	anchorId: 'По ID на елемент',
diff --git a/plugins/link/lang/bn.js b/plugins/link/lang/bn.js
index 43dc6230..7f9e86f1 100644
--- a/plugins/link/lang/bn.js
+++ b/plugins/link/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'bn', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'bn', {
 		title: 'নোঙর প্রোপার্টি',
 		name: 'নোঙরের নাম',
 		errorName: 'নোঙরের নাম টাইপ করুন',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remove Anchor'
 	},
 	anchorId: 'নোঙরের আইডি দিয়ে',
diff --git a/plugins/link/lang/bs.js b/plugins/link/lang/bs.js
index f1646bd4..758e0824 100644
--- a/plugins/link/lang/bs.js
+++ b/plugins/link/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'bs', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'bs', {
 		title: 'Anchor Properties',
 		name: 'Anchor Name',
 		errorName: 'Please type the anchor name',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remove Anchor'
 	},
 	anchorId: 'Po Id-u elementa',
diff --git a/plugins/link/lang/ca.js b/plugins/link/lang/ca.js
index a9ce1e35..1c16523c 100644
--- a/plugins/link/lang/ca.js
+++ b/plugins/link/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'ca', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'ca', {
 		title: 'Propietats de l\'àncora',
 		name: 'Nom de l\'àncora',
 		errorName: 'Si us plau, escriviu el nom de l\'ancora',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remove Anchor'
 	},
 	anchorId: 'Per Id d\'element',
diff --git a/plugins/link/lang/cs.js b/plugins/link/lang/cs.js
index aeef6db3..2e5fc26c 100644
--- a/plugins/link/lang/cs.js
+++ b/plugins/link/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'cs', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'cs', {
 		title: 'Vlastnosti záložky',
 		name: 'Název záložky',
 		errorName: 'Zadejte prosím název záložky',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Odstranit záložku'
 	},
 	anchorId: 'Podle Id objektu',
diff --git a/plugins/link/lang/cy.js b/plugins/link/lang/cy.js
index 62b6cf5b..2b12b9b7 100644
--- a/plugins/link/lang/cy.js
+++ b/plugins/link/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'cy', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'cy', {
 		title: 'Priodweddau\'r Angor',
 		name: 'Enw\'r Angor',
 		errorName: 'Teipiwch enw\'r angor',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Tynnwch yr Angor'
 	},
 	anchorId: 'Gan Id yr Elfen',
diff --git a/plugins/link/lang/da.js b/plugins/link/lang/da.js
index 167d38d6..bf284804 100644
--- a/plugins/link/lang/da.js
+++ b/plugins/link/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'da', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'da', {
 		title: 'Egenskaber for bogmærke',
 		name: 'Bogmærkenavn',
 		errorName: 'Indtast bogmærkenavn',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Fjern bogmærke'
 	},
 	anchorId: 'Efter element-Id',
diff --git a/plugins/link/lang/de-ch.js b/plugins/link/lang/de-ch.js
index edde6e63..0994c662 100644
--- a/plugins/link/lang/de-ch.js
+++ b/plugins/link/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'de-ch', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'de-ch', {
 		title: 'Ankereigenschaften',
 		name: 'Ankername',
 		errorName: 'Bitte geben Sie den Namen des Ankers ein',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Anker entfernen'
 	},
 	anchorId: 'Nach Elementkennung',
diff --git a/plugins/link/lang/de.js b/plugins/link/lang/de.js
index 4700f52d..1e3c8e85 100644
--- a/plugins/link/lang/de.js
+++ b/plugins/link/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'de', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'de', {
 		title: 'Ankereigenschaften',
 		name: 'Ankername',
 		errorName: 'Bitte geben Sie den Namen des Ankers ein',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Anker entfernen'
 	},
 	anchorId: 'Nach Elementkennung',
diff --git a/plugins/link/lang/el.js b/plugins/link/lang/el.js
index 1985ae18..6694ee54 100644
--- a/plugins/link/lang/el.js
+++ b/plugins/link/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'el', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'el', {
 		title: 'Ιδιότητες άγκυρας',
 		name: 'Όνομα άγκυρας',
 		errorName: 'Παρακαλούμε εισάγετε όνομα άγκυρας',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Αφαίρεση Άγκυρας'
 	},
 	anchorId: 'Βάσει του Element Id',
diff --git a/plugins/link/lang/en-au.js b/plugins/link/lang/en-au.js
index 757af937..690e144b 100644
--- a/plugins/link/lang/en-au.js
+++ b/plugins/link/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'en-au', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'en-au', {
 		title: 'Anchor Properties',
 		name: 'Anchor Name',
 		errorName: 'Please type the anchor name',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remove Anchor'
 	},
 	anchorId: 'By Element Id',
diff --git a/plugins/link/lang/en-ca.js b/plugins/link/lang/en-ca.js
index 0018cbbe..2c643352 100644
--- a/plugins/link/lang/en-ca.js
+++ b/plugins/link/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'en-ca', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'en-ca', {
 		title: 'Anchor Properties',
 		name: 'Anchor Name',
 		errorName: 'Please type the anchor name',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remove Anchor'
 	},
 	anchorId: 'By Element Id',
diff --git a/plugins/link/lang/en-gb.js b/plugins/link/lang/en-gb.js
index f6b8dd28..26676491 100644
--- a/plugins/link/lang/en-gb.js
+++ b/plugins/link/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'en-gb', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'en-gb', {
 		title: 'Anchor Properties',
 		name: 'Anchor Name',
 		errorName: 'Please type the anchor name',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remove Anchor'
 	},
 	anchorId: 'By Element Id',
diff --git a/plugins/link/lang/en.js b/plugins/link/lang/en.js
index 2efc05dd..2c4b7365 100644
--- a/plugins/link/lang/en.js
+++ b/plugins/link/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'en', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'en', {
 		title: 'Anchor Properties',
 		name: 'Anchor Name',
 		errorName: 'Please type the anchor name',
+		errorWhitespace: 'Anchor name cannot contain space characters',
 		remove: 'Remove Anchor'
 	},
 	anchorId: 'By Element Id',
diff --git a/plugins/link/lang/eo.js b/plugins/link/lang/eo.js
index 0a75efa2..c6e43d5b 100644
--- a/plugins/link/lang/eo.js
+++ b/plugins/link/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'eo', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'eo', {
 		title: 'Ankraj Atributoj',
 		name: 'Ankra Nomo',
 		errorName: 'Bv entajpi la ankran nomon',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Forigi Ankron'
 	},
 	anchorId: 'Per Elementidentigilo',
diff --git a/plugins/link/lang/es-mx.js b/plugins/link/lang/es-mx.js
index 1f00de52..bd323022 100644
--- a/plugins/link/lang/es-mx.js
+++ b/plugins/link/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'es-mx', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'es-mx', {
 		title: 'Propiedades del ancla',
 		name: 'Nombre del ancla',
 		errorName: 'Escriba el nombre del ancla',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remover ancla'
 	},
 	anchorId: 'Por Id del elemento',
diff --git a/plugins/link/lang/es.js b/plugins/link/lang/es.js
index 8e1a7d14..a292719b 100644
--- a/plugins/link/lang/es.js
+++ b/plugins/link/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'es', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'es', {
 		title: 'Propiedades de Referencia',
 		name: 'Nombre de la Referencia',
 		errorName: 'Por favor, complete el nombre de la Referencia',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Quitar Referencia'
 	},
 	anchorId: 'Por ID de elemento',
diff --git a/plugins/link/lang/et.js b/plugins/link/lang/et.js
index b880c554..eaf43e59 100644
--- a/plugins/link/lang/et.js
+++ b/plugins/link/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'et', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'et', {
 		title: 'Ankru omadused',
 		name: 'Ankru nimi',
 		errorName: 'Palun sisesta ankru nimi',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Eemalda ankur'
 	},
 	anchorId: 'Elemendi id järgi',
diff --git a/plugins/link/lang/eu.js b/plugins/link/lang/eu.js
index e4d94350..a4b58749 100644
--- a/plugins/link/lang/eu.js
+++ b/plugins/link/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'eu', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'eu', {
 		title: 'Ainguraren propietateak',
 		name: 'Ainguraren izena',
 		errorName: 'Idatzi ainguraren izena',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Kendu aingura'
 	},
 	anchorId: 'Elementuaren Id-aren arabera',
diff --git a/plugins/link/lang/fa.js b/plugins/link/lang/fa.js
index 45b713df..cfaae587 100644
--- a/plugins/link/lang/fa.js
+++ b/plugins/link/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'fa', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'fa', {
 		title: 'ویژگی​های لینک',
 		name: 'نام لینک',
 		errorName: 'لطفا نام لنگر را بنویسید',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'حذف لینک'
 	},
 	anchorId: 'با شناسهٴ المان',
diff --git a/plugins/link/lang/fi.js b/plugins/link/lang/fi.js
index 48b3682b..88ec8556 100644
--- a/plugins/link/lang/fi.js
+++ b/plugins/link/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'fi', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'fi', {
 		title: 'Ankkurin ominaisuudet',
 		name: 'Nimi',
 		errorName: 'Ankkurille on kirjoitettava nimi',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Poista ankkuri'
 	},
 	anchorId: 'Ankkurin ID:n mukaan',
diff --git a/plugins/link/lang/fo.js b/plugins/link/lang/fo.js
index 0981828d..aa513599 100644
--- a/plugins/link/lang/fo.js
+++ b/plugins/link/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'fo', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'fo', {
 		title: 'Eginleikar fyri marknastein',
 		name: 'Heiti marknasteinsins',
 		errorName: 'Vinarliga rita marknasteinsins heiti',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Strika marknastein'
 	},
 	anchorId: 'Eftir element Id',
diff --git a/plugins/link/lang/fr-ca.js b/plugins/link/lang/fr-ca.js
index 56a2c492..effc755d 100644
--- a/plugins/link/lang/fr-ca.js
+++ b/plugins/link/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'fr-ca', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'fr-ca', {
 		title: 'Propriétés de l\'ancre',
 		name: 'Nom de l\'ancre',
 		errorName: 'Veuillez saisir le nom de l\'ancre',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Supprimer l\'ancre'
 	},
 	anchorId: 'Par ID',
diff --git a/plugins/link/lang/fr.js b/plugins/link/lang/fr.js
index 62583abe..1f8fb601 100644
--- a/plugins/link/lang/fr.js
+++ b/plugins/link/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'fr', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'fr', {
 		title: 'Propriétés de l\'ancre',
 		name: 'Nom de l\'ancre',
 		errorName: 'Veuillez entrer le nom de l\'ancre.',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Supprimer l\'ancre'
 	},
 	anchorId: 'Par ID d\'élément',
diff --git a/plugins/link/lang/gl.js b/plugins/link/lang/gl.js
index cd4cccff..7f5f6a32 100644
--- a/plugins/link/lang/gl.js
+++ b/plugins/link/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'gl', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'gl', {
 		title: 'Propiedades da ancoraxe',
 		name: 'Nome da ancoraxe',
 		errorName: 'Escriba o nome da ancoraxe',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Retirar a ancoraxe'
 	},
 	anchorId: 'Polo ID do elemento',
diff --git a/plugins/link/lang/gu.js b/plugins/link/lang/gu.js
index 6c35dde9..f517dc3c 100644
--- a/plugins/link/lang/gu.js
+++ b/plugins/link/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'gu', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'gu', {
 		title: 'ઍંકરના ગુણ',
 		name: 'ઍંકરનું નામ',
 		errorName: 'ઍંકરનું નામ ટાઈપ કરો',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'સ્થિર નકરવું'
 	},
 	anchorId: 'ઍંકર એલિમન્ટ Id થી પસંદ કરો',
diff --git a/plugins/link/lang/he.js b/plugins/link/lang/he.js
index 8d0f459b..eb8e622d 100644
--- a/plugins/link/lang/he.js
+++ b/plugins/link/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'he', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'he', {
 		title: 'מאפייני נקודת עיגון',
 		name: 'שם לנקודת עיגון',
 		errorName: 'יש להקליד שם לנקודת עיגון',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'מחיקת נקודת עיגון'
 	},
 	anchorId: 'עפ"י זיהוי (ID) האלמנט',
diff --git a/plugins/link/lang/hi.js b/plugins/link/lang/hi.js
index a6c46c5e..7b7439a5 100644
--- a/plugins/link/lang/hi.js
+++ b/plugins/link/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'hi', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'hi', {
 		title: 'ऐंकर प्रॉपर्टीज़',
 		name: 'ऐंकर का नाम',
 		errorName: 'ऐंकर का नाम टाइप करें',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remove Anchor'
 	},
 	anchorId: 'ऍलीमॅन्ट Id से',
diff --git a/plugins/link/lang/hr.js b/plugins/link/lang/hr.js
index 8da308fd..800e04aa 100644
--- a/plugins/link/lang/hr.js
+++ b/plugins/link/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'hr', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'hr', {
 		title: 'Svojstva sidra',
 		name: 'Ime sidra',
 		errorName: 'Molimo unesite ime sidra',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Ukloni sidro'
 	},
 	anchorId: 'Po Id elementa',
diff --git a/plugins/link/lang/hu.js b/plugins/link/lang/hu.js
index a5a16330..a60d6dc9 100644
--- a/plugins/link/lang/hu.js
+++ b/plugins/link/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'hu', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'hu', {
 		title: 'Horgony tulajdonságai',
 		name: 'Horgony neve',
 		errorName: 'Kérem adja meg a horgony nevét',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Horgony eltávolítása'
 	},
 	anchorId: 'Azonosító szerint',
diff --git a/plugins/link/lang/id.js b/plugins/link/lang/id.js
index fa264a80..bd640cbb 100644
--- a/plugins/link/lang/id.js
+++ b/plugins/link/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'id', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'id', {
 		title: 'Anchor Properties', // MISSING
 		name: 'Anchor Name', // MISSING
 		errorName: 'Please type the anchor name', // MISSING
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remove Anchor' // MISSING
 	},
 	anchorId: 'By Element Id', // MISSING
diff --git a/plugins/link/lang/is.js b/plugins/link/lang/is.js
index e04558c1..ae14eebf 100644
--- a/plugins/link/lang/is.js
+++ b/plugins/link/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'is', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'is', {
 		title: 'Eigindi kaflamerkis',
 		name: 'Nafn bókamerkis',
 		errorName: 'Sláðu inn nafn bókamerkis!',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remove Anchor'
 	},
 	anchorId: 'Eftir auðkenni einingar',
diff --git a/plugins/link/lang/it.js b/plugins/link/lang/it.js
index 271eb71e..dc3a5faa 100644
--- a/plugins/link/lang/it.js
+++ b/plugins/link/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'it', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'it', {
 		title: 'Proprietà ancora',
 		name: 'Nome ancora',
 		errorName: 'Inserici il nome dell\'ancora',
+		errorWhitespace: 'Il nome delle ancore non può contenere caratteri di spaziatura',
 		remove: 'Rimuovi l\'ancora'
 	},
 	anchorId: 'Per id elemento',
diff --git a/plugins/link/lang/ja.js b/plugins/link/lang/ja.js
index 02802d4d..29ff4a35 100644
--- a/plugins/link/lang/ja.js
+++ b/plugins/link/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'ja', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'ja', {
 		title: 'アンカーのプロパティ',
 		name: 'アンカー名',
 		errorName: 'アンカー名を入力してください。',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'アンカーを削除'
 	},
 	anchorId: 'エレメントID',
diff --git a/plugins/link/lang/ka.js b/plugins/link/lang/ka.js
index f886af26..58522d13 100644
--- a/plugins/link/lang/ka.js
+++ b/plugins/link/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'ka', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'ka', {
 		title: 'ღუზის პარამეტრები',
 		name: 'ღუზუს სახელი',
 		errorName: 'აკრიფეთ ღუზის სახელი',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remove Anchor'
 	},
 	anchorId: 'ელემენტის Id-თ',
diff --git a/plugins/link/lang/km.js b/plugins/link/lang/km.js
index 2fb4dae7..b0cda3ca 100644
--- a/plugins/link/lang/km.js
+++ b/plugins/link/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'km', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'km', {
 		title: 'លក្ខណៈ​យុថ្កា',
 		name: 'ឈ្មោះ​យុថ្កា',
 		errorName: 'សូម​បញ្ចូល​ឈ្មោះ​យុថ្កា',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'ដក​យុថ្កា​ចេញ'
 	},
 	anchorId: 'តាម ID ធាតុ',
diff --git a/plugins/link/lang/ko.js b/plugins/link/lang/ko.js
index 3ae651f6..059f450b 100644
--- a/plugins/link/lang/ko.js
+++ b/plugins/link/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'ko', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'ko', {
 		title: '책갈피 속성',
 		name: '책갈피 이름',
 		errorName: '책갈피 이름을 입력하십시오',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: '책갈피 제거'
 	},
 	anchorId: '책갈피 ID',
diff --git a/plugins/link/lang/ku.js b/plugins/link/lang/ku.js
index a37e673f..c7a6262a 100644
--- a/plugins/link/lang/ku.js
+++ b/plugins/link/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'ku', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'ku', {
 		title: 'خاسیەتی لەنگەر',
 		name: 'ناوی لەنگەر',
 		errorName: 'تکایه ناوی لەنگەر بنووسه',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'لابردنی لەنگەر'
 	},
 	anchorId: 'بەپێی ناسنامەی توخم',
diff --git a/plugins/link/lang/lt.js b/plugins/link/lang/lt.js
index 9fd9a035..a70a9e14 100644
--- a/plugins/link/lang/lt.js
+++ b/plugins/link/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'lt', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'lt', {
 		title: 'Žymės savybės',
 		name: 'Žymės vardas',
 		errorName: 'Prašome įvesti žymės vardą',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Pašalinti žymę'
 	},
 	anchorId: 'Pagal žymės Id',
diff --git a/plugins/link/lang/lv.js b/plugins/link/lang/lv.js
index cbfae669..6c5158c8 100644
--- a/plugins/link/lang/lv.js
+++ b/plugins/link/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'lv', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'lv', {
 		title: 'Iezīmes uzstādījumi',
 		name: 'Iezīmes nosaukums',
 		errorName: 'Lūdzu norādiet iezīmes nosaukumu',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Noņemt iezīmi'
 	},
 	anchorId: 'Pēc elementa ID',
diff --git a/plugins/link/lang/mk.js b/plugins/link/lang/mk.js
index c48c848f..276ae4ab 100644
--- a/plugins/link/lang/mk.js
+++ b/plugins/link/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'mk', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'mk', {
 		title: 'Anchor Properties',
 		name: 'Anchor Name',
 		errorName: 'Please type the anchor name',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remove Anchor'
 	},
 	anchorId: 'By Element Id', // MISSING
diff --git a/plugins/link/lang/mn.js b/plugins/link/lang/mn.js
index 6a8d8b7f..57bdd59e 100644
--- a/plugins/link/lang/mn.js
+++ b/plugins/link/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'mn', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'mn', {
 		title: 'Зангуугийн шинж чанар',
 		name: 'Зангуугийн нэр',
 		errorName: 'Зангуугийн нэрийг оруулна уу',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Зангууг устгах'
 	},
 	anchorId: 'Элемэнтйн Id нэрээр',
diff --git a/plugins/link/lang/ms.js b/plugins/link/lang/ms.js
index 2911ff22..a39a23e7 100644
--- a/plugins/link/lang/ms.js
+++ b/plugins/link/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'ms', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'ms', {
 		title: 'Ciri-ciri Pautan',
 		name: 'Nama Pautan',
 		errorName: 'Sila taip nama pautan',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remove Anchor'
 	},
 	anchorId: 'dengan menggunakan ID elemen',
diff --git a/plugins/link/lang/nb.js b/plugins/link/lang/nb.js
index ca145df8..4053aa38 100644
--- a/plugins/link/lang/nb.js
+++ b/plugins/link/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'nb', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'nb', {
 		title: 'Egenskaper for anker',
 		name: 'Ankernavn',
 		errorName: 'Vennligst skriv inn ankernavnet',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Fjern anker'
 	},
 	anchorId: 'Element etter ID',
diff --git a/plugins/link/lang/nl.js b/plugins/link/lang/nl.js
index 0b6b9373..cb6722e6 100644
--- a/plugins/link/lang/nl.js
+++ b/plugins/link/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'nl', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'nl', {
 		title: 'Eigenschappen interne link',
 		name: 'Naam interne link',
 		errorName: 'Geef de naam van de interne link op',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Interne link verwijderen'
 	},
 	anchorId: 'Op kenmerk interne link',
diff --git a/plugins/link/lang/no.js b/plugins/link/lang/no.js
index 8d7359ea..a1d108e6 100644
--- a/plugins/link/lang/no.js
+++ b/plugins/link/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'no', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'no', {
 		title: 'Egenskaper for anker',
 		name: 'Ankernavn',
 		errorName: 'Vennligst skriv inn ankernavnet',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Fjern anker'
 	},
 	anchorId: 'Element etter ID',
diff --git a/plugins/link/lang/oc.js b/plugins/link/lang/oc.js
index 82330c12..9cdeb3fe 100644
--- a/plugins/link/lang/oc.js
+++ b/plugins/link/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'oc', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'oc', {
 		title: 'Proprietats de l\'ancòra',
 		name: 'Nom de l\'ancòra',
 		errorName: 'Entratz lo nom de l\'ancòra',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Suprimir l\'ancòra'
 	},
 	anchorId: 'Per ID d\'element',
diff --git a/plugins/link/lang/pl.js b/plugins/link/lang/pl.js
index c45c3a29..4230e4b4 100644
--- a/plugins/link/lang/pl.js
+++ b/plugins/link/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'pl', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'pl', {
 		title: 'Właściwości kotwicy',
 		name: 'Nazwa kotwicy',
 		errorName: 'Podaj nazwę kotwicy.',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Usuń kotwicę'
 	},
 	anchorId: 'Wg identyfikatora',
diff --git a/plugins/link/lang/pt-br.js b/plugins/link/lang/pt-br.js
index 391de881..2738f70c 100644
--- a/plugins/link/lang/pt-br.js
+++ b/plugins/link/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'pt-br', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'pt-br', {
 		title: 'Formatar Âncora',
 		name: 'Nome da Âncora',
 		errorName: 'Por favor, digite o nome da âncora',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remover Âncora'
 	},
 	anchorId: 'Id da âncora',
diff --git a/plugins/link/lang/pt.js b/plugins/link/lang/pt.js
index fd3fa28b..41f910e3 100644
--- a/plugins/link/lang/pt.js
+++ b/plugins/link/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'pt', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'pt', {
 		title: 'Propriedades da âncora',
 		name: 'Nome da âncora',
 		errorName: 'Por favor, introduza o nome da âncora',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remover âncora'
 	},
 	anchorId: 'Por ID do elemento',
diff --git a/plugins/link/lang/ro.js b/plugins/link/lang/ro.js
index 81d27f79..bcb4442e 100644
--- a/plugins/link/lang/ro.js
+++ b/plugins/link/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'ro', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'ro', {
 		title: 'Proprietăţi ancoră',
 		name: 'Numele ancorei',
 		errorName: 'Vă rugăm scrieţi numele ancorei',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Elimină ancora'
 	},
 	anchorId: 'după Id-ul elementului',
diff --git a/plugins/link/lang/ru.js b/plugins/link/lang/ru.js
index d8a48378..7df143a8 100644
--- a/plugins/link/lang/ru.js
+++ b/plugins/link/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'ru', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'ru', {
 		title: 'Свойства якоря',
 		name: 'Имя якоря',
 		errorName: 'Пожалуйста, введите имя якоря',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Удалить якорь'
 	},
 	anchorId: 'По идентификатору',
diff --git a/plugins/link/lang/si.js b/plugins/link/lang/si.js
index 2fc73a5c..bd4b0b94 100644
--- a/plugins/link/lang/si.js
+++ b/plugins/link/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'si', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'si', {
 		title: 'ආධාරක ',
 		name: 'ආධාරකයේ නාමය',
 		errorName: 'කරුණාකර ආධාරකයේ නාමය ඇතුල් කරන්න',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'ආධාරකය ඉවත් කිරීම'
 	},
 	anchorId: 'By Element Id', // MISSING
diff --git a/plugins/link/lang/sk.js b/plugins/link/lang/sk.js
index e3367774..0b4ac505 100644
--- a/plugins/link/lang/sk.js
+++ b/plugins/link/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'sk', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'sk', {
 		title: 'Vlastnosti kotvy',
 		name: 'Názov kotvy',
 		errorName: 'Zadajte prosím názov kotvy',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Odstrániť kotvu'
 	},
 	anchorId: 'Podľa Id objektu',
diff --git a/plugins/link/lang/sl.js b/plugins/link/lang/sl.js
index 13e2a0d2..26f7802c 100644
--- a/plugins/link/lang/sl.js
+++ b/plugins/link/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'sl', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'sl', {
 		title: 'Lastnosti sidra',
 		name: 'Ime sidra',
 		errorName: 'Prosimo, vnesite ime sidra',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Odstrani sidro'
 	},
 	anchorId: 'Po ID-ju elementa',
diff --git a/plugins/link/lang/sq.js b/plugins/link/lang/sq.js
index 6bbec6dd..57598e81 100644
--- a/plugins/link/lang/sq.js
+++ b/plugins/link/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'sq', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'sq', {
 		title: 'Karakteristikat e Spirancës',
 		name: 'Emri i Spirancës',
 		errorName: 'Ju lutemi shkruani emrin e spirancës',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Largo Spirancën'
 	},
 	anchorId: 'Sipas ID-së së Elementit',
diff --git a/plugins/link/lang/sr-latn.js b/plugins/link/lang/sr-latn.js
index ab9f8b7a..4cb8d88b 100644
--- a/plugins/link/lang/sr-latn.js
+++ b/plugins/link/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'sr-latn', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'sr-latn', {
 		title: 'Karakteristike sidra',
 		name: 'Naziv sidra',
 		errorName: 'Unesite naziv sidra',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Ukloni sidro'
 	},
 	anchorId: 'Po Id-u elementa',
diff --git a/plugins/link/lang/sr.js b/plugins/link/lang/sr.js
index 3b565e24..61085c0a 100644
--- a/plugins/link/lang/sr.js
+++ b/plugins/link/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'sr', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'sr', {
 		title: 'Карактеристике сидра',
 		name: 'Назив сидра',
 		errorName: 'Унесите назив сидра',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Уклони сидро'
 	},
 	anchorId: 'Пo Ид-у елемента',
diff --git a/plugins/link/lang/sv.js b/plugins/link/lang/sv.js
index 22ec4136..abb78e83 100644
--- a/plugins/link/lang/sv.js
+++ b/plugins/link/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'sv', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'sv', {
 		title: 'Egenskaper för ankarlänk',
 		name: 'Ankarnamn',
 		errorName: 'Var god ange ett ankarnamn',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Radera ankare'
 	},
 	anchorId: 'Efter element-id',
diff --git a/plugins/link/lang/th.js b/plugins/link/lang/th.js
index 7047b61f..3da2aeb1 100644
--- a/plugins/link/lang/th.js
+++ b/plugins/link/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'th', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'th', {
 		title: 'รายละเอียด Anchor',
 		name: 'ชื่อ Anchor',
 		errorName: 'กรุณาระบุชื่อของ Anchor',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Remove Anchor'
 	},
 	anchorId: 'ไอดี',
diff --git a/plugins/link/lang/tr.js b/plugins/link/lang/tr.js
index 30308dbc..f3196093 100644
--- a/plugins/link/lang/tr.js
+++ b/plugins/link/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'tr', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'tr', {
 		title: 'Bağlantı Özellikleri',
 		name: 'Bağlantı Adı',
 		errorName: 'Lütfen bağlantı için ad giriniz',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Bağlantıyı Kaldır'
 	},
 	anchorId: 'Eleman Kimlik Numarası ile',
diff --git a/plugins/link/lang/tt.js b/plugins/link/lang/tt.js
index 6dec1df8..2b5da702 100644
--- a/plugins/link/lang/tt.js
+++ b/plugins/link/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'tt', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'tt', {
 		title: 'Якорь үзлекләре',
 		name: 'Якорь исеме',
 		errorName: 'Якорьнең исемен языгыз',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Якорьне бетерү'
 	},
 	anchorId: 'Элемент идентификаторы буенча',
diff --git a/plugins/link/lang/ug.js b/plugins/link/lang/ug.js
index f52d3d4a..e7b58482 100644
--- a/plugins/link/lang/ug.js
+++ b/plugins/link/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'ug', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'ug', {
 		title: 'لەڭگەرلىك نۇقتا ئۇلانما خاسلىقى',
 		name: 'لەڭگەرلىك نۇقتا ئاتى',
 		errorName: 'لەڭگەرلىك نۇقتا ئاتىنى كىرگۈزۈڭ',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'لەڭگەرلىك نۇقتا ئۆچۈر'
 	},
 	anchorId: 'لەڭگەرلىك نۇقتا ID سى بويىچە',
diff --git a/plugins/link/lang/uk.js b/plugins/link/lang/uk.js
index 3889b8b9..013592ac 100644
--- a/plugins/link/lang/uk.js
+++ b/plugins/link/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'uk', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'uk', {
 		title: 'Властивості якоря',
 		name: 'Ім\'я якоря',
 		errorName: 'Будь ласка, вкажіть ім\'я якоря',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Прибрати якір'
 	},
 	anchorId: 'За ідентифікатором елементу',
diff --git a/plugins/link/lang/vi.js b/plugins/link/lang/vi.js
index c0dfabc7..d539aad5 100644
--- a/plugins/link/lang/vi.js
+++ b/plugins/link/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'vi', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'vi', {
 		title: 'Thuộc tính điểm neo',
 		name: 'Tên của điểm neo',
 		errorName: 'Hãy nhập vào tên của điểm neo',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: 'Xóa neo'
 	},
 	anchorId: 'Theo định danh thành phần',
diff --git a/plugins/link/lang/zh-cn.js b/plugins/link/lang/zh-cn.js
index d3b25feb..77fa820a 100644
--- a/plugins/link/lang/zh-cn.js
+++ b/plugins/link/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'zh-cn', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'zh-cn', {
 		title: '锚点链接属性',
 		name: '锚点名称',
 		errorName: '请输入锚点名称',
+		errorWhitespace: 'Anchor name cannot contain space characters', // MISSING
 		remove: '删除锚点'
 	},
 	anchorId: '按锚点 ID',
diff --git a/plugins/link/lang/zh.js b/plugins/link/lang/zh.js
index 86ec5402..5ce9aa25 100644
--- a/plugins/link/lang/zh.js
+++ b/plugins/link/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'link', 'zh', {
@@ -13,6 +13,7 @@ CKEDITOR.plugins.setLang( 'link', 'zh', {
 		title: '錨點內容',
 		name: '錨點名稱',
 		errorName: '請輸入錨點名稱',
+		errorWhitespace: '錨定名稱不能包含空格字元',
 		remove: '移除錨點'
 	},
 	anchorId: '依元件編號',
@@ -35,9 +36,9 @@ CKEDITOR.plugins.setLang( 'link', 'zh', {
 	noAnchors: '(本文件中無可用之錨點)',
 	noEmail: '請輸入電子郵件',
 	noUrl: '請輸入連結 URL',
-	noTel: 'Please type the phone number', // MISSING
+	noTel: '請輸入電話號碼',
 	other: '<其他>',
-	phoneNumber: 'Phone number', // MISSING
+	phoneNumber: '電話號碼',
 	popupDependent: '獨立 (Netscape)',
 	popupFeatures: '快顯視窗功能',
 	popupFullScreen: '全螢幕 (IE)',
@@ -62,7 +63,7 @@ CKEDITOR.plugins.setLang( 'link', 'zh', {
 	toAnchor: '文字中的錨點連結',
 	toEmail: '電子郵件',
 	toUrl: '網址',
-	toPhone: 'Phone', // MISSING
+	toPhone: '電話',
 	toolbar: '連結',
 	type: '連結類型',
 	unlink: '取消連結',
diff --git a/plugins/link/plugin.js b/plugins/link/plugin.js
index 13c760a5..41445cfd 100755
--- a/plugins/link/plugin.js
+++ b/plugins/link/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/list/lang/af.js b/plugins/list/lang/af.js
index e939e4f0..f335edd4 100644
--- a/plugins/list/lang/af.js
+++ b/plugins/list/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'af', {
diff --git a/plugins/list/lang/ar.js b/plugins/list/lang/ar.js
index 4be81c0b..ee2821a3 100644
--- a/plugins/list/lang/ar.js
+++ b/plugins/list/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'ar', {
diff --git a/plugins/list/lang/az.js b/plugins/list/lang/az.js
index f68af310..41a86421 100644
--- a/plugins/list/lang/az.js
+++ b/plugins/list/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'az', {
diff --git a/plugins/list/lang/bg.js b/plugins/list/lang/bg.js
index b79337c7..9431087f 100644
--- a/plugins/list/lang/bg.js
+++ b/plugins/list/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'bg', {
diff --git a/plugins/list/lang/bn.js b/plugins/list/lang/bn.js
index dbe6d84e..6f4eccc8 100644
--- a/plugins/list/lang/bn.js
+++ b/plugins/list/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'bn', {
diff --git a/plugins/list/lang/bs.js b/plugins/list/lang/bs.js
index 990a6e05..bd94701d 100644
--- a/plugins/list/lang/bs.js
+++ b/plugins/list/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'bs', {
diff --git a/plugins/list/lang/ca.js b/plugins/list/lang/ca.js
index 73c07378..8c3b42e5 100644
--- a/plugins/list/lang/ca.js
+++ b/plugins/list/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'ca', {
diff --git a/plugins/list/lang/cs.js b/plugins/list/lang/cs.js
index 1c7f034b..67958826 100644
--- a/plugins/list/lang/cs.js
+++ b/plugins/list/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'cs', {
diff --git a/plugins/list/lang/cy.js b/plugins/list/lang/cy.js
index 9b289a46..83d23a10 100644
--- a/plugins/list/lang/cy.js
+++ b/plugins/list/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'cy', {
diff --git a/plugins/list/lang/da.js b/plugins/list/lang/da.js
index da420cfc..40e0a1fe 100644
--- a/plugins/list/lang/da.js
+++ b/plugins/list/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'da', {
diff --git a/plugins/list/lang/de-ch.js b/plugins/list/lang/de-ch.js
index 12b03b78..5b348b8e 100644
--- a/plugins/list/lang/de-ch.js
+++ b/plugins/list/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'de-ch', {
diff --git a/plugins/list/lang/de.js b/plugins/list/lang/de.js
index b6e963a9..c22fb5c3 100644
--- a/plugins/list/lang/de.js
+++ b/plugins/list/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'de', {
diff --git a/plugins/list/lang/el.js b/plugins/list/lang/el.js
index 6fc34350..11951efa 100644
--- a/plugins/list/lang/el.js
+++ b/plugins/list/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'el', {
diff --git a/plugins/list/lang/en-au.js b/plugins/list/lang/en-au.js
index 90ceaf91..1488c26b 100644
--- a/plugins/list/lang/en-au.js
+++ b/plugins/list/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'en-au', {
diff --git a/plugins/list/lang/en-ca.js b/plugins/list/lang/en-ca.js
index ff9f4dca..3f9dd81c 100644
--- a/plugins/list/lang/en-ca.js
+++ b/plugins/list/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'en-ca', {
diff --git a/plugins/list/lang/en-gb.js b/plugins/list/lang/en-gb.js
index e781dfd3..a5a025dc 100644
--- a/plugins/list/lang/en-gb.js
+++ b/plugins/list/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'en-gb', {
diff --git a/plugins/list/lang/en.js b/plugins/list/lang/en.js
index cee723eb..ecb2f1ab 100644
--- a/plugins/list/lang/en.js
+++ b/plugins/list/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'en', {
diff --git a/plugins/list/lang/eo.js b/plugins/list/lang/eo.js
index 064ed13f..1e869079 100644
--- a/plugins/list/lang/eo.js
+++ b/plugins/list/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'eo', {
diff --git a/plugins/list/lang/es-mx.js b/plugins/list/lang/es-mx.js
index 984e3782..30aaf96c 100644
--- a/plugins/list/lang/es-mx.js
+++ b/plugins/list/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'es-mx', {
diff --git a/plugins/list/lang/es.js b/plugins/list/lang/es.js
index fea5c868..a5b7ec2e 100644
--- a/plugins/list/lang/es.js
+++ b/plugins/list/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'es', {
diff --git a/plugins/list/lang/et.js b/plugins/list/lang/et.js
index ce2c1642..d0812743 100644
--- a/plugins/list/lang/et.js
+++ b/plugins/list/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'et', {
diff --git a/plugins/list/lang/eu.js b/plugins/list/lang/eu.js
index 772a7dba..fa468bfb 100644
--- a/plugins/list/lang/eu.js
+++ b/plugins/list/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'eu', {
diff --git a/plugins/list/lang/fa.js b/plugins/list/lang/fa.js
index 70c03d81..fc4b99ef 100644
--- a/plugins/list/lang/fa.js
+++ b/plugins/list/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'fa', {
diff --git a/plugins/list/lang/fi.js b/plugins/list/lang/fi.js
index fe87990f..12d7bbd8 100644
--- a/plugins/list/lang/fi.js
+++ b/plugins/list/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'fi', {
diff --git a/plugins/list/lang/fo.js b/plugins/list/lang/fo.js
index 59bc2ff9..97f54a2b 100644
--- a/plugins/list/lang/fo.js
+++ b/plugins/list/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'fo', {
diff --git a/plugins/list/lang/fr-ca.js b/plugins/list/lang/fr-ca.js
index 658e2527..7b0d3eb0 100644
--- a/plugins/list/lang/fr-ca.js
+++ b/plugins/list/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'fr-ca', {
diff --git a/plugins/list/lang/fr.js b/plugins/list/lang/fr.js
index 445f90ef..e0912031 100644
--- a/plugins/list/lang/fr.js
+++ b/plugins/list/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'fr', {
diff --git a/plugins/list/lang/gl.js b/plugins/list/lang/gl.js
index 89e98e90..9fa47b19 100644
--- a/plugins/list/lang/gl.js
+++ b/plugins/list/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'gl', {
diff --git a/plugins/list/lang/gu.js b/plugins/list/lang/gu.js
index adb09bff..d3e0e8b6 100644
--- a/plugins/list/lang/gu.js
+++ b/plugins/list/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'gu', {
diff --git a/plugins/list/lang/he.js b/plugins/list/lang/he.js
index 85a0a63b..644db1af 100644
--- a/plugins/list/lang/he.js
+++ b/plugins/list/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'he', {
diff --git a/plugins/list/lang/hi.js b/plugins/list/lang/hi.js
index 53c067fb..13debc48 100644
--- a/plugins/list/lang/hi.js
+++ b/plugins/list/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'hi', {
diff --git a/plugins/list/lang/hr.js b/plugins/list/lang/hr.js
index 9c1e8a17..6bf19915 100644
--- a/plugins/list/lang/hr.js
+++ b/plugins/list/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'hr', {
diff --git a/plugins/list/lang/hu.js b/plugins/list/lang/hu.js
index c4095311..d66818c1 100644
--- a/plugins/list/lang/hu.js
+++ b/plugins/list/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'hu', {
diff --git a/plugins/list/lang/id.js b/plugins/list/lang/id.js
index c533d351..640d3308 100644
--- a/plugins/list/lang/id.js
+++ b/plugins/list/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'id', {
diff --git a/plugins/list/lang/is.js b/plugins/list/lang/is.js
index 65a092b6..ef0c7a3a 100644
--- a/plugins/list/lang/is.js
+++ b/plugins/list/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'is', {
diff --git a/plugins/list/lang/it.js b/plugins/list/lang/it.js
index 6b7b42b7..60067410 100644
--- a/plugins/list/lang/it.js
+++ b/plugins/list/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'it', {
diff --git a/plugins/list/lang/ja.js b/plugins/list/lang/ja.js
index 041a9767..b977d799 100644
--- a/plugins/list/lang/ja.js
+++ b/plugins/list/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'ja', {
diff --git a/plugins/list/lang/ka.js b/plugins/list/lang/ka.js
index b87b279f..0cc6e031 100644
--- a/plugins/list/lang/ka.js
+++ b/plugins/list/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'ka', {
diff --git a/plugins/list/lang/km.js b/plugins/list/lang/km.js
index ff146f6e..2ff94528 100644
--- a/plugins/list/lang/km.js
+++ b/plugins/list/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'km', {
diff --git a/plugins/list/lang/ko.js b/plugins/list/lang/ko.js
index cf695064..b5a1a350 100644
--- a/plugins/list/lang/ko.js
+++ b/plugins/list/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'ko', {
diff --git a/plugins/list/lang/ku.js b/plugins/list/lang/ku.js
index e0b03da1..812fc14e 100644
--- a/plugins/list/lang/ku.js
+++ b/plugins/list/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'ku', {
diff --git a/plugins/list/lang/lt.js b/plugins/list/lang/lt.js
index bb02a573..d9c6f382 100644
--- a/plugins/list/lang/lt.js
+++ b/plugins/list/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'lt', {
diff --git a/plugins/list/lang/lv.js b/plugins/list/lang/lv.js
index 0feb5c5b..64070792 100644
--- a/plugins/list/lang/lv.js
+++ b/plugins/list/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'lv', {
diff --git a/plugins/list/lang/mk.js b/plugins/list/lang/mk.js
index 47344c05..4f6751b1 100644
--- a/plugins/list/lang/mk.js
+++ b/plugins/list/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'mk', {
diff --git a/plugins/list/lang/mn.js b/plugins/list/lang/mn.js
index ed592694..9480f974 100644
--- a/plugins/list/lang/mn.js
+++ b/plugins/list/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'mn', {
diff --git a/plugins/list/lang/ms.js b/plugins/list/lang/ms.js
index 0155db08..1b5a1c7f 100644
--- a/plugins/list/lang/ms.js
+++ b/plugins/list/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'ms', {
diff --git a/plugins/list/lang/nb.js b/plugins/list/lang/nb.js
index 22e0e8a5..8b0b3824 100644
--- a/plugins/list/lang/nb.js
+++ b/plugins/list/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'nb', {
diff --git a/plugins/list/lang/nl.js b/plugins/list/lang/nl.js
index 64142e70..4312f8c3 100644
--- a/plugins/list/lang/nl.js
+++ b/plugins/list/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'nl', {
diff --git a/plugins/list/lang/no.js b/plugins/list/lang/no.js
index 2cb2372f..d666976d 100644
--- a/plugins/list/lang/no.js
+++ b/plugins/list/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'no', {
diff --git a/plugins/list/lang/oc.js b/plugins/list/lang/oc.js
index df0d2c1e..d69d4500 100644
--- a/plugins/list/lang/oc.js
+++ b/plugins/list/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'oc', {
diff --git a/plugins/list/lang/pl.js b/plugins/list/lang/pl.js
index c50ce47f..69539477 100644
--- a/plugins/list/lang/pl.js
+++ b/plugins/list/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'pl', {
diff --git a/plugins/list/lang/pt-br.js b/plugins/list/lang/pt-br.js
index 74ea1725..906b4826 100644
--- a/plugins/list/lang/pt-br.js
+++ b/plugins/list/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'pt-br', {
diff --git a/plugins/list/lang/pt.js b/plugins/list/lang/pt.js
index c3805f41..a9448322 100644
--- a/plugins/list/lang/pt.js
+++ b/plugins/list/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'pt', {
diff --git a/plugins/list/lang/ro.js b/plugins/list/lang/ro.js
index c8ff0b51..f6633593 100644
--- a/plugins/list/lang/ro.js
+++ b/plugins/list/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'ro', {
diff --git a/plugins/list/lang/ru.js b/plugins/list/lang/ru.js
index 2bb9908c..a39675cb 100644
--- a/plugins/list/lang/ru.js
+++ b/plugins/list/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'ru', {
diff --git a/plugins/list/lang/si.js b/plugins/list/lang/si.js
index 76aa7407..90fb1de4 100644
--- a/plugins/list/lang/si.js
+++ b/plugins/list/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'si', {
diff --git a/plugins/list/lang/sk.js b/plugins/list/lang/sk.js
index 78692cfe..ca2b631e 100644
--- a/plugins/list/lang/sk.js
+++ b/plugins/list/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'sk', {
diff --git a/plugins/list/lang/sl.js b/plugins/list/lang/sl.js
index a793bbd9..ded6f49d 100644
--- a/plugins/list/lang/sl.js
+++ b/plugins/list/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'sl', {
diff --git a/plugins/list/lang/sq.js b/plugins/list/lang/sq.js
index 842068de..6780ed21 100644
--- a/plugins/list/lang/sq.js
+++ b/plugins/list/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'sq', {
diff --git a/plugins/list/lang/sr-latn.js b/plugins/list/lang/sr-latn.js
index e095bf6b..2d4cf239 100644
--- a/plugins/list/lang/sr-latn.js
+++ b/plugins/list/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'sr-latn', {
diff --git a/plugins/list/lang/sr.js b/plugins/list/lang/sr.js
index a95b9020..c8cb0278 100644
--- a/plugins/list/lang/sr.js
+++ b/plugins/list/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'sr', {
diff --git a/plugins/list/lang/sv.js b/plugins/list/lang/sv.js
index 5163c36a..fbb365a5 100644
--- a/plugins/list/lang/sv.js
+++ b/plugins/list/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'sv', {
diff --git a/plugins/list/lang/th.js b/plugins/list/lang/th.js
index 9304860f..3784ef7e 100644
--- a/plugins/list/lang/th.js
+++ b/plugins/list/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'th', {
diff --git a/plugins/list/lang/tr.js b/plugins/list/lang/tr.js
index 74126153..860d3a4c 100644
--- a/plugins/list/lang/tr.js
+++ b/plugins/list/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'tr', {
diff --git a/plugins/list/lang/tt.js b/plugins/list/lang/tt.js
index c5f496ff..ae4b02c8 100644
--- a/plugins/list/lang/tt.js
+++ b/plugins/list/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'tt', {
diff --git a/plugins/list/lang/ug.js b/plugins/list/lang/ug.js
index d59d3067..733cfbd8 100644
--- a/plugins/list/lang/ug.js
+++ b/plugins/list/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'ug', {
diff --git a/plugins/list/lang/uk.js b/plugins/list/lang/uk.js
index 06bf6962..922f9e0e 100644
--- a/plugins/list/lang/uk.js
+++ b/plugins/list/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'uk', {
diff --git a/plugins/list/lang/vi.js b/plugins/list/lang/vi.js
index 4f26cf07..9fd8a501 100644
--- a/plugins/list/lang/vi.js
+++ b/plugins/list/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'vi', {
diff --git a/plugins/list/lang/zh-cn.js b/plugins/list/lang/zh-cn.js
index 523f4f08..25d62c22 100644
--- a/plugins/list/lang/zh-cn.js
+++ b/plugins/list/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'zh-cn', {
diff --git a/plugins/list/lang/zh.js b/plugins/list/lang/zh.js
index b5440c70..16ebd561 100644
--- a/plugins/list/lang/zh.js
+++ b/plugins/list/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'list', 'zh', {
diff --git a/plugins/list/plugin.js b/plugins/list/plugin.js
index f2f078ba..a3f8645d 100755
--- a/plugins/list/plugin.js
+++ b/plugins/list/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/listblock/plugin.js b/plugins/listblock/plugin.js
index 0822a989..a7d9484e 100644
--- a/plugins/listblock/plugin.js
+++ b/plugins/listblock/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/liststyle/dialogs/liststyle.js b/plugins/liststyle/dialogs/liststyle.js
index 953505c3..0e6c0177 100644
--- a/plugins/liststyle/dialogs/liststyle.js
+++ b/plugins/liststyle/dialogs/liststyle.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/liststyle/lang/af.js b/plugins/liststyle/lang/af.js
index 7930bddd..d027b092 100644
--- a/plugins/liststyle/lang/af.js
+++ b/plugins/liststyle/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'af', {
diff --git a/plugins/liststyle/lang/ar.js b/plugins/liststyle/lang/ar.js
index f44f917f..8d0d98c6 100644
--- a/plugins/liststyle/lang/ar.js
+++ b/plugins/liststyle/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'ar', {
diff --git a/plugins/liststyle/lang/az.js b/plugins/liststyle/lang/az.js
index bed8e440..a6fae08b 100644
--- a/plugins/liststyle/lang/az.js
+++ b/plugins/liststyle/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'az', {
diff --git a/plugins/liststyle/lang/bg.js b/plugins/liststyle/lang/bg.js
index d252770d..3b7aaf59 100644
--- a/plugins/liststyle/lang/bg.js
+++ b/plugins/liststyle/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'bg', {
diff --git a/plugins/liststyle/lang/bn.js b/plugins/liststyle/lang/bn.js
index 057a4fb3..8c6b8e3b 100644
--- a/plugins/liststyle/lang/bn.js
+++ b/plugins/liststyle/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'bn', {
diff --git a/plugins/liststyle/lang/bs.js b/plugins/liststyle/lang/bs.js
index 3c6a9b14..8ee6434a 100644
--- a/plugins/liststyle/lang/bs.js
+++ b/plugins/liststyle/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'bs', {
diff --git a/plugins/liststyle/lang/ca.js b/plugins/liststyle/lang/ca.js
index 77ebe96b..3dd20fae 100644
--- a/plugins/liststyle/lang/ca.js
+++ b/plugins/liststyle/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'ca', {
diff --git a/plugins/liststyle/lang/cs.js b/plugins/liststyle/lang/cs.js
index b20a29ec..69b67af7 100644
--- a/plugins/liststyle/lang/cs.js
+++ b/plugins/liststyle/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'cs', {
diff --git a/plugins/liststyle/lang/cy.js b/plugins/liststyle/lang/cy.js
index 41c21203..e317f333 100644
--- a/plugins/liststyle/lang/cy.js
+++ b/plugins/liststyle/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'cy', {
diff --git a/plugins/liststyle/lang/da.js b/plugins/liststyle/lang/da.js
index 0a0adb4d..ff788e31 100644
--- a/plugins/liststyle/lang/da.js
+++ b/plugins/liststyle/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'da', {
diff --git a/plugins/liststyle/lang/de-ch.js b/plugins/liststyle/lang/de-ch.js
index ea67348b..89446dac 100644
--- a/plugins/liststyle/lang/de-ch.js
+++ b/plugins/liststyle/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'de-ch', {
diff --git a/plugins/liststyle/lang/de.js b/plugins/liststyle/lang/de.js
index f7f17350..bf42252d 100644
--- a/plugins/liststyle/lang/de.js
+++ b/plugins/liststyle/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'de', {
diff --git a/plugins/liststyle/lang/el.js b/plugins/liststyle/lang/el.js
index 49a1aeec..b09a2742 100644
--- a/plugins/liststyle/lang/el.js
+++ b/plugins/liststyle/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'el', {
diff --git a/plugins/liststyle/lang/en-au.js b/plugins/liststyle/lang/en-au.js
index b043208c..bb94067e 100644
--- a/plugins/liststyle/lang/en-au.js
+++ b/plugins/liststyle/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'en-au', {
diff --git a/plugins/liststyle/lang/en-ca.js b/plugins/liststyle/lang/en-ca.js
index 1c4321fa..a6235e78 100644
--- a/plugins/liststyle/lang/en-ca.js
+++ b/plugins/liststyle/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'en-ca', {
diff --git a/plugins/liststyle/lang/en-gb.js b/plugins/liststyle/lang/en-gb.js
index 29ae7b49..950c271c 100644
--- a/plugins/liststyle/lang/en-gb.js
+++ b/plugins/liststyle/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'en-gb', {
diff --git a/plugins/liststyle/lang/en.js b/plugins/liststyle/lang/en.js
index 9d1a749d..97c40ce9 100644
--- a/plugins/liststyle/lang/en.js
+++ b/plugins/liststyle/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'en', {
diff --git a/plugins/liststyle/lang/eo.js b/plugins/liststyle/lang/eo.js
index 909965fe..e0e1a9fa 100644
--- a/plugins/liststyle/lang/eo.js
+++ b/plugins/liststyle/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'eo', {
diff --git a/plugins/liststyle/lang/es-mx.js b/plugins/liststyle/lang/es-mx.js
index d3c18455..0b3265df 100644
--- a/plugins/liststyle/lang/es-mx.js
+++ b/plugins/liststyle/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'es-mx', {
diff --git a/plugins/liststyle/lang/es.js b/plugins/liststyle/lang/es.js
index 0be6bc45..ee529c11 100644
--- a/plugins/liststyle/lang/es.js
+++ b/plugins/liststyle/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'es', {
diff --git a/plugins/liststyle/lang/et.js b/plugins/liststyle/lang/et.js
index cdce8bd1..095e1023 100644
--- a/plugins/liststyle/lang/et.js
+++ b/plugins/liststyle/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'et', {
diff --git a/plugins/liststyle/lang/eu.js b/plugins/liststyle/lang/eu.js
index 646104e3..ab4c98cf 100644
--- a/plugins/liststyle/lang/eu.js
+++ b/plugins/liststyle/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'eu', {
diff --git a/plugins/liststyle/lang/fa.js b/plugins/liststyle/lang/fa.js
index e653b649..e6e9540e 100644
--- a/plugins/liststyle/lang/fa.js
+++ b/plugins/liststyle/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'fa', {
diff --git a/plugins/liststyle/lang/fi.js b/plugins/liststyle/lang/fi.js
index eebbd77c..1d3dc194 100644
--- a/plugins/liststyle/lang/fi.js
+++ b/plugins/liststyle/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'fi', {
diff --git a/plugins/liststyle/lang/fo.js b/plugins/liststyle/lang/fo.js
index 6398f4a7..209e3ad9 100644
--- a/plugins/liststyle/lang/fo.js
+++ b/plugins/liststyle/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'fo', {
diff --git a/plugins/liststyle/lang/fr-ca.js b/plugins/liststyle/lang/fr-ca.js
index 61636d19..361ff2d4 100644
--- a/plugins/liststyle/lang/fr-ca.js
+++ b/plugins/liststyle/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'fr-ca', {
diff --git a/plugins/liststyle/lang/fr.js b/plugins/liststyle/lang/fr.js
index 3c7f57ab..69357eef 100644
--- a/plugins/liststyle/lang/fr.js
+++ b/plugins/liststyle/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'fr', {
diff --git a/plugins/liststyle/lang/gl.js b/plugins/liststyle/lang/gl.js
index e228a8d0..eedc59c6 100644
--- a/plugins/liststyle/lang/gl.js
+++ b/plugins/liststyle/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'gl', {
diff --git a/plugins/liststyle/lang/gu.js b/plugins/liststyle/lang/gu.js
index b945e195..2ff8c673 100644
--- a/plugins/liststyle/lang/gu.js
+++ b/plugins/liststyle/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'gu', {
diff --git a/plugins/liststyle/lang/he.js b/plugins/liststyle/lang/he.js
index cb3fcdd2..05ec16d4 100644
--- a/plugins/liststyle/lang/he.js
+++ b/plugins/liststyle/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'he', {
diff --git a/plugins/liststyle/lang/hi.js b/plugins/liststyle/lang/hi.js
index 3c318ce0..f0207c0d 100644
--- a/plugins/liststyle/lang/hi.js
+++ b/plugins/liststyle/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'hi', {
diff --git a/plugins/liststyle/lang/hr.js b/plugins/liststyle/lang/hr.js
index c7fa7316..ae887161 100644
--- a/plugins/liststyle/lang/hr.js
+++ b/plugins/liststyle/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'hr', {
diff --git a/plugins/liststyle/lang/hu.js b/plugins/liststyle/lang/hu.js
index f1b8500b..91869420 100644
--- a/plugins/liststyle/lang/hu.js
+++ b/plugins/liststyle/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'hu', {
diff --git a/plugins/liststyle/lang/id.js b/plugins/liststyle/lang/id.js
index 8d3d2b93..e574a6aa 100644
--- a/plugins/liststyle/lang/id.js
+++ b/plugins/liststyle/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'id', {
diff --git a/plugins/liststyle/lang/is.js b/plugins/liststyle/lang/is.js
index 400c1516..c9bfea72 100644
--- a/plugins/liststyle/lang/is.js
+++ b/plugins/liststyle/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'is', {
diff --git a/plugins/liststyle/lang/it.js b/plugins/liststyle/lang/it.js
index bdf7e182..7884dda5 100644
--- a/plugins/liststyle/lang/it.js
+++ b/plugins/liststyle/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'it', {
diff --git a/plugins/liststyle/lang/ja.js b/plugins/liststyle/lang/ja.js
index b918bf44..51832d79 100644
--- a/plugins/liststyle/lang/ja.js
+++ b/plugins/liststyle/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'ja', {
diff --git a/plugins/liststyle/lang/ka.js b/plugins/liststyle/lang/ka.js
index d1c97dd1..bf4eb3cf 100644
--- a/plugins/liststyle/lang/ka.js
+++ b/plugins/liststyle/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'ka', {
diff --git a/plugins/liststyle/lang/km.js b/plugins/liststyle/lang/km.js
index 5ba1f18f..3dcd8ca8 100644
--- a/plugins/liststyle/lang/km.js
+++ b/plugins/liststyle/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'km', {
diff --git a/plugins/liststyle/lang/ko.js b/plugins/liststyle/lang/ko.js
index 8d16281c..6000e421 100644
--- a/plugins/liststyle/lang/ko.js
+++ b/plugins/liststyle/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'ko', {
diff --git a/plugins/liststyle/lang/ku.js b/plugins/liststyle/lang/ku.js
index 25aa9d95..6d7bae9e 100644
--- a/plugins/liststyle/lang/ku.js
+++ b/plugins/liststyle/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'ku', {
diff --git a/plugins/liststyle/lang/lt.js b/plugins/liststyle/lang/lt.js
index 3fd01f49..e15bc833 100644
--- a/plugins/liststyle/lang/lt.js
+++ b/plugins/liststyle/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'lt', {
diff --git a/plugins/liststyle/lang/lv.js b/plugins/liststyle/lang/lv.js
index 17eae757..48b5782b 100644
--- a/plugins/liststyle/lang/lv.js
+++ b/plugins/liststyle/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'lv', {
diff --git a/plugins/liststyle/lang/mk.js b/plugins/liststyle/lang/mk.js
index 0ed2691b..2083d09e 100644
--- a/plugins/liststyle/lang/mk.js
+++ b/plugins/liststyle/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'mk', {
diff --git a/plugins/liststyle/lang/mn.js b/plugins/liststyle/lang/mn.js
index 3b21d3cb..e9f7e603 100644
--- a/plugins/liststyle/lang/mn.js
+++ b/plugins/liststyle/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'mn', {
diff --git a/plugins/liststyle/lang/ms.js b/plugins/liststyle/lang/ms.js
index fdc23520..8f6ef1e3 100644
--- a/plugins/liststyle/lang/ms.js
+++ b/plugins/liststyle/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'ms', {
diff --git a/plugins/liststyle/lang/nb.js b/plugins/liststyle/lang/nb.js
index 697f6dd8..e6fd2c8e 100644
--- a/plugins/liststyle/lang/nb.js
+++ b/plugins/liststyle/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'nb', {
diff --git a/plugins/liststyle/lang/nl.js b/plugins/liststyle/lang/nl.js
index d74268b0..c375f50d 100644
--- a/plugins/liststyle/lang/nl.js
+++ b/plugins/liststyle/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'nl', {
diff --git a/plugins/liststyle/lang/no.js b/plugins/liststyle/lang/no.js
index 97c0a2f6..2c79b241 100644
--- a/plugins/liststyle/lang/no.js
+++ b/plugins/liststyle/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'no', {
diff --git a/plugins/liststyle/lang/oc.js b/plugins/liststyle/lang/oc.js
index 286144f3..9cc9b049 100644
--- a/plugins/liststyle/lang/oc.js
+++ b/plugins/liststyle/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'oc', {
diff --git a/plugins/liststyle/lang/pl.js b/plugins/liststyle/lang/pl.js
index c2e8da1d..97147a48 100644
--- a/plugins/liststyle/lang/pl.js
+++ b/plugins/liststyle/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'pl', {
diff --git a/plugins/liststyle/lang/pt-br.js b/plugins/liststyle/lang/pt-br.js
index 820bc2e7..17002eb5 100644
--- a/plugins/liststyle/lang/pt-br.js
+++ b/plugins/liststyle/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'pt-br', {
diff --git a/plugins/liststyle/lang/pt.js b/plugins/liststyle/lang/pt.js
index 5b49756f..eecf9efd 100644
--- a/plugins/liststyle/lang/pt.js
+++ b/plugins/liststyle/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'pt', {
diff --git a/plugins/liststyle/lang/ro.js b/plugins/liststyle/lang/ro.js
index e9ff6eb0..2c74ed96 100644
--- a/plugins/liststyle/lang/ro.js
+++ b/plugins/liststyle/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'ro', {
diff --git a/plugins/liststyle/lang/ru.js b/plugins/liststyle/lang/ru.js
index 365027ec..a0095562 100644
--- a/plugins/liststyle/lang/ru.js
+++ b/plugins/liststyle/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'ru', {
diff --git a/plugins/liststyle/lang/si.js b/plugins/liststyle/lang/si.js
index b81b3d13..788dfd34 100644
--- a/plugins/liststyle/lang/si.js
+++ b/plugins/liststyle/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'si', {
diff --git a/plugins/liststyle/lang/sk.js b/plugins/liststyle/lang/sk.js
index 97f70982..37203305 100644
--- a/plugins/liststyle/lang/sk.js
+++ b/plugins/liststyle/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'sk', {
diff --git a/plugins/liststyle/lang/sl.js b/plugins/liststyle/lang/sl.js
index ec5bd724..b00dbd56 100644
--- a/plugins/liststyle/lang/sl.js
+++ b/plugins/liststyle/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'sl', {
diff --git a/plugins/liststyle/lang/sq.js b/plugins/liststyle/lang/sq.js
index c65c5a21..a1612045 100644
--- a/plugins/liststyle/lang/sq.js
+++ b/plugins/liststyle/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'sq', {
diff --git a/plugins/liststyle/lang/sr-latn.js b/plugins/liststyle/lang/sr-latn.js
index fe365974..ab67b773 100644
--- a/plugins/liststyle/lang/sr-latn.js
+++ b/plugins/liststyle/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'sr-latn', {
diff --git a/plugins/liststyle/lang/sr.js b/plugins/liststyle/lang/sr.js
index e7e9b5fe..e9200b97 100644
--- a/plugins/liststyle/lang/sr.js
+++ b/plugins/liststyle/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'sr', {
diff --git a/plugins/liststyle/lang/sv.js b/plugins/liststyle/lang/sv.js
index 52724ea5..fbec32b4 100644
--- a/plugins/liststyle/lang/sv.js
+++ b/plugins/liststyle/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'sv', {
diff --git a/plugins/liststyle/lang/th.js b/plugins/liststyle/lang/th.js
index d5e74d46..bfe8d82c 100644
--- a/plugins/liststyle/lang/th.js
+++ b/plugins/liststyle/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'th', {
diff --git a/plugins/liststyle/lang/tr.js b/plugins/liststyle/lang/tr.js
index 5e9f0121..eebe399a 100644
--- a/plugins/liststyle/lang/tr.js
+++ b/plugins/liststyle/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'tr', {
diff --git a/plugins/liststyle/lang/tt.js b/plugins/liststyle/lang/tt.js
index b41139b2..976a408a 100644
--- a/plugins/liststyle/lang/tt.js
+++ b/plugins/liststyle/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'tt', {
diff --git a/plugins/liststyle/lang/ug.js b/plugins/liststyle/lang/ug.js
index ee55b9ae..1351e164 100644
--- a/plugins/liststyle/lang/ug.js
+++ b/plugins/liststyle/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'ug', {
diff --git a/plugins/liststyle/lang/uk.js b/plugins/liststyle/lang/uk.js
index 9b33ad93..1e0e8c8d 100644
--- a/plugins/liststyle/lang/uk.js
+++ b/plugins/liststyle/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'uk', {
diff --git a/plugins/liststyle/lang/vi.js b/plugins/liststyle/lang/vi.js
index 6f5e195e..47b0a054 100644
--- a/plugins/liststyle/lang/vi.js
+++ b/plugins/liststyle/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'vi', {
diff --git a/plugins/liststyle/lang/zh-cn.js b/plugins/liststyle/lang/zh-cn.js
index 79ab4f2c..6cb8397e 100644
--- a/plugins/liststyle/lang/zh-cn.js
+++ b/plugins/liststyle/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'zh-cn', {
diff --git a/plugins/liststyle/lang/zh.js b/plugins/liststyle/lang/zh.js
index 23f5c871..458f080d 100644
--- a/plugins/liststyle/lang/zh.js
+++ b/plugins/liststyle/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'liststyle', 'zh', {
diff --git a/plugins/liststyle/plugin.js b/plugins/liststyle/plugin.js
index 715345fd..cf7367bb 100644
--- a/plugins/liststyle/plugin.js
+++ b/plugins/liststyle/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/dev/magicline.html b/plugins/magicline/dev/magicline.html
index 04c450c8..aa1abd92 100644
--- a/plugins/magicline/dev/magicline.html
+++ b/plugins/magicline/dev/magicline.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
diff --git a/plugins/magicline/lang/af.js b/plugins/magicline/lang/af.js
index 1020af57..40f2853f 100644
--- a/plugins/magicline/lang/af.js
+++ b/plugins/magicline/lang/af.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/ar.js b/plugins/magicline/lang/ar.js
index b35a6c9d..5e252ab7 100644
--- a/plugins/magicline/lang/ar.js
+++ b/plugins/magicline/lang/ar.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/az.js b/plugins/magicline/lang/az.js
index 777baa36..bb45cc70 100644
--- a/plugins/magicline/lang/az.js
+++ b/plugins/magicline/lang/az.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/bg.js b/plugins/magicline/lang/bg.js
index 9b995fcc..f6802768 100644
--- a/plugins/magicline/lang/bg.js
+++ b/plugins/magicline/lang/bg.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/ca.js b/plugins/magicline/lang/ca.js
index 087405a4..3acf6bd7 100644
--- a/plugins/magicline/lang/ca.js
+++ b/plugins/magicline/lang/ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/cs.js b/plugins/magicline/lang/cs.js
index b4bb5a7d..4c1d4dfe 100644
--- a/plugins/magicline/lang/cs.js
+++ b/plugins/magicline/lang/cs.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/cy.js b/plugins/magicline/lang/cy.js
index 248c7276..b75cc981 100644
--- a/plugins/magicline/lang/cy.js
+++ b/plugins/magicline/lang/cy.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/da.js b/plugins/magicline/lang/da.js
index 8b9a1b36..ef0a6e4b 100644
--- a/plugins/magicline/lang/da.js
+++ b/plugins/magicline/lang/da.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/de-ch.js b/plugins/magicline/lang/de-ch.js
index 74a8b3f3..e1f97a40 100644
--- a/plugins/magicline/lang/de-ch.js
+++ b/plugins/magicline/lang/de-ch.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/de.js b/plugins/magicline/lang/de.js
index ac4dede7..04f68da3 100644
--- a/plugins/magicline/lang/de.js
+++ b/plugins/magicline/lang/de.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/el.js b/plugins/magicline/lang/el.js
index d0a34105..7bbc072e 100644
--- a/plugins/magicline/lang/el.js
+++ b/plugins/magicline/lang/el.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/en-au.js b/plugins/magicline/lang/en-au.js
index efdf13af..e9adc691 100644
--- a/plugins/magicline/lang/en-au.js
+++ b/plugins/magicline/lang/en-au.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/en-gb.js b/plugins/magicline/lang/en-gb.js
index 08e7b9e7..7e8601c1 100644
--- a/plugins/magicline/lang/en-gb.js
+++ b/plugins/magicline/lang/en-gb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/en.js b/plugins/magicline/lang/en.js
index c1258ae8..abdc0a6a 100644
--- a/plugins/magicline/lang/en.js
+++ b/plugins/magicline/lang/en.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/eo.js b/plugins/magicline/lang/eo.js
index 1d057e88..e4288a16 100644
--- a/plugins/magicline/lang/eo.js
+++ b/plugins/magicline/lang/eo.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/es-mx.js b/plugins/magicline/lang/es-mx.js
index 8cb95b97..53b480b2 100644
--- a/plugins/magicline/lang/es-mx.js
+++ b/plugins/magicline/lang/es-mx.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/es.js b/plugins/magicline/lang/es.js
index 5467eaa9..02e76a52 100644
--- a/plugins/magicline/lang/es.js
+++ b/plugins/magicline/lang/es.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/et.js b/plugins/magicline/lang/et.js
index 40e3e096..38bdcdb7 100644
--- a/plugins/magicline/lang/et.js
+++ b/plugins/magicline/lang/et.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/eu.js b/plugins/magicline/lang/eu.js
index 0138527b..6efe5dfd 100644
--- a/plugins/magicline/lang/eu.js
+++ b/plugins/magicline/lang/eu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/fa.js b/plugins/magicline/lang/fa.js
index 550aa80f..de9b286b 100644
--- a/plugins/magicline/lang/fa.js
+++ b/plugins/magicline/lang/fa.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/fi.js b/plugins/magicline/lang/fi.js
index 941e7fba..92f07c43 100644
--- a/plugins/magicline/lang/fi.js
+++ b/plugins/magicline/lang/fi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/fr-ca.js b/plugins/magicline/lang/fr-ca.js
index e5e6c96b..2cd5a497 100644
--- a/plugins/magicline/lang/fr-ca.js
+++ b/plugins/magicline/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/fr.js b/plugins/magicline/lang/fr.js
index 02ca5fe2..c5b9a64d 100644
--- a/plugins/magicline/lang/fr.js
+++ b/plugins/magicline/lang/fr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/gl.js b/plugins/magicline/lang/gl.js
index e440e01b..3e28bc78 100644
--- a/plugins/magicline/lang/gl.js
+++ b/plugins/magicline/lang/gl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/he.js b/plugins/magicline/lang/he.js
index d8db9d88..72adb896 100644
--- a/plugins/magicline/lang/he.js
+++ b/plugins/magicline/lang/he.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/hr.js b/plugins/magicline/lang/hr.js
index cb6146cd..d98aa99d 100644
--- a/plugins/magicline/lang/hr.js
+++ b/plugins/magicline/lang/hr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/hu.js b/plugins/magicline/lang/hu.js
index 02d6a330..a832506b 100644
--- a/plugins/magicline/lang/hu.js
+++ b/plugins/magicline/lang/hu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/id.js b/plugins/magicline/lang/id.js
index db9e4cc9..fbdcd795 100644
--- a/plugins/magicline/lang/id.js
+++ b/plugins/magicline/lang/id.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/it.js b/plugins/magicline/lang/it.js
index cd7c2a27..864a4337 100644
--- a/plugins/magicline/lang/it.js
+++ b/plugins/magicline/lang/it.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/ja.js b/plugins/magicline/lang/ja.js
index 5c70741d..9dbe14d0 100644
--- a/plugins/magicline/lang/ja.js
+++ b/plugins/magicline/lang/ja.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/km.js b/plugins/magicline/lang/km.js
index fcf532ef..1ae5fee9 100644
--- a/plugins/magicline/lang/km.js
+++ b/plugins/magicline/lang/km.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/ko.js b/plugins/magicline/lang/ko.js
index b1038ec4..23ad4743 100644
--- a/plugins/magicline/lang/ko.js
+++ b/plugins/magicline/lang/ko.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/ku.js b/plugins/magicline/lang/ku.js
index 29e6a947..697abb02 100644
--- a/plugins/magicline/lang/ku.js
+++ b/plugins/magicline/lang/ku.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/lt.js b/plugins/magicline/lang/lt.js
index 6a1e30c1..f0cc8448 100644
--- a/plugins/magicline/lang/lt.js
+++ b/plugins/magicline/lang/lt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/lv.js b/plugins/magicline/lang/lv.js
index 7dbffbc5..7705e3df 100644
--- a/plugins/magicline/lang/lv.js
+++ b/plugins/magicline/lang/lv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/nb.js b/plugins/magicline/lang/nb.js
index f891576f..3dc72268 100644
--- a/plugins/magicline/lang/nb.js
+++ b/plugins/magicline/lang/nb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/nl.js b/plugins/magicline/lang/nl.js
index f078d6b4..0f01cf4d 100644
--- a/plugins/magicline/lang/nl.js
+++ b/plugins/magicline/lang/nl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/no.js b/plugins/magicline/lang/no.js
index 3c73982d..37ad51a9 100644
--- a/plugins/magicline/lang/no.js
+++ b/plugins/magicline/lang/no.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/oc.js b/plugins/magicline/lang/oc.js
index 4c5650fb..4ede2b06 100644
--- a/plugins/magicline/lang/oc.js
+++ b/plugins/magicline/lang/oc.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/pl.js b/plugins/magicline/lang/pl.js
index ad85c397..675e824b 100644
--- a/plugins/magicline/lang/pl.js
+++ b/plugins/magicline/lang/pl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/pt-br.js b/plugins/magicline/lang/pt-br.js
index 18e5c40c..985c064a 100644
--- a/plugins/magicline/lang/pt-br.js
+++ b/plugins/magicline/lang/pt-br.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/pt.js b/plugins/magicline/lang/pt.js
index 16b2d4dd..3d421be7 100644
--- a/plugins/magicline/lang/pt.js
+++ b/plugins/magicline/lang/pt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/ro.js b/plugins/magicline/lang/ro.js
index 4e5e46b0..6ec16d24 100644
--- a/plugins/magicline/lang/ro.js
+++ b/plugins/magicline/lang/ro.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/ru.js b/plugins/magicline/lang/ru.js
index 9f2ef858..74a64444 100644
--- a/plugins/magicline/lang/ru.js
+++ b/plugins/magicline/lang/ru.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/si.js b/plugins/magicline/lang/si.js
index 0ecb174a..a8a16ba8 100644
--- a/plugins/magicline/lang/si.js
+++ b/plugins/magicline/lang/si.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/sk.js b/plugins/magicline/lang/sk.js
index 22bd92ba..3d9181b5 100644
--- a/plugins/magicline/lang/sk.js
+++ b/plugins/magicline/lang/sk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/sl.js b/plugins/magicline/lang/sl.js
index ee30d0c4..3d3ba0ee 100644
--- a/plugins/magicline/lang/sl.js
+++ b/plugins/magicline/lang/sl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/sq.js b/plugins/magicline/lang/sq.js
index c90d088d..b96f1ae8 100644
--- a/plugins/magicline/lang/sq.js
+++ b/plugins/magicline/lang/sq.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/sr-latn.js b/plugins/magicline/lang/sr-latn.js
index 42b1e591..c36ad808 100644
--- a/plugins/magicline/lang/sr-latn.js
+++ b/plugins/magicline/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/sr.js b/plugins/magicline/lang/sr.js
index 246063d0..9865bdd5 100644
--- a/plugins/magicline/lang/sr.js
+++ b/plugins/magicline/lang/sr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/sv.js b/plugins/magicline/lang/sv.js
index 800140cb..29916d08 100644
--- a/plugins/magicline/lang/sv.js
+++ b/plugins/magicline/lang/sv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/tr.js b/plugins/magicline/lang/tr.js
index f89d45ce..043964ee 100644
--- a/plugins/magicline/lang/tr.js
+++ b/plugins/magicline/lang/tr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/tt.js b/plugins/magicline/lang/tt.js
index b42bd99d..4ef1af9f 100644
--- a/plugins/magicline/lang/tt.js
+++ b/plugins/magicline/lang/tt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/ug.js b/plugins/magicline/lang/ug.js
index d50ee632..4db33f13 100644
--- a/plugins/magicline/lang/ug.js
+++ b/plugins/magicline/lang/ug.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/uk.js b/plugins/magicline/lang/uk.js
index a7064d0d..88301608 100644
--- a/plugins/magicline/lang/uk.js
+++ b/plugins/magicline/lang/uk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/vi.js b/plugins/magicline/lang/vi.js
index 4b637104..ef120cc0 100644
--- a/plugins/magicline/lang/vi.js
+++ b/plugins/magicline/lang/vi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/zh-cn.js b/plugins/magicline/lang/zh-cn.js
index 206b3287..3caa0712 100644
--- a/plugins/magicline/lang/zh-cn.js
+++ b/plugins/magicline/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/lang/zh.js b/plugins/magicline/lang/zh.js
index 9e183cea..fc289c6c 100644
--- a/plugins/magicline/lang/zh.js
+++ b/plugins/magicline/lang/zh.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/plugin.js b/plugins/magicline/plugin.js
index c3e05b9f..f8a5c252 100644
--- a/plugins/magicline/plugin.js
+++ b/plugins/magicline/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/magicline/samples/magicline.html b/plugins/magicline/samples/magicline.html
index 688c2742..e127cbad 100644
--- a/plugins/magicline/samples/magicline.html
+++ b/plugins/magicline/samples/magicline.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -202,7 +202,7 @@ CKEDITOR.replace( 'editor2', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/mathjax/dev/mathjax.html b/plugins/mathjax/dev/mathjax.html
index c5244493..c1e6fcdd 100644
--- a/plugins/mathjax/dev/mathjax.html
+++ b/plugins/mathjax/dev/mathjax.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
@@ -113,7 +113,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/mathjax/dialogs/mathjax.js b/plugins/mathjax/dialogs/mathjax.js
index 30b2d917..f56bc722 100644
--- a/plugins/mathjax/dialogs/mathjax.js
+++ b/plugins/mathjax/dialogs/mathjax.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/mathjax/lang/af.js b/plugins/mathjax/lang/af.js
index 8137d8ad..3ed2206a 100644
--- a/plugins/mathjax/lang/af.js
+++ b/plugins/mathjax/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'af', {
diff --git a/plugins/mathjax/lang/ar.js b/plugins/mathjax/lang/ar.js
index e2ec54a1..6ebef63f 100644
--- a/plugins/mathjax/lang/ar.js
+++ b/plugins/mathjax/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'ar', {
diff --git a/plugins/mathjax/lang/az.js b/plugins/mathjax/lang/az.js
index e80f3c9a..60769d3d 100644
--- a/plugins/mathjax/lang/az.js
+++ b/plugins/mathjax/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'az', {
diff --git a/plugins/mathjax/lang/bg.js b/plugins/mathjax/lang/bg.js
index bb52e196..2708d10f 100644
--- a/plugins/mathjax/lang/bg.js
+++ b/plugins/mathjax/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'bg', {
diff --git a/plugins/mathjax/lang/ca.js b/plugins/mathjax/lang/ca.js
index f1ae4339..4763ee7f 100644
--- a/plugins/mathjax/lang/ca.js
+++ b/plugins/mathjax/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'ca', {
diff --git a/plugins/mathjax/lang/cs.js b/plugins/mathjax/lang/cs.js
index 642e6567..96cc8d96 100644
--- a/plugins/mathjax/lang/cs.js
+++ b/plugins/mathjax/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'cs', {
diff --git a/plugins/mathjax/lang/cy.js b/plugins/mathjax/lang/cy.js
index b4fa3d15..51b9647f 100644
--- a/plugins/mathjax/lang/cy.js
+++ b/plugins/mathjax/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'cy', {
diff --git a/plugins/mathjax/lang/da.js b/plugins/mathjax/lang/da.js
index 82279043..e8295064 100644
--- a/plugins/mathjax/lang/da.js
+++ b/plugins/mathjax/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'da', {
diff --git a/plugins/mathjax/lang/de-ch.js b/plugins/mathjax/lang/de-ch.js
index 86d27b7b..9dbd8332 100644
--- a/plugins/mathjax/lang/de-ch.js
+++ b/plugins/mathjax/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'de-ch', {
diff --git a/plugins/mathjax/lang/de.js b/plugins/mathjax/lang/de.js
index c2f80d95..528ab889 100644
--- a/plugins/mathjax/lang/de.js
+++ b/plugins/mathjax/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'de', {
diff --git a/plugins/mathjax/lang/el.js b/plugins/mathjax/lang/el.js
index d7b98fcc..ddfff168 100644
--- a/plugins/mathjax/lang/el.js
+++ b/plugins/mathjax/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'el', {
diff --git a/plugins/mathjax/lang/en-au.js b/plugins/mathjax/lang/en-au.js
index 6a0106be..3acf2e68 100644
--- a/plugins/mathjax/lang/en-au.js
+++ b/plugins/mathjax/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'en-au', {
diff --git a/plugins/mathjax/lang/en-gb.js b/plugins/mathjax/lang/en-gb.js
index dc1d59a5..a0121e35 100644
--- a/plugins/mathjax/lang/en-gb.js
+++ b/plugins/mathjax/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'en-gb', {
diff --git a/plugins/mathjax/lang/en.js b/plugins/mathjax/lang/en.js
index 48f69a78..2e2827b2 100644
--- a/plugins/mathjax/lang/en.js
+++ b/plugins/mathjax/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'en', {
diff --git a/plugins/mathjax/lang/eo.js b/plugins/mathjax/lang/eo.js
index d34bc4be..69ca73dd 100644
--- a/plugins/mathjax/lang/eo.js
+++ b/plugins/mathjax/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'eo', {
diff --git a/plugins/mathjax/lang/es-mx.js b/plugins/mathjax/lang/es-mx.js
index 9a340619..b11aa264 100644
--- a/plugins/mathjax/lang/es-mx.js
+++ b/plugins/mathjax/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'es-mx', {
diff --git a/plugins/mathjax/lang/es.js b/plugins/mathjax/lang/es.js
index c562e7b2..e462c691 100644
--- a/plugins/mathjax/lang/es.js
+++ b/plugins/mathjax/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'es', {
diff --git a/plugins/mathjax/lang/et.js b/plugins/mathjax/lang/et.js
index 4385e6eb..eb278b90 100644
--- a/plugins/mathjax/lang/et.js
+++ b/plugins/mathjax/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'et', {
diff --git a/plugins/mathjax/lang/eu.js b/plugins/mathjax/lang/eu.js
index 53cd39ab..447ca984 100644
--- a/plugins/mathjax/lang/eu.js
+++ b/plugins/mathjax/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'eu', {
diff --git a/plugins/mathjax/lang/fa.js b/plugins/mathjax/lang/fa.js
index c969a533..f5192f2e 100644
--- a/plugins/mathjax/lang/fa.js
+++ b/plugins/mathjax/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'fa', {
diff --git a/plugins/mathjax/lang/fi.js b/plugins/mathjax/lang/fi.js
index e3594d9f..596afebc 100644
--- a/plugins/mathjax/lang/fi.js
+++ b/plugins/mathjax/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'fi', {
diff --git a/plugins/mathjax/lang/fr.js b/plugins/mathjax/lang/fr.js
index 05f7b9a4..8e400979 100644
--- a/plugins/mathjax/lang/fr.js
+++ b/plugins/mathjax/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'fr', {
diff --git a/plugins/mathjax/lang/gl.js b/plugins/mathjax/lang/gl.js
index 61d16435..edbf038e 100644
--- a/plugins/mathjax/lang/gl.js
+++ b/plugins/mathjax/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'gl', {
diff --git a/plugins/mathjax/lang/he.js b/plugins/mathjax/lang/he.js
index c4ac7ef0..9e7e003e 100644
--- a/plugins/mathjax/lang/he.js
+++ b/plugins/mathjax/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'he', {
diff --git a/plugins/mathjax/lang/hr.js b/plugins/mathjax/lang/hr.js
index 88f48d37..1102e750 100644
--- a/plugins/mathjax/lang/hr.js
+++ b/plugins/mathjax/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'hr', {
diff --git a/plugins/mathjax/lang/hu.js b/plugins/mathjax/lang/hu.js
index 315149c8..7e3d75ff 100644
--- a/plugins/mathjax/lang/hu.js
+++ b/plugins/mathjax/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'hu', {
diff --git a/plugins/mathjax/lang/id.js b/plugins/mathjax/lang/id.js
index b0da53d8..0c892718 100644
--- a/plugins/mathjax/lang/id.js
+++ b/plugins/mathjax/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'id', {
diff --git a/plugins/mathjax/lang/it.js b/plugins/mathjax/lang/it.js
index 9aa4b8d3..e9ce0ac8 100644
--- a/plugins/mathjax/lang/it.js
+++ b/plugins/mathjax/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'it', {
diff --git a/plugins/mathjax/lang/ja.js b/plugins/mathjax/lang/ja.js
index e978ba3d..abfb7be7 100644
--- a/plugins/mathjax/lang/ja.js
+++ b/plugins/mathjax/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'ja', {
diff --git a/plugins/mathjax/lang/km.js b/plugins/mathjax/lang/km.js
index 2cd10d2d..8c42291a 100644
--- a/plugins/mathjax/lang/km.js
+++ b/plugins/mathjax/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'km', {
diff --git a/plugins/mathjax/lang/ko.js b/plugins/mathjax/lang/ko.js
index 81ecb805..1ca074dd 100644
--- a/plugins/mathjax/lang/ko.js
+++ b/plugins/mathjax/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'ko', {
diff --git a/plugins/mathjax/lang/ku.js b/plugins/mathjax/lang/ku.js
index 4ba10f1b..b62a27e9 100644
--- a/plugins/mathjax/lang/ku.js
+++ b/plugins/mathjax/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'ku', {
diff --git a/plugins/mathjax/lang/lt.js b/plugins/mathjax/lang/lt.js
index 503021f0..36018fa1 100644
--- a/plugins/mathjax/lang/lt.js
+++ b/plugins/mathjax/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'lt', {
diff --git a/plugins/mathjax/lang/lv.js b/plugins/mathjax/lang/lv.js
index 7b61c560..f2f1d026 100644
--- a/plugins/mathjax/lang/lv.js
+++ b/plugins/mathjax/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'lv', {
diff --git a/plugins/mathjax/lang/nb.js b/plugins/mathjax/lang/nb.js
index 00012be4..fea04eca 100644
--- a/plugins/mathjax/lang/nb.js
+++ b/plugins/mathjax/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'nb', {
diff --git a/plugins/mathjax/lang/nl.js b/plugins/mathjax/lang/nl.js
index 70500a11..b5557f81 100644
--- a/plugins/mathjax/lang/nl.js
+++ b/plugins/mathjax/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'nl', {
diff --git a/plugins/mathjax/lang/no.js b/plugins/mathjax/lang/no.js
index 73595b19..b2fced25 100644
--- a/plugins/mathjax/lang/no.js
+++ b/plugins/mathjax/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'no', {
diff --git a/plugins/mathjax/lang/oc.js b/plugins/mathjax/lang/oc.js
index e38e62f5..6fce653f 100644
--- a/plugins/mathjax/lang/oc.js
+++ b/plugins/mathjax/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'oc', {
diff --git a/plugins/mathjax/lang/pl.js b/plugins/mathjax/lang/pl.js
index 3600bcca..b9e6c778 100644
--- a/plugins/mathjax/lang/pl.js
+++ b/plugins/mathjax/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'pl', {
diff --git a/plugins/mathjax/lang/pt-br.js b/plugins/mathjax/lang/pt-br.js
index 400a220b..e84dbec0 100644
--- a/plugins/mathjax/lang/pt-br.js
+++ b/plugins/mathjax/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'pt-br', {
diff --git a/plugins/mathjax/lang/pt.js b/plugins/mathjax/lang/pt.js
index 40a1eb17..83aa6587 100644
--- a/plugins/mathjax/lang/pt.js
+++ b/plugins/mathjax/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'pt', {
diff --git a/plugins/mathjax/lang/ro.js b/plugins/mathjax/lang/ro.js
index caa989da..b1182f15 100644
--- a/plugins/mathjax/lang/ro.js
+++ b/plugins/mathjax/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'ro', {
diff --git a/plugins/mathjax/lang/ru.js b/plugins/mathjax/lang/ru.js
index 2fc59b93..757eaa1f 100644
--- a/plugins/mathjax/lang/ru.js
+++ b/plugins/mathjax/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'ru', {
diff --git a/plugins/mathjax/lang/sk.js b/plugins/mathjax/lang/sk.js
index a9f4d82f..7d7b5e55 100644
--- a/plugins/mathjax/lang/sk.js
+++ b/plugins/mathjax/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'sk', {
diff --git a/plugins/mathjax/lang/sl.js b/plugins/mathjax/lang/sl.js
index 8f6013cf..64e09a7b 100644
--- a/plugins/mathjax/lang/sl.js
+++ b/plugins/mathjax/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'sl', {
diff --git a/plugins/mathjax/lang/sq.js b/plugins/mathjax/lang/sq.js
index 5fcee395..03f3fe4b 100644
--- a/plugins/mathjax/lang/sq.js
+++ b/plugins/mathjax/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'sq', {
diff --git a/plugins/mathjax/lang/sr-latn.js b/plugins/mathjax/lang/sr-latn.js
index 81eaa7a4..ff82981c 100644
--- a/plugins/mathjax/lang/sr-latn.js
+++ b/plugins/mathjax/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'sr-latn', {
diff --git a/plugins/mathjax/lang/sr.js b/plugins/mathjax/lang/sr.js
index 60f9934e..82f08b43 100644
--- a/plugins/mathjax/lang/sr.js
+++ b/plugins/mathjax/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'sr', {
diff --git a/plugins/mathjax/lang/sv.js b/plugins/mathjax/lang/sv.js
index ad2ff4d2..2dd91aba 100644
--- a/plugins/mathjax/lang/sv.js
+++ b/plugins/mathjax/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'sv', {
diff --git a/plugins/mathjax/lang/tr.js b/plugins/mathjax/lang/tr.js
index 00fa1238..cef0525e 100644
--- a/plugins/mathjax/lang/tr.js
+++ b/plugins/mathjax/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'tr', {
diff --git a/plugins/mathjax/lang/tt.js b/plugins/mathjax/lang/tt.js
index 5a80b914..2e6dfce3 100644
--- a/plugins/mathjax/lang/tt.js
+++ b/plugins/mathjax/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'tt', {
diff --git a/plugins/mathjax/lang/ug.js b/plugins/mathjax/lang/ug.js
index 081d5e1b..0174a7de 100644
--- a/plugins/mathjax/lang/ug.js
+++ b/plugins/mathjax/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'ug', {
diff --git a/plugins/mathjax/lang/uk.js b/plugins/mathjax/lang/uk.js
index 3e056a31..097f7a94 100644
--- a/plugins/mathjax/lang/uk.js
+++ b/plugins/mathjax/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'uk', {
diff --git a/plugins/mathjax/lang/vi.js b/plugins/mathjax/lang/vi.js
index 1cad8e90..ae041f85 100644
--- a/plugins/mathjax/lang/vi.js
+++ b/plugins/mathjax/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'vi', {
diff --git a/plugins/mathjax/lang/zh-cn.js b/plugins/mathjax/lang/zh-cn.js
index a941de32..1b79603d 100644
--- a/plugins/mathjax/lang/zh-cn.js
+++ b/plugins/mathjax/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'zh-cn', {
diff --git a/plugins/mathjax/lang/zh.js b/plugins/mathjax/lang/zh.js
index e770ddae..de8ba34f 100644
--- a/plugins/mathjax/lang/zh.js
+++ b/plugins/mathjax/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'mathjax', 'zh', {
diff --git a/plugins/mathjax/plugin.js b/plugins/mathjax/plugin.js
index ebe851de..815ccc74 100644
--- a/plugins/mathjax/plugin.js
+++ b/plugins/mathjax/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/mathjax/samples/mathjax.html b/plugins/mathjax/samples/mathjax.html
index e50eade2..9f2c2e0c 100644
--- a/plugins/mathjax/samples/mathjax.html
+++ b/plugins/mathjax/samples/mathjax.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -31,7 +31,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/maximize/lang/af.js b/plugins/maximize/lang/af.js
index 8cad7196..f2f58e1d 100644
--- a/plugins/maximize/lang/af.js
+++ b/plugins/maximize/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'af', {
diff --git a/plugins/maximize/lang/ar.js b/plugins/maximize/lang/ar.js
index 3446241c..16f42b3c 100644
--- a/plugins/maximize/lang/ar.js
+++ b/plugins/maximize/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'ar', {
diff --git a/plugins/maximize/lang/az.js b/plugins/maximize/lang/az.js
index f35add81..40838eae 100644
--- a/plugins/maximize/lang/az.js
+++ b/plugins/maximize/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'az', {
diff --git a/plugins/maximize/lang/bg.js b/plugins/maximize/lang/bg.js
index e41e9171..3954933b 100644
--- a/plugins/maximize/lang/bg.js
+++ b/plugins/maximize/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'bg', {
diff --git a/plugins/maximize/lang/bn.js b/plugins/maximize/lang/bn.js
index cdbbe202..9573a153 100644
--- a/plugins/maximize/lang/bn.js
+++ b/plugins/maximize/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'bn', {
diff --git a/plugins/maximize/lang/bs.js b/plugins/maximize/lang/bs.js
index eb59f3f4..07fc16ca 100644
--- a/plugins/maximize/lang/bs.js
+++ b/plugins/maximize/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'bs', {
diff --git a/plugins/maximize/lang/ca.js b/plugins/maximize/lang/ca.js
index a2d96339..27da1ee2 100644
--- a/plugins/maximize/lang/ca.js
+++ b/plugins/maximize/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'ca', {
diff --git a/plugins/maximize/lang/cs.js b/plugins/maximize/lang/cs.js
index 9ef6dc1f..f8f0f8a4 100644
--- a/plugins/maximize/lang/cs.js
+++ b/plugins/maximize/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'cs', {
diff --git a/plugins/maximize/lang/cy.js b/plugins/maximize/lang/cy.js
index 1e919ea1..5ae24c02 100644
--- a/plugins/maximize/lang/cy.js
+++ b/plugins/maximize/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'cy', {
diff --git a/plugins/maximize/lang/da.js b/plugins/maximize/lang/da.js
index dba7751d..130c7009 100644
--- a/plugins/maximize/lang/da.js
+++ b/plugins/maximize/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'da', {
diff --git a/plugins/maximize/lang/de-ch.js b/plugins/maximize/lang/de-ch.js
index 8f3c6970..32b3b7d3 100644
--- a/plugins/maximize/lang/de-ch.js
+++ b/plugins/maximize/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'de-ch', {
diff --git a/plugins/maximize/lang/de.js b/plugins/maximize/lang/de.js
index 3af869ea..287cb399 100644
--- a/plugins/maximize/lang/de.js
+++ b/plugins/maximize/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'de', {
diff --git a/plugins/maximize/lang/el.js b/plugins/maximize/lang/el.js
index d3b14327..d7a266fb 100644
--- a/plugins/maximize/lang/el.js
+++ b/plugins/maximize/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'el', {
diff --git a/plugins/maximize/lang/en-au.js b/plugins/maximize/lang/en-au.js
index b0a70567..18ee7e9b 100644
--- a/plugins/maximize/lang/en-au.js
+++ b/plugins/maximize/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'en-au', {
diff --git a/plugins/maximize/lang/en-ca.js b/plugins/maximize/lang/en-ca.js
index f1b20f0a..09ce054f 100644
--- a/plugins/maximize/lang/en-ca.js
+++ b/plugins/maximize/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'en-ca', {
diff --git a/plugins/maximize/lang/en-gb.js b/plugins/maximize/lang/en-gb.js
index 445deade..ac46694a 100644
--- a/plugins/maximize/lang/en-gb.js
+++ b/plugins/maximize/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'en-gb', {
diff --git a/plugins/maximize/lang/en.js b/plugins/maximize/lang/en.js
index 2d95e544..910ccdf7 100644
--- a/plugins/maximize/lang/en.js
+++ b/plugins/maximize/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'en', {
diff --git a/plugins/maximize/lang/eo.js b/plugins/maximize/lang/eo.js
index 46afb89a..c9f56dd7 100644
--- a/plugins/maximize/lang/eo.js
+++ b/plugins/maximize/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'eo', {
diff --git a/plugins/maximize/lang/es-mx.js b/plugins/maximize/lang/es-mx.js
index af54d587..422fc82f 100644
--- a/plugins/maximize/lang/es-mx.js
+++ b/plugins/maximize/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'es-mx', {
diff --git a/plugins/maximize/lang/es.js b/plugins/maximize/lang/es.js
index 7e0d405a..5086018e 100644
--- a/plugins/maximize/lang/es.js
+++ b/plugins/maximize/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'es', {
diff --git a/plugins/maximize/lang/et.js b/plugins/maximize/lang/et.js
index 160f2fff..9b21a195 100644
--- a/plugins/maximize/lang/et.js
+++ b/plugins/maximize/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'et', {
diff --git a/plugins/maximize/lang/eu.js b/plugins/maximize/lang/eu.js
index 4b007971..1fad6cf9 100644
--- a/plugins/maximize/lang/eu.js
+++ b/plugins/maximize/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'eu', {
diff --git a/plugins/maximize/lang/fa.js b/plugins/maximize/lang/fa.js
index 9c84cc62..957770e3 100644
--- a/plugins/maximize/lang/fa.js
+++ b/plugins/maximize/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'fa', {
diff --git a/plugins/maximize/lang/fi.js b/plugins/maximize/lang/fi.js
index dc50aed8..1cc36aea 100644
--- a/plugins/maximize/lang/fi.js
+++ b/plugins/maximize/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'fi', {
diff --git a/plugins/maximize/lang/fo.js b/plugins/maximize/lang/fo.js
index 922b8ee5..2ee07ae8 100644
--- a/plugins/maximize/lang/fo.js
+++ b/plugins/maximize/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'fo', {
diff --git a/plugins/maximize/lang/fr-ca.js b/plugins/maximize/lang/fr-ca.js
index 59ea7a8a..8e91613b 100644
--- a/plugins/maximize/lang/fr-ca.js
+++ b/plugins/maximize/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'fr-ca', {
diff --git a/plugins/maximize/lang/fr.js b/plugins/maximize/lang/fr.js
index e6c050ee..514428a7 100644
--- a/plugins/maximize/lang/fr.js
+++ b/plugins/maximize/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'fr', {
diff --git a/plugins/maximize/lang/gl.js b/plugins/maximize/lang/gl.js
index 6169fc58..2de1c92f 100644
--- a/plugins/maximize/lang/gl.js
+++ b/plugins/maximize/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'gl', {
diff --git a/plugins/maximize/lang/gu.js b/plugins/maximize/lang/gu.js
index afdb8d2b..70ea39fc 100644
--- a/plugins/maximize/lang/gu.js
+++ b/plugins/maximize/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'gu', {
diff --git a/plugins/maximize/lang/he.js b/plugins/maximize/lang/he.js
index a9373bd0..81f99805 100644
--- a/plugins/maximize/lang/he.js
+++ b/plugins/maximize/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'he', {
diff --git a/plugins/maximize/lang/hi.js b/plugins/maximize/lang/hi.js
index af3f801b..3ceb2a46 100644
--- a/plugins/maximize/lang/hi.js
+++ b/plugins/maximize/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'hi', {
diff --git a/plugins/maximize/lang/hr.js b/plugins/maximize/lang/hr.js
index 2394865a..122d8aa1 100644
--- a/plugins/maximize/lang/hr.js
+++ b/plugins/maximize/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'hr', {
diff --git a/plugins/maximize/lang/hu.js b/plugins/maximize/lang/hu.js
index 082d4672..97738967 100644
--- a/plugins/maximize/lang/hu.js
+++ b/plugins/maximize/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'hu', {
diff --git a/plugins/maximize/lang/id.js b/plugins/maximize/lang/id.js
index fb4b9082..81e65221 100644
--- a/plugins/maximize/lang/id.js
+++ b/plugins/maximize/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'id', {
diff --git a/plugins/maximize/lang/is.js b/plugins/maximize/lang/is.js
index ab9cadbf..de24abd9 100644
--- a/plugins/maximize/lang/is.js
+++ b/plugins/maximize/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'is', {
diff --git a/plugins/maximize/lang/it.js b/plugins/maximize/lang/it.js
index 43328032..7af0e174 100644
--- a/plugins/maximize/lang/it.js
+++ b/plugins/maximize/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'it', {
diff --git a/plugins/maximize/lang/ja.js b/plugins/maximize/lang/ja.js
index 61efdef0..0a7b68b2 100644
--- a/plugins/maximize/lang/ja.js
+++ b/plugins/maximize/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'ja', {
diff --git a/plugins/maximize/lang/ka.js b/plugins/maximize/lang/ka.js
index 69dfe386..2dbcc331 100644
--- a/plugins/maximize/lang/ka.js
+++ b/plugins/maximize/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'ka', {
diff --git a/plugins/maximize/lang/km.js b/plugins/maximize/lang/km.js
index 39df0841..2244e96b 100644
--- a/plugins/maximize/lang/km.js
+++ b/plugins/maximize/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'km', {
diff --git a/plugins/maximize/lang/ko.js b/plugins/maximize/lang/ko.js
index 42d788fd..c80211ac 100644
--- a/plugins/maximize/lang/ko.js
+++ b/plugins/maximize/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'ko', {
diff --git a/plugins/maximize/lang/ku.js b/plugins/maximize/lang/ku.js
index 531a57e5..77aafa2c 100644
--- a/plugins/maximize/lang/ku.js
+++ b/plugins/maximize/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'ku', {
diff --git a/plugins/maximize/lang/lt.js b/plugins/maximize/lang/lt.js
index e0adc2fb..5e0b1657 100644
--- a/plugins/maximize/lang/lt.js
+++ b/plugins/maximize/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'lt', {
diff --git a/plugins/maximize/lang/lv.js b/plugins/maximize/lang/lv.js
index 99dbc5a7..4a8e3328 100644
--- a/plugins/maximize/lang/lv.js
+++ b/plugins/maximize/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'lv', {
diff --git a/plugins/maximize/lang/mk.js b/plugins/maximize/lang/mk.js
index fed1f8b0..9dc56885 100644
--- a/plugins/maximize/lang/mk.js
+++ b/plugins/maximize/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'mk', {
diff --git a/plugins/maximize/lang/mn.js b/plugins/maximize/lang/mn.js
index 982ca6a0..144f2957 100644
--- a/plugins/maximize/lang/mn.js
+++ b/plugins/maximize/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'mn', {
diff --git a/plugins/maximize/lang/ms.js b/plugins/maximize/lang/ms.js
index 2da439ae..2389da34 100644
--- a/plugins/maximize/lang/ms.js
+++ b/plugins/maximize/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'ms', {
diff --git a/plugins/maximize/lang/nb.js b/plugins/maximize/lang/nb.js
index 828fceca..3b8ffde2 100644
--- a/plugins/maximize/lang/nb.js
+++ b/plugins/maximize/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'nb', {
diff --git a/plugins/maximize/lang/nl.js b/plugins/maximize/lang/nl.js
index bec4440f..0063211c 100644
--- a/plugins/maximize/lang/nl.js
+++ b/plugins/maximize/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'nl', {
diff --git a/plugins/maximize/lang/no.js b/plugins/maximize/lang/no.js
index 64786e3c..9decff92 100644
--- a/plugins/maximize/lang/no.js
+++ b/plugins/maximize/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'no', {
diff --git a/plugins/maximize/lang/oc.js b/plugins/maximize/lang/oc.js
index 79bffcb6..2dea82ed 100644
--- a/plugins/maximize/lang/oc.js
+++ b/plugins/maximize/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'oc', {
diff --git a/plugins/maximize/lang/pl.js b/plugins/maximize/lang/pl.js
index df630d82..f8e090ed 100644
--- a/plugins/maximize/lang/pl.js
+++ b/plugins/maximize/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'pl', {
diff --git a/plugins/maximize/lang/pt-br.js b/plugins/maximize/lang/pt-br.js
index e00ffa74..2f0a1ff5 100644
--- a/plugins/maximize/lang/pt-br.js
+++ b/plugins/maximize/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'pt-br', {
diff --git a/plugins/maximize/lang/pt.js b/plugins/maximize/lang/pt.js
index 4f0d13a6..414f30bc 100644
--- a/plugins/maximize/lang/pt.js
+++ b/plugins/maximize/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'pt', {
diff --git a/plugins/maximize/lang/ro.js b/plugins/maximize/lang/ro.js
index 60eeb09e..67ac8b17 100644
--- a/plugins/maximize/lang/ro.js
+++ b/plugins/maximize/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'ro', {
diff --git a/plugins/maximize/lang/ru.js b/plugins/maximize/lang/ru.js
index e3d460bc..9900b480 100644
--- a/plugins/maximize/lang/ru.js
+++ b/plugins/maximize/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'ru', {
diff --git a/plugins/maximize/lang/si.js b/plugins/maximize/lang/si.js
index 207acbda..bab6e765 100644
--- a/plugins/maximize/lang/si.js
+++ b/plugins/maximize/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'si', {
diff --git a/plugins/maximize/lang/sk.js b/plugins/maximize/lang/sk.js
index 9eaadf3a..bf73982b 100644
--- a/plugins/maximize/lang/sk.js
+++ b/plugins/maximize/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'sk', {
diff --git a/plugins/maximize/lang/sl.js b/plugins/maximize/lang/sl.js
index 1a43dc1b..c6726837 100644
--- a/plugins/maximize/lang/sl.js
+++ b/plugins/maximize/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'sl', {
diff --git a/plugins/maximize/lang/sq.js b/plugins/maximize/lang/sq.js
index fbb95ad7..3ba6bf8d 100644
--- a/plugins/maximize/lang/sq.js
+++ b/plugins/maximize/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'sq', {
diff --git a/plugins/maximize/lang/sr-latn.js b/plugins/maximize/lang/sr-latn.js
index e6dd6963..ef37dc72 100644
--- a/plugins/maximize/lang/sr-latn.js
+++ b/plugins/maximize/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'sr-latn', {
diff --git a/plugins/maximize/lang/sr.js b/plugins/maximize/lang/sr.js
index 3d311707..02e8f436 100644
--- a/plugins/maximize/lang/sr.js
+++ b/plugins/maximize/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'sr', {
diff --git a/plugins/maximize/lang/sv.js b/plugins/maximize/lang/sv.js
index 358215ed..d87ce3b2 100644
--- a/plugins/maximize/lang/sv.js
+++ b/plugins/maximize/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'sv', {
diff --git a/plugins/maximize/lang/th.js b/plugins/maximize/lang/th.js
index f8c03d79..d00131f1 100644
--- a/plugins/maximize/lang/th.js
+++ b/plugins/maximize/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'th', {
diff --git a/plugins/maximize/lang/tr.js b/plugins/maximize/lang/tr.js
index 58b72785..59103c89 100644
--- a/plugins/maximize/lang/tr.js
+++ b/plugins/maximize/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'tr', {
diff --git a/plugins/maximize/lang/tt.js b/plugins/maximize/lang/tt.js
index 7ece48bc..5b7e7aa5 100644
--- a/plugins/maximize/lang/tt.js
+++ b/plugins/maximize/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'tt', {
diff --git a/plugins/maximize/lang/ug.js b/plugins/maximize/lang/ug.js
index 7ffce6fa..3125cdb7 100644
--- a/plugins/maximize/lang/ug.js
+++ b/plugins/maximize/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'ug', {
diff --git a/plugins/maximize/lang/uk.js b/plugins/maximize/lang/uk.js
index 3c3bddc6..b7504aa6 100644
--- a/plugins/maximize/lang/uk.js
+++ b/plugins/maximize/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'uk', {
diff --git a/plugins/maximize/lang/vi.js b/plugins/maximize/lang/vi.js
index cb980619..38b54c06 100644
--- a/plugins/maximize/lang/vi.js
+++ b/plugins/maximize/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'vi', {
diff --git a/plugins/maximize/lang/zh-cn.js b/plugins/maximize/lang/zh-cn.js
index c0464f15..bc07c1ef 100644
--- a/plugins/maximize/lang/zh-cn.js
+++ b/plugins/maximize/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'zh-cn', {
diff --git a/plugins/maximize/lang/zh.js b/plugins/maximize/lang/zh.js
index 16220700..4b52f87d 100644
--- a/plugins/maximize/lang/zh.js
+++ b/plugins/maximize/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'maximize', 'zh', {
diff --git a/plugins/maximize/plugin.js b/plugins/maximize/plugin.js
index 467997db..a3625a1b 100644
--- a/plugins/maximize/plugin.js
+++ b/plugins/maximize/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -118,6 +118,14 @@
 				editor.resize( viewPaneSize.width, viewPaneSize.height, null, true );
 			}
 
+			function handleHistoryApi() {
+				var command = editor.getCommand( 'maximize' );
+
+				if ( command.state === CKEDITOR.TRISTATE_ON ) {
+					command.exec();
+				}
+			}
+
 			// Retain state after mode switches.
 			var savedState = CKEDITOR.TRISTATE_OFF;
 
@@ -295,12 +303,11 @@
 				var historyEvent = editor.config.maximize_historyIntegration === CKEDITOR.HISTORY_NATIVE ?
 					'popstate' : 'hashchange';
 
-				mainWindow.on( historyEvent, function() {
-					var command = editor.getCommand( 'maximize' );
+				mainWindow.on( historyEvent, handleHistoryApi );
 
-					if ( command.state === CKEDITOR.TRISTATE_ON ) {
-						command.exec();
-					}
+				// Remove the history listener when destroying an editor instance (#5396).
+				editor.on( 'destroy', function() {
+					mainWindow.removeListener( historyEvent, handleHistoryApi );
 				} );
 			}
 		}
diff --git a/plugins/mentions/plugin.js b/plugins/mentions/plugin.js
index 7ce229e5..e0882d1b 100644
--- a/plugins/mentions/plugin.js
+++ b/plugins/mentions/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -109,6 +109,14 @@
 		 */
 		this.cache = config.cache !== undefined ? config.cache : true;
 
+		/**
+		 * @inheritdoc CKEDITOR.plugins.autocomplete#followingSpace
+		 * @property {Boolean} [followingSpace]
+		 * @readonly
+		 * @since 4.20.0
+		 */
+		this.followingSpace = config.followingSpace;
+
 		/**
 		 * @inheritdoc CKEDITOR.plugins.mentions.configDefinition#throttle
 		 * @property {Number} [throttle=200]
@@ -128,7 +136,8 @@
 			itemTemplate: config.itemTemplate,
 			outputTemplate: config.outputTemplate,
 			throttle: this.throttle,
-			itemsLimit: config.itemsLimit
+			itemsLimit: config.itemsLimit,
+			followingSpace: this.followingSpace
 		} );
 	}
 
@@ -177,7 +186,7 @@
 			}
 
 			// Do not proceed if a query is a part of word.
-			var prevChar = text[ match.index - 1];
+			var prevChar = text[ match.index - 1 ];
 			if ( prevChar !== undefined && !prevChar.match( /\s+/ ) ) {
 				return null;
 			}
@@ -451,4 +460,9 @@
 	 * @inheritdoc CKEDITOR.plugins.autocomplete.configDefinition#itemsLimit
 	 * @property {Number} [itemsLimit]
 	 */
+
+	/**
+	 * @inheritdoc CKEDITOR.plugins.autocomplete#followingSpace
+	 * @property {Boolean} [followingSpace]
+	 */
 } )();
diff --git a/plugins/mentions/samples/mentions.html b/plugins/mentions/samples/mentions.html
index b91a9f51..a478fae3 100644
--- a/plugins/mentions/samples/mentions.html
+++ b/plugins/mentions/samples/mentions.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -67,7 +67,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor &ndash; The text editor for the Internet &ndash; <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p class="grid-width-100" id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </footer>
diff --git a/plugins/menu/plugin.js b/plugins/menu/plugin.js
index 0c696e20..7c39d8b8 100644
--- a/plugins/menu/plugin.js
+++ b/plugins/menu/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/menubutton/plugin.js b/plugins/menubutton/plugin.js
index fe4a4fac..57b0c546 100644
--- a/plugins/menubutton/plugin.js
+++ b/plugins/menubutton/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/newpage/lang/af.js b/plugins/newpage/lang/af.js
index da206c4c..29484193 100644
--- a/plugins/newpage/lang/af.js
+++ b/plugins/newpage/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'af', {
diff --git a/plugins/newpage/lang/ar.js b/plugins/newpage/lang/ar.js
index 312a496e..dffda9fb 100644
--- a/plugins/newpage/lang/ar.js
+++ b/plugins/newpage/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'ar', {
diff --git a/plugins/newpage/lang/az.js b/plugins/newpage/lang/az.js
index 8cc1ecd3..466dcf39 100644
--- a/plugins/newpage/lang/az.js
+++ b/plugins/newpage/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'az', {
diff --git a/plugins/newpage/lang/bg.js b/plugins/newpage/lang/bg.js
index 47178425..8cd2f5c2 100644
--- a/plugins/newpage/lang/bg.js
+++ b/plugins/newpage/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'bg', {
diff --git a/plugins/newpage/lang/bn.js b/plugins/newpage/lang/bn.js
index 69551a8d..e861774c 100644
--- a/plugins/newpage/lang/bn.js
+++ b/plugins/newpage/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'bn', {
diff --git a/plugins/newpage/lang/bs.js b/plugins/newpage/lang/bs.js
index 4d2dbc82..dfdff247 100644
--- a/plugins/newpage/lang/bs.js
+++ b/plugins/newpage/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'bs', {
diff --git a/plugins/newpage/lang/ca.js b/plugins/newpage/lang/ca.js
index 08242a41..46c8717e 100644
--- a/plugins/newpage/lang/ca.js
+++ b/plugins/newpage/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'ca', {
diff --git a/plugins/newpage/lang/cs.js b/plugins/newpage/lang/cs.js
index f2b6e030..33cbcd93 100644
--- a/plugins/newpage/lang/cs.js
+++ b/plugins/newpage/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'cs', {
diff --git a/plugins/newpage/lang/cy.js b/plugins/newpage/lang/cy.js
index fb138ee1..4273d869 100644
--- a/plugins/newpage/lang/cy.js
+++ b/plugins/newpage/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'cy', {
diff --git a/plugins/newpage/lang/da.js b/plugins/newpage/lang/da.js
index a2a479ad..6972272b 100644
--- a/plugins/newpage/lang/da.js
+++ b/plugins/newpage/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'da', {
diff --git a/plugins/newpage/lang/de-ch.js b/plugins/newpage/lang/de-ch.js
index f2fd62b4..834c8c8c 100644
--- a/plugins/newpage/lang/de-ch.js
+++ b/plugins/newpage/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'de-ch', {
diff --git a/plugins/newpage/lang/de.js b/plugins/newpage/lang/de.js
index 46930670..36615b14 100644
--- a/plugins/newpage/lang/de.js
+++ b/plugins/newpage/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'de', {
diff --git a/plugins/newpage/lang/el.js b/plugins/newpage/lang/el.js
index 5861c6a5..144fa06b 100644
--- a/plugins/newpage/lang/el.js
+++ b/plugins/newpage/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'el', {
diff --git a/plugins/newpage/lang/en-au.js b/plugins/newpage/lang/en-au.js
index 5c11c850..17d2cf04 100644
--- a/plugins/newpage/lang/en-au.js
+++ b/plugins/newpage/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'en-au', {
diff --git a/plugins/newpage/lang/en-ca.js b/plugins/newpage/lang/en-ca.js
index 7b52fec5..f444bd4f 100644
--- a/plugins/newpage/lang/en-ca.js
+++ b/plugins/newpage/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'en-ca', {
diff --git a/plugins/newpage/lang/en-gb.js b/plugins/newpage/lang/en-gb.js
index 26013b8c..38349de3 100644
--- a/plugins/newpage/lang/en-gb.js
+++ b/plugins/newpage/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'en-gb', {
diff --git a/plugins/newpage/lang/en.js b/plugins/newpage/lang/en.js
index 5b14d2be..7f99d957 100644
--- a/plugins/newpage/lang/en.js
+++ b/plugins/newpage/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'en', {
diff --git a/plugins/newpage/lang/eo.js b/plugins/newpage/lang/eo.js
index f8546de8..2e0e1eb2 100644
--- a/plugins/newpage/lang/eo.js
+++ b/plugins/newpage/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'eo', {
diff --git a/plugins/newpage/lang/es-mx.js b/plugins/newpage/lang/es-mx.js
index 3e0a4c53..6eb228a2 100644
--- a/plugins/newpage/lang/es-mx.js
+++ b/plugins/newpage/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'es-mx', {
diff --git a/plugins/newpage/lang/es.js b/plugins/newpage/lang/es.js
index 5af0d9dd..3db6750b 100644
--- a/plugins/newpage/lang/es.js
+++ b/plugins/newpage/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'es', {
diff --git a/plugins/newpage/lang/et.js b/plugins/newpage/lang/et.js
index 01341877..5c85ec07 100644
--- a/plugins/newpage/lang/et.js
+++ b/plugins/newpage/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'et', {
diff --git a/plugins/newpage/lang/eu.js b/plugins/newpage/lang/eu.js
index 78d03de0..3a3ca234 100644
--- a/plugins/newpage/lang/eu.js
+++ b/plugins/newpage/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'eu', {
diff --git a/plugins/newpage/lang/fa.js b/plugins/newpage/lang/fa.js
index e04e74de..2182c559 100644
--- a/plugins/newpage/lang/fa.js
+++ b/plugins/newpage/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'fa', {
diff --git a/plugins/newpage/lang/fi.js b/plugins/newpage/lang/fi.js
index ed5e65bc..8bcb44c0 100644
--- a/plugins/newpage/lang/fi.js
+++ b/plugins/newpage/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'fi', {
diff --git a/plugins/newpage/lang/fo.js b/plugins/newpage/lang/fo.js
index 98c1b17c..71485012 100644
--- a/plugins/newpage/lang/fo.js
+++ b/plugins/newpage/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'fo', {
diff --git a/plugins/newpage/lang/fr-ca.js b/plugins/newpage/lang/fr-ca.js
index cde86c36..e6343fca 100644
--- a/plugins/newpage/lang/fr-ca.js
+++ b/plugins/newpage/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'fr-ca', {
diff --git a/plugins/newpage/lang/fr.js b/plugins/newpage/lang/fr.js
index dd22ff32..552b1b9f 100644
--- a/plugins/newpage/lang/fr.js
+++ b/plugins/newpage/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'fr', {
diff --git a/plugins/newpage/lang/gl.js b/plugins/newpage/lang/gl.js
index 3e48939c..0e6b68ea 100644
--- a/plugins/newpage/lang/gl.js
+++ b/plugins/newpage/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'gl', {
diff --git a/plugins/newpage/lang/gu.js b/plugins/newpage/lang/gu.js
index 591fbe2e..2b1b8230 100644
--- a/plugins/newpage/lang/gu.js
+++ b/plugins/newpage/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'gu', {
diff --git a/plugins/newpage/lang/he.js b/plugins/newpage/lang/he.js
index 5baf1903..84eb6711 100644
--- a/plugins/newpage/lang/he.js
+++ b/plugins/newpage/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'he', {
diff --git a/plugins/newpage/lang/hi.js b/plugins/newpage/lang/hi.js
index 8da57a3b..cc0642ca 100644
--- a/plugins/newpage/lang/hi.js
+++ b/plugins/newpage/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'hi', {
diff --git a/plugins/newpage/lang/hr.js b/plugins/newpage/lang/hr.js
index 9be35bb0..0477c15b 100644
--- a/plugins/newpage/lang/hr.js
+++ b/plugins/newpage/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'hr', {
diff --git a/plugins/newpage/lang/hu.js b/plugins/newpage/lang/hu.js
index cff3a0cc..c64493b1 100644
--- a/plugins/newpage/lang/hu.js
+++ b/plugins/newpage/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'hu', {
diff --git a/plugins/newpage/lang/id.js b/plugins/newpage/lang/id.js
index eb7950ad..a7e3f715 100644
--- a/plugins/newpage/lang/id.js
+++ b/plugins/newpage/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'id', {
diff --git a/plugins/newpage/lang/is.js b/plugins/newpage/lang/is.js
index 0eb9d3c8..fa3dbda2 100644
--- a/plugins/newpage/lang/is.js
+++ b/plugins/newpage/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'is', {
diff --git a/plugins/newpage/lang/it.js b/plugins/newpage/lang/it.js
index a4e60953..e7f0fa68 100644
--- a/plugins/newpage/lang/it.js
+++ b/plugins/newpage/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'it', {
diff --git a/plugins/newpage/lang/ja.js b/plugins/newpage/lang/ja.js
index c081a786..e8de4194 100644
--- a/plugins/newpage/lang/ja.js
+++ b/plugins/newpage/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'ja', {
diff --git a/plugins/newpage/lang/ka.js b/plugins/newpage/lang/ka.js
index f75e0dd9..df859fd0 100644
--- a/plugins/newpage/lang/ka.js
+++ b/plugins/newpage/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'ka', {
diff --git a/plugins/newpage/lang/km.js b/plugins/newpage/lang/km.js
index 4f4f0d7b..cecadfe5 100644
--- a/plugins/newpage/lang/km.js
+++ b/plugins/newpage/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'km', {
diff --git a/plugins/newpage/lang/ko.js b/plugins/newpage/lang/ko.js
index 1042caa2..2bc5e8cf 100644
--- a/plugins/newpage/lang/ko.js
+++ b/plugins/newpage/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'ko', {
diff --git a/plugins/newpage/lang/ku.js b/plugins/newpage/lang/ku.js
index bcfd9103..e9df573c 100644
--- a/plugins/newpage/lang/ku.js
+++ b/plugins/newpage/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'ku', {
diff --git a/plugins/newpage/lang/lt.js b/plugins/newpage/lang/lt.js
index 188038cb..0bb49199 100644
--- a/plugins/newpage/lang/lt.js
+++ b/plugins/newpage/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'lt', {
diff --git a/plugins/newpage/lang/lv.js b/plugins/newpage/lang/lv.js
index fae59937..cd842cd6 100644
--- a/plugins/newpage/lang/lv.js
+++ b/plugins/newpage/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'lv', {
diff --git a/plugins/newpage/lang/mk.js b/plugins/newpage/lang/mk.js
index 2d019fbd..89b8fa1a 100644
--- a/plugins/newpage/lang/mk.js
+++ b/plugins/newpage/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'mk', {
diff --git a/plugins/newpage/lang/mn.js b/plugins/newpage/lang/mn.js
index 4a687f3f..14196ea6 100644
--- a/plugins/newpage/lang/mn.js
+++ b/plugins/newpage/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'mn', {
diff --git a/plugins/newpage/lang/ms.js b/plugins/newpage/lang/ms.js
index 6ad9534c..a5e25071 100644
--- a/plugins/newpage/lang/ms.js
+++ b/plugins/newpage/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'ms', {
diff --git a/plugins/newpage/lang/nb.js b/plugins/newpage/lang/nb.js
index cb6907dd..14fcb8bb 100644
--- a/plugins/newpage/lang/nb.js
+++ b/plugins/newpage/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'nb', {
diff --git a/plugins/newpage/lang/nl.js b/plugins/newpage/lang/nl.js
index 6e513a43..699f9f6f 100644
--- a/plugins/newpage/lang/nl.js
+++ b/plugins/newpage/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'nl', {
diff --git a/plugins/newpage/lang/no.js b/plugins/newpage/lang/no.js
index b936211a..7a6a17bb 100644
--- a/plugins/newpage/lang/no.js
+++ b/plugins/newpage/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'no', {
diff --git a/plugins/newpage/lang/oc.js b/plugins/newpage/lang/oc.js
index e05aebd3..5b2d996b 100644
--- a/plugins/newpage/lang/oc.js
+++ b/plugins/newpage/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'oc', {
diff --git a/plugins/newpage/lang/pl.js b/plugins/newpage/lang/pl.js
index 066658d1..3b8998a4 100644
--- a/plugins/newpage/lang/pl.js
+++ b/plugins/newpage/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'pl', {
diff --git a/plugins/newpage/lang/pt-br.js b/plugins/newpage/lang/pt-br.js
index aa5ad91b..e8638dff 100644
--- a/plugins/newpage/lang/pt-br.js
+++ b/plugins/newpage/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'pt-br', {
diff --git a/plugins/newpage/lang/pt.js b/plugins/newpage/lang/pt.js
index 453a688d..0f836e7b 100644
--- a/plugins/newpage/lang/pt.js
+++ b/plugins/newpage/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'pt', {
diff --git a/plugins/newpage/lang/ro.js b/plugins/newpage/lang/ro.js
index df8c2378..c13352f0 100644
--- a/plugins/newpage/lang/ro.js
+++ b/plugins/newpage/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'ro', {
diff --git a/plugins/newpage/lang/ru.js b/plugins/newpage/lang/ru.js
index a5e01ab6..813929d1 100644
--- a/plugins/newpage/lang/ru.js
+++ b/plugins/newpage/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'ru', {
diff --git a/plugins/newpage/lang/si.js b/plugins/newpage/lang/si.js
index 7c6b2b1c..7e6a8494 100644
--- a/plugins/newpage/lang/si.js
+++ b/plugins/newpage/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'si', {
diff --git a/plugins/newpage/lang/sk.js b/plugins/newpage/lang/sk.js
index 9af3712c..f68da045 100644
--- a/plugins/newpage/lang/sk.js
+++ b/plugins/newpage/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'sk', {
diff --git a/plugins/newpage/lang/sl.js b/plugins/newpage/lang/sl.js
index 59b0c7aa..18103e7d 100644
--- a/plugins/newpage/lang/sl.js
+++ b/plugins/newpage/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'sl', {
diff --git a/plugins/newpage/lang/sq.js b/plugins/newpage/lang/sq.js
index 6ca0dce1..576fafc5 100644
--- a/plugins/newpage/lang/sq.js
+++ b/plugins/newpage/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'sq', {
diff --git a/plugins/newpage/lang/sr-latn.js b/plugins/newpage/lang/sr-latn.js
index 0aa04025..97b94aab 100644
--- a/plugins/newpage/lang/sr-latn.js
+++ b/plugins/newpage/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'sr-latn', {
diff --git a/plugins/newpage/lang/sr.js b/plugins/newpage/lang/sr.js
index 83341a4f..d77832ab 100644
--- a/plugins/newpage/lang/sr.js
+++ b/plugins/newpage/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'sr', {
diff --git a/plugins/newpage/lang/sv.js b/plugins/newpage/lang/sv.js
index a843cba5..1aed4879 100644
--- a/plugins/newpage/lang/sv.js
+++ b/plugins/newpage/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'sv', {
diff --git a/plugins/newpage/lang/th.js b/plugins/newpage/lang/th.js
index c6ef4364..67ddefc6 100644
--- a/plugins/newpage/lang/th.js
+++ b/plugins/newpage/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'th', {
diff --git a/plugins/newpage/lang/tr.js b/plugins/newpage/lang/tr.js
index e7c50901..f74eb4fc 100644
--- a/plugins/newpage/lang/tr.js
+++ b/plugins/newpage/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'tr', {
diff --git a/plugins/newpage/lang/tt.js b/plugins/newpage/lang/tt.js
index fa36f513..273753af 100644
--- a/plugins/newpage/lang/tt.js
+++ b/plugins/newpage/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'tt', {
diff --git a/plugins/newpage/lang/ug.js b/plugins/newpage/lang/ug.js
index f7a35a25..3c2102fd 100644
--- a/plugins/newpage/lang/ug.js
+++ b/plugins/newpage/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'ug', {
diff --git a/plugins/newpage/lang/uk.js b/plugins/newpage/lang/uk.js
index 9b055899..320d658c 100644
--- a/plugins/newpage/lang/uk.js
+++ b/plugins/newpage/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'uk', {
diff --git a/plugins/newpage/lang/vi.js b/plugins/newpage/lang/vi.js
index 2df6d921..a0082cd6 100644
--- a/plugins/newpage/lang/vi.js
+++ b/plugins/newpage/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'vi', {
diff --git a/plugins/newpage/lang/zh-cn.js b/plugins/newpage/lang/zh-cn.js
index 9ca3ebba..1575eb9e 100644
--- a/plugins/newpage/lang/zh-cn.js
+++ b/plugins/newpage/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'zh-cn', {
diff --git a/plugins/newpage/lang/zh.js b/plugins/newpage/lang/zh.js
index 5f90a2d5..a452ea5f 100644
--- a/plugins/newpage/lang/zh.js
+++ b/plugins/newpage/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'newpage', 'zh', {
diff --git a/plugins/newpage/plugin.js b/plugins/newpage/plugin.js
index 0a6e5958..0f03ee86 100644
--- a/plugins/newpage/plugin.js
+++ b/plugins/newpage/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/notification/lang/az.js b/plugins/notification/lang/az.js
index c8487107..19a8c1fd 100644
--- a/plugins/notification/lang/az.js
+++ b/plugins/notification/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'az', {
diff --git a/plugins/notification/lang/bg.js b/plugins/notification/lang/bg.js
index 222b3fee..df24a079 100644
--- a/plugins/notification/lang/bg.js
+++ b/plugins/notification/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'bg', {
diff --git a/plugins/notification/lang/ca.js b/plugins/notification/lang/ca.js
index 4659c03b..abdb2f86 100644
--- a/plugins/notification/lang/ca.js
+++ b/plugins/notification/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'ca', {
diff --git a/plugins/notification/lang/cs.js b/plugins/notification/lang/cs.js
index c164b382..afed8f49 100644
--- a/plugins/notification/lang/cs.js
+++ b/plugins/notification/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'cs', {
diff --git a/plugins/notification/lang/da.js b/plugins/notification/lang/da.js
index 268b0e75..f5049040 100644
--- a/plugins/notification/lang/da.js
+++ b/plugins/notification/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'da', {
diff --git a/plugins/notification/lang/de-ch.js b/plugins/notification/lang/de-ch.js
index 16321273..7cd8ca25 100644
--- a/plugins/notification/lang/de-ch.js
+++ b/plugins/notification/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'de-ch', {
diff --git a/plugins/notification/lang/de.js b/plugins/notification/lang/de.js
index ee84f98d..e8b4998c 100644
--- a/plugins/notification/lang/de.js
+++ b/plugins/notification/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'de', {
diff --git a/plugins/notification/lang/el.js b/plugins/notification/lang/el.js
index e695ad52..94ef98cd 100644
--- a/plugins/notification/lang/el.js
+++ b/plugins/notification/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'el', {
diff --git a/plugins/notification/lang/en-au.js b/plugins/notification/lang/en-au.js
index 5e9db0f9..368286fa 100644
--- a/plugins/notification/lang/en-au.js
+++ b/plugins/notification/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'en-au', {
diff --git a/plugins/notification/lang/en.js b/plugins/notification/lang/en.js
index 3fb46a98..f88176b9 100644
--- a/plugins/notification/lang/en.js
+++ b/plugins/notification/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'en', {
diff --git a/plugins/notification/lang/eo.js b/plugins/notification/lang/eo.js
index 77411e4a..84d6a993 100644
--- a/plugins/notification/lang/eo.js
+++ b/plugins/notification/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'eo', {
diff --git a/plugins/notification/lang/es-mx.js b/plugins/notification/lang/es-mx.js
index 46668fc1..cad51c1e 100644
--- a/plugins/notification/lang/es-mx.js
+++ b/plugins/notification/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'es-mx', {
diff --git a/plugins/notification/lang/es.js b/plugins/notification/lang/es.js
index 0af5ecab..33bc53ba 100644
--- a/plugins/notification/lang/es.js
+++ b/plugins/notification/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'es', {
diff --git a/plugins/notification/lang/et.js b/plugins/notification/lang/et.js
index 4875748f..161331ba 100644
--- a/plugins/notification/lang/et.js
+++ b/plugins/notification/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'et', {
diff --git a/plugins/notification/lang/eu.js b/plugins/notification/lang/eu.js
index 31e4b3ae..0cbd836e 100644
--- a/plugins/notification/lang/eu.js
+++ b/plugins/notification/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'eu', {
diff --git a/plugins/notification/lang/fa.js b/plugins/notification/lang/fa.js
index a1fdae6c..241bbfab 100644
--- a/plugins/notification/lang/fa.js
+++ b/plugins/notification/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'fa', {
diff --git a/plugins/notification/lang/fr.js b/plugins/notification/lang/fr.js
index 02185ee2..d24dc5b4 100644
--- a/plugins/notification/lang/fr.js
+++ b/plugins/notification/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'fr', {
diff --git a/plugins/notification/lang/gl.js b/plugins/notification/lang/gl.js
index 505fefaa..444b4422 100644
--- a/plugins/notification/lang/gl.js
+++ b/plugins/notification/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'gl', {
diff --git a/plugins/notification/lang/hr.js b/plugins/notification/lang/hr.js
index 58f14cc0..ac9c7ab1 100644
--- a/plugins/notification/lang/hr.js
+++ b/plugins/notification/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'hr', {
diff --git a/plugins/notification/lang/hu.js b/plugins/notification/lang/hu.js
index a90b2473..5ab2b788 100644
--- a/plugins/notification/lang/hu.js
+++ b/plugins/notification/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'hu', {
diff --git a/plugins/notification/lang/id.js b/plugins/notification/lang/id.js
index 312fd169..8bb1d1af 100644
--- a/plugins/notification/lang/id.js
+++ b/plugins/notification/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'id', {
diff --git a/plugins/notification/lang/it.js b/plugins/notification/lang/it.js
index 88f8ab72..1cbc74f4 100644
--- a/plugins/notification/lang/it.js
+++ b/plugins/notification/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'it', {
diff --git a/plugins/notification/lang/ja.js b/plugins/notification/lang/ja.js
index 506b9d20..f075737f 100644
--- a/plugins/notification/lang/ja.js
+++ b/plugins/notification/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'ja', {
diff --git a/plugins/notification/lang/km.js b/plugins/notification/lang/km.js
index c7508a89..bd4cf4d0 100644
--- a/plugins/notification/lang/km.js
+++ b/plugins/notification/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'km', {
diff --git a/plugins/notification/lang/ko.js b/plugins/notification/lang/ko.js
index 86ea11f3..98c628c1 100644
--- a/plugins/notification/lang/ko.js
+++ b/plugins/notification/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'ko', {
diff --git a/plugins/notification/lang/ku.js b/plugins/notification/lang/ku.js
index 25f4377c..294708b6 100644
--- a/plugins/notification/lang/ku.js
+++ b/plugins/notification/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'ku', {
diff --git a/plugins/notification/lang/lt.js b/plugins/notification/lang/lt.js
index 8b4a01b6..8f4edc38 100644
--- a/plugins/notification/lang/lt.js
+++ b/plugins/notification/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'lt', {
diff --git a/plugins/notification/lang/lv.js b/plugins/notification/lang/lv.js
index 4bdcb0b6..8b103507 100644
--- a/plugins/notification/lang/lv.js
+++ b/plugins/notification/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'lv', {
diff --git a/plugins/notification/lang/nb.js b/plugins/notification/lang/nb.js
index 7c975590..6b2248d4 100644
--- a/plugins/notification/lang/nb.js
+++ b/plugins/notification/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'nb', {
diff --git a/plugins/notification/lang/nl.js b/plugins/notification/lang/nl.js
index 3786f2bd..9e013c1c 100644
--- a/plugins/notification/lang/nl.js
+++ b/plugins/notification/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'nl', {
diff --git a/plugins/notification/lang/oc.js b/plugins/notification/lang/oc.js
index 2225e1eb..77cf67f5 100644
--- a/plugins/notification/lang/oc.js
+++ b/plugins/notification/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'oc', {
diff --git a/plugins/notification/lang/pl.js b/plugins/notification/lang/pl.js
index 3d130e27..9264e976 100644
--- a/plugins/notification/lang/pl.js
+++ b/plugins/notification/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'pl', {
diff --git a/plugins/notification/lang/pt-br.js b/plugins/notification/lang/pt-br.js
index 0700175f..94e910b1 100644
--- a/plugins/notification/lang/pt-br.js
+++ b/plugins/notification/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'pt-br', {
diff --git a/plugins/notification/lang/pt.js b/plugins/notification/lang/pt.js
index 9778b77a..63c83bf8 100644
--- a/plugins/notification/lang/pt.js
+++ b/plugins/notification/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'pt', {
diff --git a/plugins/notification/lang/ro.js b/plugins/notification/lang/ro.js
index 7e988f3b..7bb7cb0b 100644
--- a/plugins/notification/lang/ro.js
+++ b/plugins/notification/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'ro', {
diff --git a/plugins/notification/lang/ru.js b/plugins/notification/lang/ru.js
index 88c30d54..81f2c84e 100644
--- a/plugins/notification/lang/ru.js
+++ b/plugins/notification/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'ru', {
diff --git a/plugins/notification/lang/sk.js b/plugins/notification/lang/sk.js
index a1ab773f..d30df7e2 100644
--- a/plugins/notification/lang/sk.js
+++ b/plugins/notification/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'sk', {
diff --git a/plugins/notification/lang/sq.js b/plugins/notification/lang/sq.js
index efc761aa..b81ab5c0 100644
--- a/plugins/notification/lang/sq.js
+++ b/plugins/notification/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'sq', {
diff --git a/plugins/notification/lang/sr-latn.js b/plugins/notification/lang/sr-latn.js
index 50f71f97..8bc6a753 100644
--- a/plugins/notification/lang/sr-latn.js
+++ b/plugins/notification/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'sr-latn', {
diff --git a/plugins/notification/lang/sr.js b/plugins/notification/lang/sr.js
index ea52ef55..6483a7ce 100644
--- a/plugins/notification/lang/sr.js
+++ b/plugins/notification/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'sr', {
diff --git a/plugins/notification/lang/sv.js b/plugins/notification/lang/sv.js
index 08e644d1..48c542f8 100644
--- a/plugins/notification/lang/sv.js
+++ b/plugins/notification/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'sv', {
diff --git a/plugins/notification/lang/tr.js b/plugins/notification/lang/tr.js
index a1108657..8d302622 100644
--- a/plugins/notification/lang/tr.js
+++ b/plugins/notification/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'tr', {
diff --git a/plugins/notification/lang/ug.js b/plugins/notification/lang/ug.js
index 654fcdf2..458a70c6 100644
--- a/plugins/notification/lang/ug.js
+++ b/plugins/notification/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'ug', {
diff --git a/plugins/notification/lang/uk.js b/plugins/notification/lang/uk.js
index 785d4968..0d396505 100644
--- a/plugins/notification/lang/uk.js
+++ b/plugins/notification/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'uk', {
diff --git a/plugins/notification/lang/zh-cn.js b/plugins/notification/lang/zh-cn.js
index 46ebddb8..60453622 100644
--- a/plugins/notification/lang/zh-cn.js
+++ b/plugins/notification/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'zh-cn', {
diff --git a/plugins/notification/lang/zh.js b/plugins/notification/lang/zh.js
index 9bfe856c..5c9ee060 100644
--- a/plugins/notification/lang/zh.js
+++ b/plugins/notification/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'notification', 'zh', {
diff --git a/plugins/notification/plugin.js b/plugins/notification/plugin.js
index 890a1761..4bfa8bdf 100644
--- a/plugins/notification/plugin.js
+++ b/plugins/notification/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/notificationaggregator/plugin.js b/plugins/notificationaggregator/plugin.js
index d413b21b..9cf2afe6 100644
--- a/plugins/notificationaggregator/plugin.js
+++ b/plugins/notificationaggregator/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/pagebreak/lang/af.js b/plugins/pagebreak/lang/af.js
index e45c9a17..68b598d1 100644
--- a/plugins/pagebreak/lang/af.js
+++ b/plugins/pagebreak/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'af', {
diff --git a/plugins/pagebreak/lang/ar.js b/plugins/pagebreak/lang/ar.js
index c71818e5..d9631047 100644
--- a/plugins/pagebreak/lang/ar.js
+++ b/plugins/pagebreak/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'ar', {
diff --git a/plugins/pagebreak/lang/az.js b/plugins/pagebreak/lang/az.js
index 60fa121b..29a7af2c 100644
--- a/plugins/pagebreak/lang/az.js
+++ b/plugins/pagebreak/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'az', {
diff --git a/plugins/pagebreak/lang/bg.js b/plugins/pagebreak/lang/bg.js
index 04d2f0d1..fc02ae51 100644
--- a/plugins/pagebreak/lang/bg.js
+++ b/plugins/pagebreak/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'bg', {
diff --git a/plugins/pagebreak/lang/bn.js b/plugins/pagebreak/lang/bn.js
index 9b580815..389c2de1 100644
--- a/plugins/pagebreak/lang/bn.js
+++ b/plugins/pagebreak/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'bn', {
diff --git a/plugins/pagebreak/lang/bs.js b/plugins/pagebreak/lang/bs.js
index 949418b5..5a47f32e 100644
--- a/plugins/pagebreak/lang/bs.js
+++ b/plugins/pagebreak/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'bs', {
diff --git a/plugins/pagebreak/lang/ca.js b/plugins/pagebreak/lang/ca.js
index fe5e578e..0431df83 100644
--- a/plugins/pagebreak/lang/ca.js
+++ b/plugins/pagebreak/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'ca', {
diff --git a/plugins/pagebreak/lang/cs.js b/plugins/pagebreak/lang/cs.js
index ec6ceee8..c818b31f 100644
--- a/plugins/pagebreak/lang/cs.js
+++ b/plugins/pagebreak/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'cs', {
diff --git a/plugins/pagebreak/lang/cy.js b/plugins/pagebreak/lang/cy.js
index 66f14b58..36556cf2 100644
--- a/plugins/pagebreak/lang/cy.js
+++ b/plugins/pagebreak/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'cy', {
diff --git a/plugins/pagebreak/lang/da.js b/plugins/pagebreak/lang/da.js
index ae4358a9..faf7a5fd 100644
--- a/plugins/pagebreak/lang/da.js
+++ b/plugins/pagebreak/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'da', {
diff --git a/plugins/pagebreak/lang/de-ch.js b/plugins/pagebreak/lang/de-ch.js
index 7bc2d89b..dace0490 100644
--- a/plugins/pagebreak/lang/de-ch.js
+++ b/plugins/pagebreak/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'de-ch', {
diff --git a/plugins/pagebreak/lang/de.js b/plugins/pagebreak/lang/de.js
index 2a36d0c5..4aac047d 100644
--- a/plugins/pagebreak/lang/de.js
+++ b/plugins/pagebreak/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'de', {
diff --git a/plugins/pagebreak/lang/el.js b/plugins/pagebreak/lang/el.js
index 6bc020ca..de8f48a3 100644
--- a/plugins/pagebreak/lang/el.js
+++ b/plugins/pagebreak/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'el', {
diff --git a/plugins/pagebreak/lang/en-au.js b/plugins/pagebreak/lang/en-au.js
index 5104599d..bbde81c1 100644
--- a/plugins/pagebreak/lang/en-au.js
+++ b/plugins/pagebreak/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'en-au', {
diff --git a/plugins/pagebreak/lang/en-ca.js b/plugins/pagebreak/lang/en-ca.js
index 68909ad0..9b3fb88c 100644
--- a/plugins/pagebreak/lang/en-ca.js
+++ b/plugins/pagebreak/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'en-ca', {
diff --git a/plugins/pagebreak/lang/en-gb.js b/plugins/pagebreak/lang/en-gb.js
index 028e2511..6fd0ebe5 100644
--- a/plugins/pagebreak/lang/en-gb.js
+++ b/plugins/pagebreak/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'en-gb', {
diff --git a/plugins/pagebreak/lang/en.js b/plugins/pagebreak/lang/en.js
index 612331cd..9f4bf909 100644
--- a/plugins/pagebreak/lang/en.js
+++ b/plugins/pagebreak/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'en', {
diff --git a/plugins/pagebreak/lang/eo.js b/plugins/pagebreak/lang/eo.js
index 2494672b..4fe99ba5 100644
--- a/plugins/pagebreak/lang/eo.js
+++ b/plugins/pagebreak/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'eo', {
diff --git a/plugins/pagebreak/lang/es-mx.js b/plugins/pagebreak/lang/es-mx.js
index 06da4f9a..2a589035 100644
--- a/plugins/pagebreak/lang/es-mx.js
+++ b/plugins/pagebreak/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'es-mx', {
diff --git a/plugins/pagebreak/lang/es.js b/plugins/pagebreak/lang/es.js
index cd69bf76..7f419631 100644
--- a/plugins/pagebreak/lang/es.js
+++ b/plugins/pagebreak/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'es', {
diff --git a/plugins/pagebreak/lang/et.js b/plugins/pagebreak/lang/et.js
index 0a0ec075..cd59be15 100644
--- a/plugins/pagebreak/lang/et.js
+++ b/plugins/pagebreak/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'et', {
diff --git a/plugins/pagebreak/lang/eu.js b/plugins/pagebreak/lang/eu.js
index 096e60bb..499572d2 100644
--- a/plugins/pagebreak/lang/eu.js
+++ b/plugins/pagebreak/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'eu', {
diff --git a/plugins/pagebreak/lang/fa.js b/plugins/pagebreak/lang/fa.js
index 6e554b16..1326aa97 100644
--- a/plugins/pagebreak/lang/fa.js
+++ b/plugins/pagebreak/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'fa', {
diff --git a/plugins/pagebreak/lang/fi.js b/plugins/pagebreak/lang/fi.js
index 24af36ed..cf91bf91 100644
--- a/plugins/pagebreak/lang/fi.js
+++ b/plugins/pagebreak/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'fi', {
diff --git a/plugins/pagebreak/lang/fo.js b/plugins/pagebreak/lang/fo.js
index e3237be7..b23451b0 100644
--- a/plugins/pagebreak/lang/fo.js
+++ b/plugins/pagebreak/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'fo', {
diff --git a/plugins/pagebreak/lang/fr-ca.js b/plugins/pagebreak/lang/fr-ca.js
index 0680a6af..9eb4d9f1 100644
--- a/plugins/pagebreak/lang/fr-ca.js
+++ b/plugins/pagebreak/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'fr-ca', {
diff --git a/plugins/pagebreak/lang/fr.js b/plugins/pagebreak/lang/fr.js
index 41302585..3ac22c6c 100644
--- a/plugins/pagebreak/lang/fr.js
+++ b/plugins/pagebreak/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'fr', {
diff --git a/plugins/pagebreak/lang/gl.js b/plugins/pagebreak/lang/gl.js
index 5db8d8a7..c14f2575 100644
--- a/plugins/pagebreak/lang/gl.js
+++ b/plugins/pagebreak/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'gl', {
diff --git a/plugins/pagebreak/lang/gu.js b/plugins/pagebreak/lang/gu.js
index 234a40b6..0440e107 100644
--- a/plugins/pagebreak/lang/gu.js
+++ b/plugins/pagebreak/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'gu', {
diff --git a/plugins/pagebreak/lang/he.js b/plugins/pagebreak/lang/he.js
index c470c04c..82eeb63c 100644
--- a/plugins/pagebreak/lang/he.js
+++ b/plugins/pagebreak/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'he', {
diff --git a/plugins/pagebreak/lang/hi.js b/plugins/pagebreak/lang/hi.js
index 4dcda1f3..fe07eee4 100644
--- a/plugins/pagebreak/lang/hi.js
+++ b/plugins/pagebreak/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'hi', {
diff --git a/plugins/pagebreak/lang/hr.js b/plugins/pagebreak/lang/hr.js
index ad878c3f..5c0cd8d2 100644
--- a/plugins/pagebreak/lang/hr.js
+++ b/plugins/pagebreak/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'hr', {
diff --git a/plugins/pagebreak/lang/hu.js b/plugins/pagebreak/lang/hu.js
index 0d602484..22da9d25 100644
--- a/plugins/pagebreak/lang/hu.js
+++ b/plugins/pagebreak/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'hu', {
diff --git a/plugins/pagebreak/lang/id.js b/plugins/pagebreak/lang/id.js
index dde79b9b..254e4022 100644
--- a/plugins/pagebreak/lang/id.js
+++ b/plugins/pagebreak/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'id', {
diff --git a/plugins/pagebreak/lang/is.js b/plugins/pagebreak/lang/is.js
index e6e308d5..654dcd23 100644
--- a/plugins/pagebreak/lang/is.js
+++ b/plugins/pagebreak/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'is', {
diff --git a/plugins/pagebreak/lang/it.js b/plugins/pagebreak/lang/it.js
index 6d980023..d5610eed 100644
--- a/plugins/pagebreak/lang/it.js
+++ b/plugins/pagebreak/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'it', {
diff --git a/plugins/pagebreak/lang/ja.js b/plugins/pagebreak/lang/ja.js
index 4571b1be..1b610843 100644
--- a/plugins/pagebreak/lang/ja.js
+++ b/plugins/pagebreak/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'ja', {
diff --git a/plugins/pagebreak/lang/ka.js b/plugins/pagebreak/lang/ka.js
index f899a235..e4c8c1bd 100644
--- a/plugins/pagebreak/lang/ka.js
+++ b/plugins/pagebreak/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'ka', {
diff --git a/plugins/pagebreak/lang/km.js b/plugins/pagebreak/lang/km.js
index 5119dbcf..6ca2816f 100644
--- a/plugins/pagebreak/lang/km.js
+++ b/plugins/pagebreak/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'km', {
diff --git a/plugins/pagebreak/lang/ko.js b/plugins/pagebreak/lang/ko.js
index fc3d990e..bfbbecf5 100644
--- a/plugins/pagebreak/lang/ko.js
+++ b/plugins/pagebreak/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'ko', {
diff --git a/plugins/pagebreak/lang/ku.js b/plugins/pagebreak/lang/ku.js
index e9bf31be..433e5d95 100644
--- a/plugins/pagebreak/lang/ku.js
+++ b/plugins/pagebreak/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'ku', {
diff --git a/plugins/pagebreak/lang/lt.js b/plugins/pagebreak/lang/lt.js
index c9a793ff..63779269 100644
--- a/plugins/pagebreak/lang/lt.js
+++ b/plugins/pagebreak/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'lt', {
diff --git a/plugins/pagebreak/lang/lv.js b/plugins/pagebreak/lang/lv.js
index f50e9df0..0d701539 100644
--- a/plugins/pagebreak/lang/lv.js
+++ b/plugins/pagebreak/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'lv', {
diff --git a/plugins/pagebreak/lang/mk.js b/plugins/pagebreak/lang/mk.js
index 5bacfcbf..3c219592 100644
--- a/plugins/pagebreak/lang/mk.js
+++ b/plugins/pagebreak/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'mk', {
diff --git a/plugins/pagebreak/lang/mn.js b/plugins/pagebreak/lang/mn.js
index ea6faeeb..9bfadcc9 100644
--- a/plugins/pagebreak/lang/mn.js
+++ b/plugins/pagebreak/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'mn', {
diff --git a/plugins/pagebreak/lang/ms.js b/plugins/pagebreak/lang/ms.js
index fad3e2d7..97d604e5 100644
--- a/plugins/pagebreak/lang/ms.js
+++ b/plugins/pagebreak/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'ms', {
diff --git a/plugins/pagebreak/lang/nb.js b/plugins/pagebreak/lang/nb.js
index 40b2cffa..198cb567 100644
--- a/plugins/pagebreak/lang/nb.js
+++ b/plugins/pagebreak/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'nb', {
diff --git a/plugins/pagebreak/lang/nl.js b/plugins/pagebreak/lang/nl.js
index 2f0a9144..1b712672 100644
--- a/plugins/pagebreak/lang/nl.js
+++ b/plugins/pagebreak/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'nl', {
diff --git a/plugins/pagebreak/lang/no.js b/plugins/pagebreak/lang/no.js
index 854180d6..f1e10d36 100644
--- a/plugins/pagebreak/lang/no.js
+++ b/plugins/pagebreak/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'no', {
diff --git a/plugins/pagebreak/lang/oc.js b/plugins/pagebreak/lang/oc.js
index e617f50c..218263c0 100644
--- a/plugins/pagebreak/lang/oc.js
+++ b/plugins/pagebreak/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'oc', {
diff --git a/plugins/pagebreak/lang/pl.js b/plugins/pagebreak/lang/pl.js
index f398521f..d18206e9 100644
--- a/plugins/pagebreak/lang/pl.js
+++ b/plugins/pagebreak/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'pl', {
diff --git a/plugins/pagebreak/lang/pt-br.js b/plugins/pagebreak/lang/pt-br.js
index 76d175a6..c14619c1 100644
--- a/plugins/pagebreak/lang/pt-br.js
+++ b/plugins/pagebreak/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'pt-br', {
diff --git a/plugins/pagebreak/lang/pt.js b/plugins/pagebreak/lang/pt.js
index 393a1cd2..07704eec 100644
--- a/plugins/pagebreak/lang/pt.js
+++ b/plugins/pagebreak/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'pt', {
diff --git a/plugins/pagebreak/lang/ro.js b/plugins/pagebreak/lang/ro.js
index 8a7499f6..93bda1c7 100644
--- a/plugins/pagebreak/lang/ro.js
+++ b/plugins/pagebreak/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'ro', {
diff --git a/plugins/pagebreak/lang/ru.js b/plugins/pagebreak/lang/ru.js
index 8149329e..b9c97413 100644
--- a/plugins/pagebreak/lang/ru.js
+++ b/plugins/pagebreak/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'ru', {
diff --git a/plugins/pagebreak/lang/si.js b/plugins/pagebreak/lang/si.js
index 81ed193f..6f89e4ba 100644
--- a/plugins/pagebreak/lang/si.js
+++ b/plugins/pagebreak/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'si', {
diff --git a/plugins/pagebreak/lang/sk.js b/plugins/pagebreak/lang/sk.js
index 38e2ee71..819db0c6 100644
--- a/plugins/pagebreak/lang/sk.js
+++ b/plugins/pagebreak/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'sk', {
diff --git a/plugins/pagebreak/lang/sl.js b/plugins/pagebreak/lang/sl.js
index 1cfb583c..c48a519b 100644
--- a/plugins/pagebreak/lang/sl.js
+++ b/plugins/pagebreak/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'sl', {
diff --git a/plugins/pagebreak/lang/sq.js b/plugins/pagebreak/lang/sq.js
index be2ca246..42757e6a 100644
--- a/plugins/pagebreak/lang/sq.js
+++ b/plugins/pagebreak/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'sq', {
diff --git a/plugins/pagebreak/lang/sr-latn.js b/plugins/pagebreak/lang/sr-latn.js
index e3fae16b..f1063119 100644
--- a/plugins/pagebreak/lang/sr-latn.js
+++ b/plugins/pagebreak/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'sr-latn', {
diff --git a/plugins/pagebreak/lang/sr.js b/plugins/pagebreak/lang/sr.js
index 9717f438..d9db61e8 100644
--- a/plugins/pagebreak/lang/sr.js
+++ b/plugins/pagebreak/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'sr', {
diff --git a/plugins/pagebreak/lang/sv.js b/plugins/pagebreak/lang/sv.js
index 25026b5b..c62320e6 100644
--- a/plugins/pagebreak/lang/sv.js
+++ b/plugins/pagebreak/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'sv', {
diff --git a/plugins/pagebreak/lang/th.js b/plugins/pagebreak/lang/th.js
index e0907bcf..7c96f3cb 100644
--- a/plugins/pagebreak/lang/th.js
+++ b/plugins/pagebreak/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'th', {
diff --git a/plugins/pagebreak/lang/tr.js b/plugins/pagebreak/lang/tr.js
index fee87be5..1e77ad19 100644
--- a/plugins/pagebreak/lang/tr.js
+++ b/plugins/pagebreak/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'tr', {
diff --git a/plugins/pagebreak/lang/tt.js b/plugins/pagebreak/lang/tt.js
index 0f31c809..e5b470db 100644
--- a/plugins/pagebreak/lang/tt.js
+++ b/plugins/pagebreak/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'tt', {
diff --git a/plugins/pagebreak/lang/ug.js b/plugins/pagebreak/lang/ug.js
index f9dabdbf..5cbba2c0 100644
--- a/plugins/pagebreak/lang/ug.js
+++ b/plugins/pagebreak/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'ug', {
diff --git a/plugins/pagebreak/lang/uk.js b/plugins/pagebreak/lang/uk.js
index 3add9811..54c1adb1 100644
--- a/plugins/pagebreak/lang/uk.js
+++ b/plugins/pagebreak/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'uk', {
diff --git a/plugins/pagebreak/lang/vi.js b/plugins/pagebreak/lang/vi.js
index 198253fd..8462e41c 100644
--- a/plugins/pagebreak/lang/vi.js
+++ b/plugins/pagebreak/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'vi', {
diff --git a/plugins/pagebreak/lang/zh-cn.js b/plugins/pagebreak/lang/zh-cn.js
index e4aa46fa..d0b419a2 100644
--- a/plugins/pagebreak/lang/zh-cn.js
+++ b/plugins/pagebreak/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'zh-cn', {
diff --git a/plugins/pagebreak/lang/zh.js b/plugins/pagebreak/lang/zh.js
index 9fd7cd77..4c9686eb 100644
--- a/plugins/pagebreak/lang/zh.js
+++ b/plugins/pagebreak/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pagebreak', 'zh', {
diff --git a/plugins/pagebreak/plugin.js b/plugins/pagebreak/plugin.js
index 274013ef..030a2345 100644
--- a/plugins/pagebreak/plugin.js
+++ b/plugins/pagebreak/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/panel/plugin.js b/plugins/panel/plugin.js
index ef29b8dc..b2e75121 100644
--- a/plugins/panel/plugin.js
+++ b/plugins/panel/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/panelbutton/plugin.js b/plugins/panelbutton/plugin.js
index 42dedc36..5fc5e71d 100644
--- a/plugins/panelbutton/plugin.js
+++ b/plugins/panelbutton/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/pastefromgdocs/filter/default.js b/plugins/pastefromgdocs/filter/default.js
index c652c111..baf09eb6 100644
--- a/plugins/pastefromgdocs/filter/default.js
+++ b/plugins/pastefromgdocs/filter/default.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/pastefromgdocs/plugin.js b/plugins/pastefromgdocs/plugin.js
index 007c447a..85ddc16c 100644
--- a/plugins/pastefromgdocs/plugin.js
+++ b/plugins/pastefromgdocs/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/pastefromlibreoffice/filter/default.js b/plugins/pastefromlibreoffice/filter/default.js
index d640545a..e28e31e0 100644
--- a/plugins/pastefromlibreoffice/filter/default.js
+++ b/plugins/pastefromlibreoffice/filter/default.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/pastefromlibreoffice/plugin.js b/plugins/pastefromlibreoffice/plugin.js
index 770e47ad..46cbac1e 100644
--- a/plugins/pastefromlibreoffice/plugin.js
+++ b/plugins/pastefromlibreoffice/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/pastefromword/filter/default.js b/plugins/pastefromword/filter/default.js
index dd45858a..54bf836d 100644
--- a/plugins/pastefromword/filter/default.js
+++ b/plugins/pastefromword/filter/default.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/pastefromword/lang/af.js b/plugins/pastefromword/lang/af.js
index 5f25c750..f8bdda53 100644
--- a/plugins/pastefromword/lang/af.js
+++ b/plugins/pastefromword/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'af', {
diff --git a/plugins/pastefromword/lang/ar.js b/plugins/pastefromword/lang/ar.js
index 108a6da0..fc0e17c7 100644
--- a/plugins/pastefromword/lang/ar.js
+++ b/plugins/pastefromword/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'ar', {
diff --git a/plugins/pastefromword/lang/az.js b/plugins/pastefromword/lang/az.js
index 34d5f610..5ad7b8ca 100644
--- a/plugins/pastefromword/lang/az.js
+++ b/plugins/pastefromword/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'az', {
diff --git a/plugins/pastefromword/lang/bg.js b/plugins/pastefromword/lang/bg.js
index fc3c000c..48e6a3b7 100644
--- a/plugins/pastefromword/lang/bg.js
+++ b/plugins/pastefromword/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'bg', {
diff --git a/plugins/pastefromword/lang/bn.js b/plugins/pastefromword/lang/bn.js
index 55d66c43..71aea3bb 100644
--- a/plugins/pastefromword/lang/bn.js
+++ b/plugins/pastefromword/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'bn', {
diff --git a/plugins/pastefromword/lang/bs.js b/plugins/pastefromword/lang/bs.js
index e25b6e91..5403612e 100644
--- a/plugins/pastefromword/lang/bs.js
+++ b/plugins/pastefromword/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'bs', {
diff --git a/plugins/pastefromword/lang/ca.js b/plugins/pastefromword/lang/ca.js
index 1d9bb96d..44c312f2 100644
--- a/plugins/pastefromword/lang/ca.js
+++ b/plugins/pastefromword/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'ca', {
diff --git a/plugins/pastefromword/lang/cs.js b/plugins/pastefromword/lang/cs.js
index 6fbff584..907420e8 100644
--- a/plugins/pastefromword/lang/cs.js
+++ b/plugins/pastefromword/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'cs', {
diff --git a/plugins/pastefromword/lang/cy.js b/plugins/pastefromword/lang/cy.js
index c6eed091..72650492 100644
--- a/plugins/pastefromword/lang/cy.js
+++ b/plugins/pastefromword/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'cy', {
diff --git a/plugins/pastefromword/lang/da.js b/plugins/pastefromword/lang/da.js
index 3f4e1801..dde8463f 100644
--- a/plugins/pastefromword/lang/da.js
+++ b/plugins/pastefromword/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'da', {
diff --git a/plugins/pastefromword/lang/de-ch.js b/plugins/pastefromword/lang/de-ch.js
index 681e7f95..881420eb 100644
--- a/plugins/pastefromword/lang/de-ch.js
+++ b/plugins/pastefromword/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'de-ch', {
diff --git a/plugins/pastefromword/lang/de.js b/plugins/pastefromword/lang/de.js
index 795a5055..0fe090a9 100644
--- a/plugins/pastefromword/lang/de.js
+++ b/plugins/pastefromword/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'de', {
diff --git a/plugins/pastefromword/lang/el.js b/plugins/pastefromword/lang/el.js
index 9c8cd595..5bace1e2 100644
--- a/plugins/pastefromword/lang/el.js
+++ b/plugins/pastefromword/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'el', {
diff --git a/plugins/pastefromword/lang/en-au.js b/plugins/pastefromword/lang/en-au.js
index 3aa29269..2d7c8c5a 100644
--- a/plugins/pastefromword/lang/en-au.js
+++ b/plugins/pastefromword/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'en-au', {
diff --git a/plugins/pastefromword/lang/en-ca.js b/plugins/pastefromword/lang/en-ca.js
index 9b19dc47..17ee05cd 100644
--- a/plugins/pastefromword/lang/en-ca.js
+++ b/plugins/pastefromword/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'en-ca', {
diff --git a/plugins/pastefromword/lang/en-gb.js b/plugins/pastefromword/lang/en-gb.js
index c4773eaa..88948ade 100644
--- a/plugins/pastefromword/lang/en-gb.js
+++ b/plugins/pastefromword/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'en-gb', {
diff --git a/plugins/pastefromword/lang/en.js b/plugins/pastefromword/lang/en.js
index 37b2ac81..48b2b7a2 100644
--- a/plugins/pastefromword/lang/en.js
+++ b/plugins/pastefromword/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'en', {
diff --git a/plugins/pastefromword/lang/eo.js b/plugins/pastefromword/lang/eo.js
index 82f27516..ae9400ec 100644
--- a/plugins/pastefromword/lang/eo.js
+++ b/plugins/pastefromword/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'eo', {
diff --git a/plugins/pastefromword/lang/es-mx.js b/plugins/pastefromword/lang/es-mx.js
index 4b202222..ab0335ab 100644
--- a/plugins/pastefromword/lang/es-mx.js
+++ b/plugins/pastefromword/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'es-mx', {
diff --git a/plugins/pastefromword/lang/es.js b/plugins/pastefromword/lang/es.js
index 1e2202e8..8744e486 100644
--- a/plugins/pastefromword/lang/es.js
+++ b/plugins/pastefromword/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'es', {
diff --git a/plugins/pastefromword/lang/et.js b/plugins/pastefromword/lang/et.js
index 86c8c37b..02386f9a 100644
--- a/plugins/pastefromword/lang/et.js
+++ b/plugins/pastefromword/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'et', {
diff --git a/plugins/pastefromword/lang/eu.js b/plugins/pastefromword/lang/eu.js
index cf398ce1..3f403c21 100644
--- a/plugins/pastefromword/lang/eu.js
+++ b/plugins/pastefromword/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'eu', {
diff --git a/plugins/pastefromword/lang/fa.js b/plugins/pastefromword/lang/fa.js
index 62226284..84b26684 100644
--- a/plugins/pastefromword/lang/fa.js
+++ b/plugins/pastefromword/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'fa', {
diff --git a/plugins/pastefromword/lang/fi.js b/plugins/pastefromword/lang/fi.js
index 17d4a747..64558652 100644
--- a/plugins/pastefromword/lang/fi.js
+++ b/plugins/pastefromword/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'fi', {
diff --git a/plugins/pastefromword/lang/fo.js b/plugins/pastefromword/lang/fo.js
index 232e125d..ce7697c9 100644
--- a/plugins/pastefromword/lang/fo.js
+++ b/plugins/pastefromword/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'fo', {
diff --git a/plugins/pastefromword/lang/fr-ca.js b/plugins/pastefromword/lang/fr-ca.js
index 50366015..c1f0cbef 100644
--- a/plugins/pastefromword/lang/fr-ca.js
+++ b/plugins/pastefromword/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'fr-ca', {
diff --git a/plugins/pastefromword/lang/fr.js b/plugins/pastefromword/lang/fr.js
index 656973bc..e9d0525c 100644
--- a/plugins/pastefromword/lang/fr.js
+++ b/plugins/pastefromword/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'fr', {
diff --git a/plugins/pastefromword/lang/gl.js b/plugins/pastefromword/lang/gl.js
index 7c2573a0..1c390524 100644
--- a/plugins/pastefromword/lang/gl.js
+++ b/plugins/pastefromword/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'gl', {
diff --git a/plugins/pastefromword/lang/gu.js b/plugins/pastefromword/lang/gu.js
index 288e688d..c41f203a 100644
--- a/plugins/pastefromword/lang/gu.js
+++ b/plugins/pastefromword/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'gu', {
diff --git a/plugins/pastefromword/lang/he.js b/plugins/pastefromword/lang/he.js
index 687781a6..d5726699 100644
--- a/plugins/pastefromword/lang/he.js
+++ b/plugins/pastefromword/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'he', {
diff --git a/plugins/pastefromword/lang/hi.js b/plugins/pastefromword/lang/hi.js
index fc2a5ce3..5cc9900b 100644
--- a/plugins/pastefromword/lang/hi.js
+++ b/plugins/pastefromword/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'hi', {
diff --git a/plugins/pastefromword/lang/hr.js b/plugins/pastefromword/lang/hr.js
index dab69061..fbd5d645 100644
--- a/plugins/pastefromword/lang/hr.js
+++ b/plugins/pastefromword/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'hr', {
diff --git a/plugins/pastefromword/lang/hu.js b/plugins/pastefromword/lang/hu.js
index 3e4bd92e..8d5ff0b3 100644
--- a/plugins/pastefromword/lang/hu.js
+++ b/plugins/pastefromword/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'hu', {
diff --git a/plugins/pastefromword/lang/id.js b/plugins/pastefromword/lang/id.js
index 67baefc7..341a72c4 100644
--- a/plugins/pastefromword/lang/id.js
+++ b/plugins/pastefromword/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'id', {
diff --git a/plugins/pastefromword/lang/is.js b/plugins/pastefromword/lang/is.js
index ed39840c..c0ecf070 100644
--- a/plugins/pastefromword/lang/is.js
+++ b/plugins/pastefromword/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'is', {
diff --git a/plugins/pastefromword/lang/it.js b/plugins/pastefromword/lang/it.js
index 9e140a8a..3e21f037 100644
--- a/plugins/pastefromword/lang/it.js
+++ b/plugins/pastefromword/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'it', {
diff --git a/plugins/pastefromword/lang/ja.js b/plugins/pastefromword/lang/ja.js
index 4f5beaa7..ecce800d 100644
--- a/plugins/pastefromword/lang/ja.js
+++ b/plugins/pastefromword/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'ja', {
diff --git a/plugins/pastefromword/lang/ka.js b/plugins/pastefromword/lang/ka.js
index 4c140e7f..7d954910 100644
--- a/plugins/pastefromword/lang/ka.js
+++ b/plugins/pastefromword/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'ka', {
diff --git a/plugins/pastefromword/lang/km.js b/plugins/pastefromword/lang/km.js
index ccc6e76f..9bc5d191 100644
--- a/plugins/pastefromword/lang/km.js
+++ b/plugins/pastefromword/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'km', {
diff --git a/plugins/pastefromword/lang/ko.js b/plugins/pastefromword/lang/ko.js
index 2b7299f1..4bac42c4 100644
--- a/plugins/pastefromword/lang/ko.js
+++ b/plugins/pastefromword/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'ko', {
diff --git a/plugins/pastefromword/lang/ku.js b/plugins/pastefromword/lang/ku.js
index eae7e181..11f4f3e6 100644
--- a/plugins/pastefromword/lang/ku.js
+++ b/plugins/pastefromword/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'ku', {
diff --git a/plugins/pastefromword/lang/lt.js b/plugins/pastefromword/lang/lt.js
index 1a7830c3..5dbfd2d9 100644
--- a/plugins/pastefromword/lang/lt.js
+++ b/plugins/pastefromword/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'lt', {
diff --git a/plugins/pastefromword/lang/lv.js b/plugins/pastefromword/lang/lv.js
index efd85d07..0aca5896 100644
--- a/plugins/pastefromword/lang/lv.js
+++ b/plugins/pastefromword/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'lv', {
diff --git a/plugins/pastefromword/lang/mk.js b/plugins/pastefromword/lang/mk.js
index 30a58b27..6159676d 100644
--- a/plugins/pastefromword/lang/mk.js
+++ b/plugins/pastefromword/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'mk', {
diff --git a/plugins/pastefromword/lang/mn.js b/plugins/pastefromword/lang/mn.js
index af6ea01b..5ca95836 100644
--- a/plugins/pastefromword/lang/mn.js
+++ b/plugins/pastefromword/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'mn', {
diff --git a/plugins/pastefromword/lang/ms.js b/plugins/pastefromword/lang/ms.js
index eaba95dc..9cd4c11a 100644
--- a/plugins/pastefromword/lang/ms.js
+++ b/plugins/pastefromword/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'ms', {
diff --git a/plugins/pastefromword/lang/nb.js b/plugins/pastefromword/lang/nb.js
index 3e62032a..9717a68c 100644
--- a/plugins/pastefromword/lang/nb.js
+++ b/plugins/pastefromword/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'nb', {
diff --git a/plugins/pastefromword/lang/nl.js b/plugins/pastefromword/lang/nl.js
index 91f67fd6..dd4e0531 100644
--- a/plugins/pastefromword/lang/nl.js
+++ b/plugins/pastefromword/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'nl', {
diff --git a/plugins/pastefromword/lang/no.js b/plugins/pastefromword/lang/no.js
index 28b687b2..d3e94088 100644
--- a/plugins/pastefromword/lang/no.js
+++ b/plugins/pastefromword/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'no', {
diff --git a/plugins/pastefromword/lang/oc.js b/plugins/pastefromword/lang/oc.js
index a1f556a2..3c7db7de 100644
--- a/plugins/pastefromword/lang/oc.js
+++ b/plugins/pastefromword/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'oc', {
diff --git a/plugins/pastefromword/lang/pl.js b/plugins/pastefromword/lang/pl.js
index 07332837..8840cf8f 100644
--- a/plugins/pastefromword/lang/pl.js
+++ b/plugins/pastefromword/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'pl', {
diff --git a/plugins/pastefromword/lang/pt-br.js b/plugins/pastefromword/lang/pt-br.js
index d2712773..1d19a9e4 100644
--- a/plugins/pastefromword/lang/pt-br.js
+++ b/plugins/pastefromword/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'pt-br', {
diff --git a/plugins/pastefromword/lang/pt.js b/plugins/pastefromword/lang/pt.js
index 28e18d89..9c8db31a 100644
--- a/plugins/pastefromword/lang/pt.js
+++ b/plugins/pastefromword/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'pt', {
diff --git a/plugins/pastefromword/lang/ro.js b/plugins/pastefromword/lang/ro.js
index 57190908..670fc2c2 100644
--- a/plugins/pastefromword/lang/ro.js
+++ b/plugins/pastefromword/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'ro', {
diff --git a/plugins/pastefromword/lang/ru.js b/plugins/pastefromword/lang/ru.js
index 4c9a8035..24698734 100644
--- a/plugins/pastefromword/lang/ru.js
+++ b/plugins/pastefromword/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'ru', {
diff --git a/plugins/pastefromword/lang/si.js b/plugins/pastefromword/lang/si.js
index 6bbf52ff..d1dd9f38 100644
--- a/plugins/pastefromword/lang/si.js
+++ b/plugins/pastefromword/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'si', {
diff --git a/plugins/pastefromword/lang/sk.js b/plugins/pastefromword/lang/sk.js
index 73675f01..0ec330c6 100644
--- a/plugins/pastefromword/lang/sk.js
+++ b/plugins/pastefromword/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'sk', {
diff --git a/plugins/pastefromword/lang/sl.js b/plugins/pastefromword/lang/sl.js
index 20f76274..a284e928 100644
--- a/plugins/pastefromword/lang/sl.js
+++ b/plugins/pastefromword/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'sl', {
diff --git a/plugins/pastefromword/lang/sq.js b/plugins/pastefromword/lang/sq.js
index e7a5d488..e14350a7 100644
--- a/plugins/pastefromword/lang/sq.js
+++ b/plugins/pastefromword/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'sq', {
diff --git a/plugins/pastefromword/lang/sr-latn.js b/plugins/pastefromword/lang/sr-latn.js
index 5555048c..a6324d52 100644
--- a/plugins/pastefromword/lang/sr-latn.js
+++ b/plugins/pastefromword/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'sr-latn', {
diff --git a/plugins/pastefromword/lang/sr.js b/plugins/pastefromword/lang/sr.js
index e5f6553d..8a3b4cc2 100644
--- a/plugins/pastefromword/lang/sr.js
+++ b/plugins/pastefromword/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'sr', {
diff --git a/plugins/pastefromword/lang/sv.js b/plugins/pastefromword/lang/sv.js
index b6f5fe06..015389de 100644
--- a/plugins/pastefromword/lang/sv.js
+++ b/plugins/pastefromword/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'sv', {
diff --git a/plugins/pastefromword/lang/th.js b/plugins/pastefromword/lang/th.js
index 6d4f3ff0..9139c64a 100644
--- a/plugins/pastefromword/lang/th.js
+++ b/plugins/pastefromword/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'th', {
diff --git a/plugins/pastefromword/lang/tr.js b/plugins/pastefromword/lang/tr.js
index 3b49ba86..efca54ff 100644
--- a/plugins/pastefromword/lang/tr.js
+++ b/plugins/pastefromword/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'tr', {
diff --git a/plugins/pastefromword/lang/tt.js b/plugins/pastefromword/lang/tt.js
index 53383c93..c313a75e 100644
--- a/plugins/pastefromword/lang/tt.js
+++ b/plugins/pastefromword/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'tt', {
diff --git a/plugins/pastefromword/lang/ug.js b/plugins/pastefromword/lang/ug.js
index 6d1f9a11..20f5c8ea 100644
--- a/plugins/pastefromword/lang/ug.js
+++ b/plugins/pastefromword/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'ug', {
diff --git a/plugins/pastefromword/lang/uk.js b/plugins/pastefromword/lang/uk.js
index 9be8a03e..2f61f573 100644
--- a/plugins/pastefromword/lang/uk.js
+++ b/plugins/pastefromword/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'uk', {
diff --git a/plugins/pastefromword/lang/vi.js b/plugins/pastefromword/lang/vi.js
index 9136826c..94695d0a 100644
--- a/plugins/pastefromword/lang/vi.js
+++ b/plugins/pastefromword/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'vi', {
diff --git a/plugins/pastefromword/lang/zh-cn.js b/plugins/pastefromword/lang/zh-cn.js
index 4b9babaa..d02b68c9 100644
--- a/plugins/pastefromword/lang/zh-cn.js
+++ b/plugins/pastefromword/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'zh-cn', {
diff --git a/plugins/pastefromword/lang/zh.js b/plugins/pastefromword/lang/zh.js
index 73850562..8845c6d2 100644
--- a/plugins/pastefromword/lang/zh.js
+++ b/plugins/pastefromword/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastefromword', 'zh', {
diff --git a/plugins/pastefromword/plugin.js b/plugins/pastefromword/plugin.js
index adb40768..3ef1afb9 100755
--- a/plugins/pastefromword/plugin.js
+++ b/plugins/pastefromword/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/pastetext/lang/af.js b/plugins/pastetext/lang/af.js
index 04445146..bac226fa 100644
--- a/plugins/pastetext/lang/af.js
+++ b/plugins/pastetext/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'af', {
diff --git a/plugins/pastetext/lang/ar.js b/plugins/pastetext/lang/ar.js
index 04b630de..38b50991 100644
--- a/plugins/pastetext/lang/ar.js
+++ b/plugins/pastetext/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'ar', {
diff --git a/plugins/pastetext/lang/az.js b/plugins/pastetext/lang/az.js
index 67191421..b18245dc 100644
--- a/plugins/pastetext/lang/az.js
+++ b/plugins/pastetext/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'az', {
diff --git a/plugins/pastetext/lang/bg.js b/plugins/pastetext/lang/bg.js
index 4dc332be..ff36f06a 100644
--- a/plugins/pastetext/lang/bg.js
+++ b/plugins/pastetext/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'bg', {
diff --git a/plugins/pastetext/lang/bn.js b/plugins/pastetext/lang/bn.js
index 281188e1..5ca85e65 100644
--- a/plugins/pastetext/lang/bn.js
+++ b/plugins/pastetext/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'bn', {
diff --git a/plugins/pastetext/lang/bs.js b/plugins/pastetext/lang/bs.js
index cd04d876..e6161a94 100644
--- a/plugins/pastetext/lang/bs.js
+++ b/plugins/pastetext/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'bs', {
diff --git a/plugins/pastetext/lang/ca.js b/plugins/pastetext/lang/ca.js
index ef0bb0e8..66587ea9 100644
--- a/plugins/pastetext/lang/ca.js
+++ b/plugins/pastetext/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'ca', {
diff --git a/plugins/pastetext/lang/cs.js b/plugins/pastetext/lang/cs.js
index dd869143..e34cb582 100644
--- a/plugins/pastetext/lang/cs.js
+++ b/plugins/pastetext/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'cs', {
diff --git a/plugins/pastetext/lang/cy.js b/plugins/pastetext/lang/cy.js
index 43913e30..ab2cf705 100644
--- a/plugins/pastetext/lang/cy.js
+++ b/plugins/pastetext/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'cy', {
diff --git a/plugins/pastetext/lang/da.js b/plugins/pastetext/lang/da.js
index 91d73fed..7842f894 100644
--- a/plugins/pastetext/lang/da.js
+++ b/plugins/pastetext/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'da', {
diff --git a/plugins/pastetext/lang/de-ch.js b/plugins/pastetext/lang/de-ch.js
index 8198a1e2..93cda00f 100644
--- a/plugins/pastetext/lang/de-ch.js
+++ b/plugins/pastetext/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'de-ch', {
diff --git a/plugins/pastetext/lang/de.js b/plugins/pastetext/lang/de.js
index 354f5688..077f18fa 100644
--- a/plugins/pastetext/lang/de.js
+++ b/plugins/pastetext/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'de', {
diff --git a/plugins/pastetext/lang/el.js b/plugins/pastetext/lang/el.js
index 3f38b71f..6639b801 100644
--- a/plugins/pastetext/lang/el.js
+++ b/plugins/pastetext/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'el', {
diff --git a/plugins/pastetext/lang/en-au.js b/plugins/pastetext/lang/en-au.js
index efb656cc..e5866297 100644
--- a/plugins/pastetext/lang/en-au.js
+++ b/plugins/pastetext/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'en-au', {
diff --git a/plugins/pastetext/lang/en-ca.js b/plugins/pastetext/lang/en-ca.js
index d6f78113..578736ad 100644
--- a/plugins/pastetext/lang/en-ca.js
+++ b/plugins/pastetext/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'en-ca', {
diff --git a/plugins/pastetext/lang/en-gb.js b/plugins/pastetext/lang/en-gb.js
index 2083ae3b..11f5dee9 100644
--- a/plugins/pastetext/lang/en-gb.js
+++ b/plugins/pastetext/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'en-gb', {
diff --git a/plugins/pastetext/lang/en.js b/plugins/pastetext/lang/en.js
index 3a29401b..bfdfbd6c 100644
--- a/plugins/pastetext/lang/en.js
+++ b/plugins/pastetext/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'en', {
diff --git a/plugins/pastetext/lang/eo.js b/plugins/pastetext/lang/eo.js
index 643964a6..e2a30f18 100644
--- a/plugins/pastetext/lang/eo.js
+++ b/plugins/pastetext/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'eo', {
diff --git a/plugins/pastetext/lang/es-mx.js b/plugins/pastetext/lang/es-mx.js
index 69d3c199..bc362ccc 100644
--- a/plugins/pastetext/lang/es-mx.js
+++ b/plugins/pastetext/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'es-mx', {
diff --git a/plugins/pastetext/lang/es.js b/plugins/pastetext/lang/es.js
index 9b51a716..3a440830 100644
--- a/plugins/pastetext/lang/es.js
+++ b/plugins/pastetext/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'es', {
diff --git a/plugins/pastetext/lang/et.js b/plugins/pastetext/lang/et.js
index 3b9880c4..11ece141 100644
--- a/plugins/pastetext/lang/et.js
+++ b/plugins/pastetext/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'et', {
diff --git a/plugins/pastetext/lang/eu.js b/plugins/pastetext/lang/eu.js
index afbf4a00..fd25bab9 100644
--- a/plugins/pastetext/lang/eu.js
+++ b/plugins/pastetext/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'eu', {
diff --git a/plugins/pastetext/lang/fa.js b/plugins/pastetext/lang/fa.js
index f25f0912..5e0fad5c 100644
--- a/plugins/pastetext/lang/fa.js
+++ b/plugins/pastetext/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'fa', {
diff --git a/plugins/pastetext/lang/fi.js b/plugins/pastetext/lang/fi.js
index 651a4605..c92b577f 100644
--- a/plugins/pastetext/lang/fi.js
+++ b/plugins/pastetext/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'fi', {
diff --git a/plugins/pastetext/lang/fo.js b/plugins/pastetext/lang/fo.js
index d4911d71..3dc89173 100644
--- a/plugins/pastetext/lang/fo.js
+++ b/plugins/pastetext/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'fo', {
diff --git a/plugins/pastetext/lang/fr-ca.js b/plugins/pastetext/lang/fr-ca.js
index e0261648..720241d4 100644
--- a/plugins/pastetext/lang/fr-ca.js
+++ b/plugins/pastetext/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'fr-ca', {
diff --git a/plugins/pastetext/lang/fr.js b/plugins/pastetext/lang/fr.js
index d357d2e6..597a3f06 100644
--- a/plugins/pastetext/lang/fr.js
+++ b/plugins/pastetext/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'fr', {
diff --git a/plugins/pastetext/lang/gl.js b/plugins/pastetext/lang/gl.js
index 5e03d79a..bd821671 100644
--- a/plugins/pastetext/lang/gl.js
+++ b/plugins/pastetext/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'gl', {
diff --git a/plugins/pastetext/lang/gu.js b/plugins/pastetext/lang/gu.js
index 9d695225..b73ca5e8 100644
--- a/plugins/pastetext/lang/gu.js
+++ b/plugins/pastetext/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'gu', {
diff --git a/plugins/pastetext/lang/he.js b/plugins/pastetext/lang/he.js
index 297619f4..1dec11ab 100644
--- a/plugins/pastetext/lang/he.js
+++ b/plugins/pastetext/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'he', {
diff --git a/plugins/pastetext/lang/hi.js b/plugins/pastetext/lang/hi.js
index a5b7d2ed..928d2039 100644
--- a/plugins/pastetext/lang/hi.js
+++ b/plugins/pastetext/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'hi', {
diff --git a/plugins/pastetext/lang/hr.js b/plugins/pastetext/lang/hr.js
index ab8e9f9e..5d3de983 100644
--- a/plugins/pastetext/lang/hr.js
+++ b/plugins/pastetext/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'hr', {
diff --git a/plugins/pastetext/lang/hu.js b/plugins/pastetext/lang/hu.js
index 5d95d86f..3d446fae 100644
--- a/plugins/pastetext/lang/hu.js
+++ b/plugins/pastetext/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'hu', {
diff --git a/plugins/pastetext/lang/id.js b/plugins/pastetext/lang/id.js
index 0d481d8b..1d2b6c39 100644
--- a/plugins/pastetext/lang/id.js
+++ b/plugins/pastetext/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'id', {
diff --git a/plugins/pastetext/lang/is.js b/plugins/pastetext/lang/is.js
index ded5d36e..64c75591 100644
--- a/plugins/pastetext/lang/is.js
+++ b/plugins/pastetext/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'is', {
diff --git a/plugins/pastetext/lang/it.js b/plugins/pastetext/lang/it.js
index 2cb42bdf..169298f7 100644
--- a/plugins/pastetext/lang/it.js
+++ b/plugins/pastetext/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'it', {
diff --git a/plugins/pastetext/lang/ja.js b/plugins/pastetext/lang/ja.js
index b4b71f9f..38252136 100644
--- a/plugins/pastetext/lang/ja.js
+++ b/plugins/pastetext/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'ja', {
diff --git a/plugins/pastetext/lang/ka.js b/plugins/pastetext/lang/ka.js
index 4343fb08..ac359af3 100644
--- a/plugins/pastetext/lang/ka.js
+++ b/plugins/pastetext/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'ka', {
diff --git a/plugins/pastetext/lang/km.js b/plugins/pastetext/lang/km.js
index babf77dc..72079cbf 100644
--- a/plugins/pastetext/lang/km.js
+++ b/plugins/pastetext/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'km', {
diff --git a/plugins/pastetext/lang/ko.js b/plugins/pastetext/lang/ko.js
index 658a3408..3a8b7309 100644
--- a/plugins/pastetext/lang/ko.js
+++ b/plugins/pastetext/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'ko', {
diff --git a/plugins/pastetext/lang/ku.js b/plugins/pastetext/lang/ku.js
index d5ea41ca..60630ad3 100644
--- a/plugins/pastetext/lang/ku.js
+++ b/plugins/pastetext/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'ku', {
diff --git a/plugins/pastetext/lang/lt.js b/plugins/pastetext/lang/lt.js
index 14f5ba04..e1867541 100644
--- a/plugins/pastetext/lang/lt.js
+++ b/plugins/pastetext/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'lt', {
diff --git a/plugins/pastetext/lang/lv.js b/plugins/pastetext/lang/lv.js
index a2bae1b5..e107268f 100644
--- a/plugins/pastetext/lang/lv.js
+++ b/plugins/pastetext/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'lv', {
diff --git a/plugins/pastetext/lang/mk.js b/plugins/pastetext/lang/mk.js
index d07f913b..5f80398a 100644
--- a/plugins/pastetext/lang/mk.js
+++ b/plugins/pastetext/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'mk', {
diff --git a/plugins/pastetext/lang/mn.js b/plugins/pastetext/lang/mn.js
index 122c43e9..5134143b 100644
--- a/plugins/pastetext/lang/mn.js
+++ b/plugins/pastetext/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'mn', {
diff --git a/plugins/pastetext/lang/ms.js b/plugins/pastetext/lang/ms.js
index 939719f5..b6ce496b 100644
--- a/plugins/pastetext/lang/ms.js
+++ b/plugins/pastetext/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'ms', {
diff --git a/plugins/pastetext/lang/nb.js b/plugins/pastetext/lang/nb.js
index 7a46eacd..c3111dcd 100644
--- a/plugins/pastetext/lang/nb.js
+++ b/plugins/pastetext/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'nb', {
diff --git a/plugins/pastetext/lang/nl.js b/plugins/pastetext/lang/nl.js
index 7cecb778..adad5687 100644
--- a/plugins/pastetext/lang/nl.js
+++ b/plugins/pastetext/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'nl', {
diff --git a/plugins/pastetext/lang/no.js b/plugins/pastetext/lang/no.js
index 5edd072f..0a18ff3f 100644
--- a/plugins/pastetext/lang/no.js
+++ b/plugins/pastetext/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'no', {
diff --git a/plugins/pastetext/lang/oc.js b/plugins/pastetext/lang/oc.js
index 297ddea4..7a629063 100644
--- a/plugins/pastetext/lang/oc.js
+++ b/plugins/pastetext/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'oc', {
diff --git a/plugins/pastetext/lang/pl.js b/plugins/pastetext/lang/pl.js
index 5df0b5a8..dd94eb9c 100644
--- a/plugins/pastetext/lang/pl.js
+++ b/plugins/pastetext/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'pl', {
diff --git a/plugins/pastetext/lang/pt-br.js b/plugins/pastetext/lang/pt-br.js
index 115e8d71..af4c79ca 100644
--- a/plugins/pastetext/lang/pt-br.js
+++ b/plugins/pastetext/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'pt-br', {
diff --git a/plugins/pastetext/lang/pt.js b/plugins/pastetext/lang/pt.js
index 00877bbd..c2f53e1e 100644
--- a/plugins/pastetext/lang/pt.js
+++ b/plugins/pastetext/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'pt', {
diff --git a/plugins/pastetext/lang/ro.js b/plugins/pastetext/lang/ro.js
index 0161eecf..2e6d5854 100644
--- a/plugins/pastetext/lang/ro.js
+++ b/plugins/pastetext/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'ro', {
diff --git a/plugins/pastetext/lang/ru.js b/plugins/pastetext/lang/ru.js
index 7fd3408c..d58288e1 100644
--- a/plugins/pastetext/lang/ru.js
+++ b/plugins/pastetext/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'ru', {
diff --git a/plugins/pastetext/lang/si.js b/plugins/pastetext/lang/si.js
index 247f3d52..89b2dc87 100644
--- a/plugins/pastetext/lang/si.js
+++ b/plugins/pastetext/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'si', {
diff --git a/plugins/pastetext/lang/sk.js b/plugins/pastetext/lang/sk.js
index f896ad81..4c76086d 100644
--- a/plugins/pastetext/lang/sk.js
+++ b/plugins/pastetext/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'sk', {
diff --git a/plugins/pastetext/lang/sl.js b/plugins/pastetext/lang/sl.js
index 66bcb481..1076b418 100644
--- a/plugins/pastetext/lang/sl.js
+++ b/plugins/pastetext/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'sl', {
diff --git a/plugins/pastetext/lang/sq.js b/plugins/pastetext/lang/sq.js
index bcc53154..745d8e57 100644
--- a/plugins/pastetext/lang/sq.js
+++ b/plugins/pastetext/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'sq', {
diff --git a/plugins/pastetext/lang/sr-latn.js b/plugins/pastetext/lang/sr-latn.js
index 4354ae35..87f3954a 100644
--- a/plugins/pastetext/lang/sr-latn.js
+++ b/plugins/pastetext/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'sr-latn', {
diff --git a/plugins/pastetext/lang/sr.js b/plugins/pastetext/lang/sr.js
index ea9449be..6664c3b8 100644
--- a/plugins/pastetext/lang/sr.js
+++ b/plugins/pastetext/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'sr', {
diff --git a/plugins/pastetext/lang/sv.js b/plugins/pastetext/lang/sv.js
index ea54418e..8ed6404f 100644
--- a/plugins/pastetext/lang/sv.js
+++ b/plugins/pastetext/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'sv', {
diff --git a/plugins/pastetext/lang/th.js b/plugins/pastetext/lang/th.js
index 735e6ac0..f13da563 100644
--- a/plugins/pastetext/lang/th.js
+++ b/plugins/pastetext/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'th', {
diff --git a/plugins/pastetext/lang/tr.js b/plugins/pastetext/lang/tr.js
index 6b7f5bbe..c336c8d6 100644
--- a/plugins/pastetext/lang/tr.js
+++ b/plugins/pastetext/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'tr', {
diff --git a/plugins/pastetext/lang/tt.js b/plugins/pastetext/lang/tt.js
index c9a7653e..af19b81d 100644
--- a/plugins/pastetext/lang/tt.js
+++ b/plugins/pastetext/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'tt', {
diff --git a/plugins/pastetext/lang/ug.js b/plugins/pastetext/lang/ug.js
index 097e7496..8a5da5fd 100644
--- a/plugins/pastetext/lang/ug.js
+++ b/plugins/pastetext/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'ug', {
diff --git a/plugins/pastetext/lang/uk.js b/plugins/pastetext/lang/uk.js
index 45e07db8..3a3dd4d6 100644
--- a/plugins/pastetext/lang/uk.js
+++ b/plugins/pastetext/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'uk', {
diff --git a/plugins/pastetext/lang/vi.js b/plugins/pastetext/lang/vi.js
index e82ed012..d0ad9929 100644
--- a/plugins/pastetext/lang/vi.js
+++ b/plugins/pastetext/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'vi', {
diff --git a/plugins/pastetext/lang/zh-cn.js b/plugins/pastetext/lang/zh-cn.js
index cc556746..9fec2d0b 100644
--- a/plugins/pastetext/lang/zh-cn.js
+++ b/plugins/pastetext/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'zh-cn', {
diff --git a/plugins/pastetext/lang/zh.js b/plugins/pastetext/lang/zh.js
index 967c4b17..e0773763 100644
--- a/plugins/pastetext/lang/zh.js
+++ b/plugins/pastetext/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'pastetext', 'zh', {
diff --git a/plugins/pastetext/plugin.js b/plugins/pastetext/plugin.js
index 0fba0ed4..b8cf8042 100644
--- a/plugins/pastetext/plugin.js
+++ b/plugins/pastetext/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/pastetools/filter/common.js b/plugins/pastetools/filter/common.js
index 5f8ced67..e8e6ecae 100644
--- a/plugins/pastetools/filter/common.js
+++ b/plugins/pastetools/filter/common.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/pastetools/filter/image.js b/plugins/pastetools/filter/image.js
index 655e092a..9556a55c 100644
--- a/plugins/pastetools/filter/image.js
+++ b/plugins/pastetools/filter/image.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/pastetools/plugin.js b/plugins/pastetools/plugin.js
index ffc9cb13..ea28f082 100644
--- a/plugins/pastetools/plugin.js
+++ b/plugins/pastetools/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/dev/placeholder.html b/plugins/placeholder/dev/placeholder.html
index 52b62f60..61152ab2 100644
--- a/plugins/placeholder/dev/placeholder.html
+++ b/plugins/placeholder/dev/placeholder.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
diff --git a/plugins/placeholder/dialogs/placeholder.js b/plugins/placeholder/dialogs/placeholder.js
index f9ab2c09..7f97ebd9 100644
--- a/plugins/placeholder/dialogs/placeholder.js
+++ b/plugins/placeholder/dialogs/placeholder.js
@@ -1,6 +1,6 @@
 
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/af.js b/plugins/placeholder/lang/af.js
index 5a24e3bc..30b6ecf0 100644
--- a/plugins/placeholder/lang/af.js
+++ b/plugins/placeholder/lang/af.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/ar.js b/plugins/placeholder/lang/ar.js
index f05f48b7..8988ea63 100644
--- a/plugins/placeholder/lang/ar.js
+++ b/plugins/placeholder/lang/ar.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/az.js b/plugins/placeholder/lang/az.js
index 64362981..7c3c201b 100644
--- a/plugins/placeholder/lang/az.js
+++ b/plugins/placeholder/lang/az.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/bg.js b/plugins/placeholder/lang/bg.js
index 31cffd9a..23ec3a74 100644
--- a/plugins/placeholder/lang/bg.js
+++ b/plugins/placeholder/lang/bg.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/ca.js b/plugins/placeholder/lang/ca.js
index 23e11077..908789cf 100644
--- a/plugins/placeholder/lang/ca.js
+++ b/plugins/placeholder/lang/ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/cs.js b/plugins/placeholder/lang/cs.js
index 9a492802..94920645 100644
--- a/plugins/placeholder/lang/cs.js
+++ b/plugins/placeholder/lang/cs.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/cy.js b/plugins/placeholder/lang/cy.js
index 430b0181..b7eb6f32 100644
--- a/plugins/placeholder/lang/cy.js
+++ b/plugins/placeholder/lang/cy.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/da.js b/plugins/placeholder/lang/da.js
index 1cc1f476..9f052119 100644
--- a/plugins/placeholder/lang/da.js
+++ b/plugins/placeholder/lang/da.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/de-ch.js b/plugins/placeholder/lang/de-ch.js
index 3fc566d0..1648ad2c 100644
--- a/plugins/placeholder/lang/de-ch.js
+++ b/plugins/placeholder/lang/de-ch.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/de.js b/plugins/placeholder/lang/de.js
index fa46d9b3..c543bb6c 100644
--- a/plugins/placeholder/lang/de.js
+++ b/plugins/placeholder/lang/de.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/el.js b/plugins/placeholder/lang/el.js
index 925e4dd7..f2094ad0 100644
--- a/plugins/placeholder/lang/el.js
+++ b/plugins/placeholder/lang/el.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/en-au.js b/plugins/placeholder/lang/en-au.js
index d451044c..45a9dcfc 100644
--- a/plugins/placeholder/lang/en-au.js
+++ b/plugins/placeholder/lang/en-au.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/en-gb.js b/plugins/placeholder/lang/en-gb.js
index 4b1c52c6..eab6f419 100644
--- a/plugins/placeholder/lang/en-gb.js
+++ b/plugins/placeholder/lang/en-gb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/en.js b/plugins/placeholder/lang/en.js
index 63272c44..42701626 100644
--- a/plugins/placeholder/lang/en.js
+++ b/plugins/placeholder/lang/en.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/eo.js b/plugins/placeholder/lang/eo.js
index 3bac5069..5736c2d5 100644
--- a/plugins/placeholder/lang/eo.js
+++ b/plugins/placeholder/lang/eo.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/es-mx.js b/plugins/placeholder/lang/es-mx.js
index e230e8a4..3bd0b155 100644
--- a/plugins/placeholder/lang/es-mx.js
+++ b/plugins/placeholder/lang/es-mx.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/es.js b/plugins/placeholder/lang/es.js
index bd9fe9d8..94547fc5 100644
--- a/plugins/placeholder/lang/es.js
+++ b/plugins/placeholder/lang/es.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/et.js b/plugins/placeholder/lang/et.js
index bc4bb4c7..3628944f 100644
--- a/plugins/placeholder/lang/et.js
+++ b/plugins/placeholder/lang/et.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/eu.js b/plugins/placeholder/lang/eu.js
index 865c2f7d..fd45e2da 100644
--- a/plugins/placeholder/lang/eu.js
+++ b/plugins/placeholder/lang/eu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/fa.js b/plugins/placeholder/lang/fa.js
index 8ebc8110..57b41198 100644
--- a/plugins/placeholder/lang/fa.js
+++ b/plugins/placeholder/lang/fa.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/fi.js b/plugins/placeholder/lang/fi.js
index 17cf3328..97f33e4b 100644
--- a/plugins/placeholder/lang/fi.js
+++ b/plugins/placeholder/lang/fi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/fr-ca.js b/plugins/placeholder/lang/fr-ca.js
index b328123d..c6392a4f 100644
--- a/plugins/placeholder/lang/fr-ca.js
+++ b/plugins/placeholder/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/fr.js b/plugins/placeholder/lang/fr.js
index 39374730..f363042d 100644
--- a/plugins/placeholder/lang/fr.js
+++ b/plugins/placeholder/lang/fr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/gl.js b/plugins/placeholder/lang/gl.js
index dc1ab661..c71f5b02 100644
--- a/plugins/placeholder/lang/gl.js
+++ b/plugins/placeholder/lang/gl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/he.js b/plugins/placeholder/lang/he.js
index d2816cff..c5a44a8f 100644
--- a/plugins/placeholder/lang/he.js
+++ b/plugins/placeholder/lang/he.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/hr.js b/plugins/placeholder/lang/hr.js
index cd0c0d09..0878f5dd 100644
--- a/plugins/placeholder/lang/hr.js
+++ b/plugins/placeholder/lang/hr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/hu.js b/plugins/placeholder/lang/hu.js
index 14c800f7..899976a6 100644
--- a/plugins/placeholder/lang/hu.js
+++ b/plugins/placeholder/lang/hu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/id.js b/plugins/placeholder/lang/id.js
index e24783dd..614ff1ec 100644
--- a/plugins/placeholder/lang/id.js
+++ b/plugins/placeholder/lang/id.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/it.js b/plugins/placeholder/lang/it.js
index 1cb9a567..4e99fae7 100644
--- a/plugins/placeholder/lang/it.js
+++ b/plugins/placeholder/lang/it.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/ja.js b/plugins/placeholder/lang/ja.js
index 587c389e..3cf92066 100644
--- a/plugins/placeholder/lang/ja.js
+++ b/plugins/placeholder/lang/ja.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/km.js b/plugins/placeholder/lang/km.js
index 44476005..88a482f9 100644
--- a/plugins/placeholder/lang/km.js
+++ b/plugins/placeholder/lang/km.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/ko.js b/plugins/placeholder/lang/ko.js
index 9861223f..4874ff3d 100644
--- a/plugins/placeholder/lang/ko.js
+++ b/plugins/placeholder/lang/ko.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/ku.js b/plugins/placeholder/lang/ku.js
index 1fabfa90..0564737f 100644
--- a/plugins/placeholder/lang/ku.js
+++ b/plugins/placeholder/lang/ku.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/lv.js b/plugins/placeholder/lang/lv.js
index 089abc7e..cac4ab23 100644
--- a/plugins/placeholder/lang/lv.js
+++ b/plugins/placeholder/lang/lv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/nb.js b/plugins/placeholder/lang/nb.js
index 71d3cdb1..055133ac 100644
--- a/plugins/placeholder/lang/nb.js
+++ b/plugins/placeholder/lang/nb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/nl.js b/plugins/placeholder/lang/nl.js
index b5556019..dbe68d76 100644
--- a/plugins/placeholder/lang/nl.js
+++ b/plugins/placeholder/lang/nl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/no.js b/plugins/placeholder/lang/no.js
index ed86a9be..fe9ebbd4 100644
--- a/plugins/placeholder/lang/no.js
+++ b/plugins/placeholder/lang/no.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/oc.js b/plugins/placeholder/lang/oc.js
index 67db39bd..7420a690 100644
--- a/plugins/placeholder/lang/oc.js
+++ b/plugins/placeholder/lang/oc.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/pl.js b/plugins/placeholder/lang/pl.js
index b71fe0a4..05cd6c07 100644
--- a/plugins/placeholder/lang/pl.js
+++ b/plugins/placeholder/lang/pl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/pt-br.js b/plugins/placeholder/lang/pt-br.js
index 6b81ac46..f31a8cb2 100644
--- a/plugins/placeholder/lang/pt-br.js
+++ b/plugins/placeholder/lang/pt-br.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/pt.js b/plugins/placeholder/lang/pt.js
index ba6b1de2..44c1750d 100644
--- a/plugins/placeholder/lang/pt.js
+++ b/plugins/placeholder/lang/pt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/ro.js b/plugins/placeholder/lang/ro.js
index b47f0756..572210b4 100644
--- a/plugins/placeholder/lang/ro.js
+++ b/plugins/placeholder/lang/ro.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/ru.js b/plugins/placeholder/lang/ru.js
index e839d8e2..c25ca892 100644
--- a/plugins/placeholder/lang/ru.js
+++ b/plugins/placeholder/lang/ru.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/si.js b/plugins/placeholder/lang/si.js
index 00a80991..f34f4a73 100644
--- a/plugins/placeholder/lang/si.js
+++ b/plugins/placeholder/lang/si.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/sk.js b/plugins/placeholder/lang/sk.js
index 72e25c7f..cb6e2efe 100644
--- a/plugins/placeholder/lang/sk.js
+++ b/plugins/placeholder/lang/sk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/sl.js b/plugins/placeholder/lang/sl.js
index 3c85daf9..8f01e276 100644
--- a/plugins/placeholder/lang/sl.js
+++ b/plugins/placeholder/lang/sl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/sq.js b/plugins/placeholder/lang/sq.js
index 5f69dbc4..b3f40815 100644
--- a/plugins/placeholder/lang/sq.js
+++ b/plugins/placeholder/lang/sq.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/sr-latn.js b/plugins/placeholder/lang/sr-latn.js
index 38d4f938..2dc2f9e2 100644
--- a/plugins/placeholder/lang/sr-latn.js
+++ b/plugins/placeholder/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/sr.js b/plugins/placeholder/lang/sr.js
index ac1cca8f..8af49c81 100644
--- a/plugins/placeholder/lang/sr.js
+++ b/plugins/placeholder/lang/sr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/sv.js b/plugins/placeholder/lang/sv.js
index a5cd8106..06908766 100644
--- a/plugins/placeholder/lang/sv.js
+++ b/plugins/placeholder/lang/sv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/th.js b/plugins/placeholder/lang/th.js
index f71cc017..5c8e79d0 100644
--- a/plugins/placeholder/lang/th.js
+++ b/plugins/placeholder/lang/th.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/tr.js b/plugins/placeholder/lang/tr.js
index b3b9b8f9..42974e8d 100644
--- a/plugins/placeholder/lang/tr.js
+++ b/plugins/placeholder/lang/tr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/tt.js b/plugins/placeholder/lang/tt.js
index 1fd89d9c..115a5ddc 100644
--- a/plugins/placeholder/lang/tt.js
+++ b/plugins/placeholder/lang/tt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/ug.js b/plugins/placeholder/lang/ug.js
index 4712d9dd..e901074f 100644
--- a/plugins/placeholder/lang/ug.js
+++ b/plugins/placeholder/lang/ug.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/uk.js b/plugins/placeholder/lang/uk.js
index 5a34bd9c..8a0db038 100644
--- a/plugins/placeholder/lang/uk.js
+++ b/plugins/placeholder/lang/uk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/vi.js b/plugins/placeholder/lang/vi.js
index 162afac9..3d25cdeb 100644
--- a/plugins/placeholder/lang/vi.js
+++ b/plugins/placeholder/lang/vi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/zh-cn.js b/plugins/placeholder/lang/zh-cn.js
index bcad4d04..ab9aad61 100644
--- a/plugins/placeholder/lang/zh-cn.js
+++ b/plugins/placeholder/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/lang/zh.js b/plugins/placeholder/lang/zh.js
index b82c9190..3353d19c 100644
--- a/plugins/placeholder/lang/zh.js
+++ b/plugins/placeholder/lang/zh.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/plugin.js b/plugins/placeholder/plugin.js
index 44e8fb64..8c828c1b 100644
--- a/plugins/placeholder/plugin.js
+++ b/plugins/placeholder/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/placeholder/samples/placeholder.html b/plugins/placeholder/samples/placeholder.html
index e53e7dae..f460fe5a 100644
--- a/plugins/placeholder/samples/placeholder.html
+++ b/plugins/placeholder/samples/placeholder.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -68,7 +68,7 @@ CKEDITOR.replace( '<em>textarea_id</em>', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/popup/plugin.js b/plugins/popup/plugin.js
index 4f5ffde5..cdb7d258 100644
--- a/plugins/popup/plugin.js
+++ b/plugins/popup/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/preview/lang/af.js b/plugins/preview/lang/af.js
index 561a84a2..c37b6ddc 100644
--- a/plugins/preview/lang/af.js
+++ b/plugins/preview/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'af', {
diff --git a/plugins/preview/lang/ar.js b/plugins/preview/lang/ar.js
index 11bbe29f..cf3387cb 100644
--- a/plugins/preview/lang/ar.js
+++ b/plugins/preview/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'ar', {
diff --git a/plugins/preview/lang/az.js b/plugins/preview/lang/az.js
index 6cb1784e..42c06046 100644
--- a/plugins/preview/lang/az.js
+++ b/plugins/preview/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'az', {
diff --git a/plugins/preview/lang/bg.js b/plugins/preview/lang/bg.js
index c5782f1f..5093f5ac 100644
--- a/plugins/preview/lang/bg.js
+++ b/plugins/preview/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'bg', {
diff --git a/plugins/preview/lang/bn.js b/plugins/preview/lang/bn.js
index 1ea3319e..f85d06f9 100644
--- a/plugins/preview/lang/bn.js
+++ b/plugins/preview/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'bn', {
diff --git a/plugins/preview/lang/bs.js b/plugins/preview/lang/bs.js
index 24680733..bfb03540 100644
--- a/plugins/preview/lang/bs.js
+++ b/plugins/preview/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'bs', {
diff --git a/plugins/preview/lang/ca.js b/plugins/preview/lang/ca.js
index 7c4c58a4..5bb71011 100644
--- a/plugins/preview/lang/ca.js
+++ b/plugins/preview/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'ca', {
diff --git a/plugins/preview/lang/cs.js b/plugins/preview/lang/cs.js
index 5ee86f4d..cf0f2094 100644
--- a/plugins/preview/lang/cs.js
+++ b/plugins/preview/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'cs', {
diff --git a/plugins/preview/lang/cy.js b/plugins/preview/lang/cy.js
index 82e469bb..3aa4aa45 100644
--- a/plugins/preview/lang/cy.js
+++ b/plugins/preview/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'cy', {
diff --git a/plugins/preview/lang/da.js b/plugins/preview/lang/da.js
index c4ad14ea..b5960d61 100644
--- a/plugins/preview/lang/da.js
+++ b/plugins/preview/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'da', {
diff --git a/plugins/preview/lang/de-ch.js b/plugins/preview/lang/de-ch.js
index 79cf61cd..90463213 100644
--- a/plugins/preview/lang/de-ch.js
+++ b/plugins/preview/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'de-ch', {
diff --git a/plugins/preview/lang/de.js b/plugins/preview/lang/de.js
index a9718527..3bba5424 100644
--- a/plugins/preview/lang/de.js
+++ b/plugins/preview/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'de', {
diff --git a/plugins/preview/lang/el.js b/plugins/preview/lang/el.js
index f1dde6f0..2a563402 100644
--- a/plugins/preview/lang/el.js
+++ b/plugins/preview/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'el', {
diff --git a/plugins/preview/lang/en-au.js b/plugins/preview/lang/en-au.js
index 487db693..73795889 100644
--- a/plugins/preview/lang/en-au.js
+++ b/plugins/preview/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'en-au', {
diff --git a/plugins/preview/lang/en-ca.js b/plugins/preview/lang/en-ca.js
index d417b4bc..92151298 100644
--- a/plugins/preview/lang/en-ca.js
+++ b/plugins/preview/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'en-ca', {
diff --git a/plugins/preview/lang/en-gb.js b/plugins/preview/lang/en-gb.js
index fb8675d9..1244b75a 100644
--- a/plugins/preview/lang/en-gb.js
+++ b/plugins/preview/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'en-gb', {
diff --git a/plugins/preview/lang/en.js b/plugins/preview/lang/en.js
index c333f200..ba8a4e90 100644
--- a/plugins/preview/lang/en.js
+++ b/plugins/preview/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'en', {
diff --git a/plugins/preview/lang/eo.js b/plugins/preview/lang/eo.js
index ffe34f77..bf28547a 100644
--- a/plugins/preview/lang/eo.js
+++ b/plugins/preview/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'eo', {
diff --git a/plugins/preview/lang/es-mx.js b/plugins/preview/lang/es-mx.js
index 9f58729d..71d90a64 100644
--- a/plugins/preview/lang/es-mx.js
+++ b/plugins/preview/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'es-mx', {
diff --git a/plugins/preview/lang/es.js b/plugins/preview/lang/es.js
index 9b665f23..94eaebd6 100644
--- a/plugins/preview/lang/es.js
+++ b/plugins/preview/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'es', {
diff --git a/plugins/preview/lang/et.js b/plugins/preview/lang/et.js
index 4c6825a9..2b880cbc 100644
--- a/plugins/preview/lang/et.js
+++ b/plugins/preview/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'et', {
diff --git a/plugins/preview/lang/eu.js b/plugins/preview/lang/eu.js
index a070e994..841f0a77 100644
--- a/plugins/preview/lang/eu.js
+++ b/plugins/preview/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'eu', {
diff --git a/plugins/preview/lang/fa.js b/plugins/preview/lang/fa.js
index 435d4e64..a53eb487 100644
--- a/plugins/preview/lang/fa.js
+++ b/plugins/preview/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'fa', {
diff --git a/plugins/preview/lang/fi.js b/plugins/preview/lang/fi.js
index 1ade57ef..57f04308 100644
--- a/plugins/preview/lang/fi.js
+++ b/plugins/preview/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'fi', {
diff --git a/plugins/preview/lang/fo.js b/plugins/preview/lang/fo.js
index 7454ce91..ba6c8b3d 100644
--- a/plugins/preview/lang/fo.js
+++ b/plugins/preview/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'fo', {
diff --git a/plugins/preview/lang/fr-ca.js b/plugins/preview/lang/fr-ca.js
index c870078e..46d028b5 100644
--- a/plugins/preview/lang/fr-ca.js
+++ b/plugins/preview/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'fr-ca', {
diff --git a/plugins/preview/lang/fr.js b/plugins/preview/lang/fr.js
index c289db7e..12c7d8a5 100644
--- a/plugins/preview/lang/fr.js
+++ b/plugins/preview/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'fr', {
diff --git a/plugins/preview/lang/gl.js b/plugins/preview/lang/gl.js
index aebe349a..b21a2cdd 100644
--- a/plugins/preview/lang/gl.js
+++ b/plugins/preview/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'gl', {
diff --git a/plugins/preview/lang/gu.js b/plugins/preview/lang/gu.js
index f3ebb9a7..2f09c6ba 100644
--- a/plugins/preview/lang/gu.js
+++ b/plugins/preview/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'gu', {
diff --git a/plugins/preview/lang/he.js b/plugins/preview/lang/he.js
index 0a78f0f6..97c84184 100644
--- a/plugins/preview/lang/he.js
+++ b/plugins/preview/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'he', {
diff --git a/plugins/preview/lang/hi.js b/plugins/preview/lang/hi.js
index e3f744b6..bf86ef80 100644
--- a/plugins/preview/lang/hi.js
+++ b/plugins/preview/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'hi', {
diff --git a/plugins/preview/lang/hr.js b/plugins/preview/lang/hr.js
index bb38cef5..34e8eb5f 100644
--- a/plugins/preview/lang/hr.js
+++ b/plugins/preview/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'hr', {
diff --git a/plugins/preview/lang/hu.js b/plugins/preview/lang/hu.js
index c91defcd..c2dd4720 100644
--- a/plugins/preview/lang/hu.js
+++ b/plugins/preview/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'hu', {
diff --git a/plugins/preview/lang/id.js b/plugins/preview/lang/id.js
index 11a1d604..e160d057 100644
--- a/plugins/preview/lang/id.js
+++ b/plugins/preview/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'id', {
diff --git a/plugins/preview/lang/is.js b/plugins/preview/lang/is.js
index 949267a4..601e559a 100644
--- a/plugins/preview/lang/is.js
+++ b/plugins/preview/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'is', {
diff --git a/plugins/preview/lang/it.js b/plugins/preview/lang/it.js
index 276171e8..e33abb66 100644
--- a/plugins/preview/lang/it.js
+++ b/plugins/preview/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'it', {
diff --git a/plugins/preview/lang/ja.js b/plugins/preview/lang/ja.js
index a868b03b..1c382890 100644
--- a/plugins/preview/lang/ja.js
+++ b/plugins/preview/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'ja', {
diff --git a/plugins/preview/lang/ka.js b/plugins/preview/lang/ka.js
index 38f549e5..c2be732b 100644
--- a/plugins/preview/lang/ka.js
+++ b/plugins/preview/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'ka', {
diff --git a/plugins/preview/lang/km.js b/plugins/preview/lang/km.js
index b887a3fe..78349996 100644
--- a/plugins/preview/lang/km.js
+++ b/plugins/preview/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'km', {
diff --git a/plugins/preview/lang/ko.js b/plugins/preview/lang/ko.js
index 8ef24976..0d307b5f 100644
--- a/plugins/preview/lang/ko.js
+++ b/plugins/preview/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'ko', {
diff --git a/plugins/preview/lang/ku.js b/plugins/preview/lang/ku.js
index 20485625..b17f32e5 100644
--- a/plugins/preview/lang/ku.js
+++ b/plugins/preview/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'ku', {
diff --git a/plugins/preview/lang/lt.js b/plugins/preview/lang/lt.js
index b5314e24..60bfbb0b 100644
--- a/plugins/preview/lang/lt.js
+++ b/plugins/preview/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'lt', {
diff --git a/plugins/preview/lang/lv.js b/plugins/preview/lang/lv.js
index 4d166ae6..a76c3a08 100644
--- a/plugins/preview/lang/lv.js
+++ b/plugins/preview/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'lv', {
diff --git a/plugins/preview/lang/mk.js b/plugins/preview/lang/mk.js
index 9675df62..ed1c79fa 100644
--- a/plugins/preview/lang/mk.js
+++ b/plugins/preview/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'mk', {
diff --git a/plugins/preview/lang/mn.js b/plugins/preview/lang/mn.js
index b2d94449..d70c4ff5 100644
--- a/plugins/preview/lang/mn.js
+++ b/plugins/preview/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'mn', {
diff --git a/plugins/preview/lang/ms.js b/plugins/preview/lang/ms.js
index 1716b4cc..4c304b6e 100644
--- a/plugins/preview/lang/ms.js
+++ b/plugins/preview/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'ms', {
diff --git a/plugins/preview/lang/nb.js b/plugins/preview/lang/nb.js
index fb09b261..c3c4a7b8 100644
--- a/plugins/preview/lang/nb.js
+++ b/plugins/preview/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'nb', {
diff --git a/plugins/preview/lang/nl.js b/plugins/preview/lang/nl.js
index 2c487674..22d3c937 100644
--- a/plugins/preview/lang/nl.js
+++ b/plugins/preview/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'nl', {
diff --git a/plugins/preview/lang/no.js b/plugins/preview/lang/no.js
index e685de8e..71af23ed 100644
--- a/plugins/preview/lang/no.js
+++ b/plugins/preview/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'no', {
diff --git a/plugins/preview/lang/oc.js b/plugins/preview/lang/oc.js
index 2877a8c1..5b8296ba 100644
--- a/plugins/preview/lang/oc.js
+++ b/plugins/preview/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'oc', {
diff --git a/plugins/preview/lang/pl.js b/plugins/preview/lang/pl.js
index 18e9e7e0..30291dde 100644
--- a/plugins/preview/lang/pl.js
+++ b/plugins/preview/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'pl', {
diff --git a/plugins/preview/lang/pt-br.js b/plugins/preview/lang/pt-br.js
index 3e3f2166..acc32075 100644
--- a/plugins/preview/lang/pt-br.js
+++ b/plugins/preview/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'pt-br', {
diff --git a/plugins/preview/lang/pt.js b/plugins/preview/lang/pt.js
index 21e153da..e385ad38 100644
--- a/plugins/preview/lang/pt.js
+++ b/plugins/preview/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'pt', {
diff --git a/plugins/preview/lang/ro.js b/plugins/preview/lang/ro.js
index 57221915..b5eeed8a 100644
--- a/plugins/preview/lang/ro.js
+++ b/plugins/preview/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'ro', {
diff --git a/plugins/preview/lang/ru.js b/plugins/preview/lang/ru.js
index 750d0ddd..05efb817 100644
--- a/plugins/preview/lang/ru.js
+++ b/plugins/preview/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'ru', {
diff --git a/plugins/preview/lang/si.js b/plugins/preview/lang/si.js
index 6201c879..d9597074 100644
--- a/plugins/preview/lang/si.js
+++ b/plugins/preview/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'si', {
diff --git a/plugins/preview/lang/sk.js b/plugins/preview/lang/sk.js
index 1fdf7591..862314c7 100644
--- a/plugins/preview/lang/sk.js
+++ b/plugins/preview/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'sk', {
diff --git a/plugins/preview/lang/sl.js b/plugins/preview/lang/sl.js
index 8ea04973..d3749510 100644
--- a/plugins/preview/lang/sl.js
+++ b/plugins/preview/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'sl', {
diff --git a/plugins/preview/lang/sq.js b/plugins/preview/lang/sq.js
index 3d6ab431..7468dfa0 100644
--- a/plugins/preview/lang/sq.js
+++ b/plugins/preview/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'sq', {
diff --git a/plugins/preview/lang/sr-latn.js b/plugins/preview/lang/sr-latn.js
index 1a506a79..34b93f8f 100644
--- a/plugins/preview/lang/sr-latn.js
+++ b/plugins/preview/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'sr-latn', {
diff --git a/plugins/preview/lang/sr.js b/plugins/preview/lang/sr.js
index 453133da..dc28253b 100644
--- a/plugins/preview/lang/sr.js
+++ b/plugins/preview/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'sr', {
diff --git a/plugins/preview/lang/sv.js b/plugins/preview/lang/sv.js
index 16aadf20..e4e13597 100644
--- a/plugins/preview/lang/sv.js
+++ b/plugins/preview/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'sv', {
diff --git a/plugins/preview/lang/th.js b/plugins/preview/lang/th.js
index 32d0ab9c..5ee75828 100644
--- a/plugins/preview/lang/th.js
+++ b/plugins/preview/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'th', {
diff --git a/plugins/preview/lang/tr.js b/plugins/preview/lang/tr.js
index 020c03fd..093d6189 100644
--- a/plugins/preview/lang/tr.js
+++ b/plugins/preview/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'tr', {
diff --git a/plugins/preview/lang/tt.js b/plugins/preview/lang/tt.js
index 8aa69679..9078cc08 100644
--- a/plugins/preview/lang/tt.js
+++ b/plugins/preview/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'tt', {
diff --git a/plugins/preview/lang/ug.js b/plugins/preview/lang/ug.js
index 34ea4fa2..4b1414c6 100644
--- a/plugins/preview/lang/ug.js
+++ b/plugins/preview/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'ug', {
diff --git a/plugins/preview/lang/uk.js b/plugins/preview/lang/uk.js
index e178aae0..9ebd06ab 100644
--- a/plugins/preview/lang/uk.js
+++ b/plugins/preview/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'uk', {
diff --git a/plugins/preview/lang/vi.js b/plugins/preview/lang/vi.js
index 5aea9893..fd279aae 100644
--- a/plugins/preview/lang/vi.js
+++ b/plugins/preview/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'vi', {
diff --git a/plugins/preview/lang/zh-cn.js b/plugins/preview/lang/zh-cn.js
index fd95b4d3..a55cb0f5 100644
--- a/plugins/preview/lang/zh-cn.js
+++ b/plugins/preview/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'zh-cn', {
diff --git a/plugins/preview/lang/zh.js b/plugins/preview/lang/zh.js
index 0959e4cc..6d6ccd6c 100644
--- a/plugins/preview/lang/zh.js
+++ b/plugins/preview/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'preview', 'zh', {
diff --git a/plugins/preview/plugin.js b/plugins/preview/plugin.js
index 4785d132..86ae33ce 100644
--- a/plugins/preview/plugin.js
+++ b/plugins/preview/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/print/lang/af.js b/plugins/print/lang/af.js
index c9d8ae4b..e6104c89 100644
--- a/plugins/print/lang/af.js
+++ b/plugins/print/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'af', {
diff --git a/plugins/print/lang/ar.js b/plugins/print/lang/ar.js
index 03c08141..11a14cf9 100644
--- a/plugins/print/lang/ar.js
+++ b/plugins/print/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'ar', {
diff --git a/plugins/print/lang/az.js b/plugins/print/lang/az.js
index 861ce723..6b19a07b 100644
--- a/plugins/print/lang/az.js
+++ b/plugins/print/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'az', {
diff --git a/plugins/print/lang/bg.js b/plugins/print/lang/bg.js
index 35a02e91..5e403778 100644
--- a/plugins/print/lang/bg.js
+++ b/plugins/print/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'bg', {
diff --git a/plugins/print/lang/bn.js b/plugins/print/lang/bn.js
index 30825f6a..859ee275 100644
--- a/plugins/print/lang/bn.js
+++ b/plugins/print/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'bn', {
diff --git a/plugins/print/lang/bs.js b/plugins/print/lang/bs.js
index 729182d7..b6a2bd98 100644
--- a/plugins/print/lang/bs.js
+++ b/plugins/print/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'bs', {
diff --git a/plugins/print/lang/ca.js b/plugins/print/lang/ca.js
index f3128c74..b3a010f9 100644
--- a/plugins/print/lang/ca.js
+++ b/plugins/print/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'ca', {
diff --git a/plugins/print/lang/cs.js b/plugins/print/lang/cs.js
index 963b39b5..00294f77 100644
--- a/plugins/print/lang/cs.js
+++ b/plugins/print/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'cs', {
diff --git a/plugins/print/lang/cy.js b/plugins/print/lang/cy.js
index 48c57ae4..1f0989d5 100644
--- a/plugins/print/lang/cy.js
+++ b/plugins/print/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'cy', {
diff --git a/plugins/print/lang/da.js b/plugins/print/lang/da.js
index 7f627bf6..ad397b43 100644
--- a/plugins/print/lang/da.js
+++ b/plugins/print/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'da', {
diff --git a/plugins/print/lang/de-ch.js b/plugins/print/lang/de-ch.js
index 469a5722..4595b844 100644
--- a/plugins/print/lang/de-ch.js
+++ b/plugins/print/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'de-ch', {
diff --git a/plugins/print/lang/de.js b/plugins/print/lang/de.js
index 3eb353fc..c5a5bc33 100644
--- a/plugins/print/lang/de.js
+++ b/plugins/print/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'de', {
diff --git a/plugins/print/lang/el.js b/plugins/print/lang/el.js
index ea1cd1ba..25cfee88 100644
--- a/plugins/print/lang/el.js
+++ b/plugins/print/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'el', {
diff --git a/plugins/print/lang/en-au.js b/plugins/print/lang/en-au.js
index da4d2cb5..01dadb72 100644
--- a/plugins/print/lang/en-au.js
+++ b/plugins/print/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'en-au', {
diff --git a/plugins/print/lang/en-ca.js b/plugins/print/lang/en-ca.js
index 1dadbe6d..3b9a367a 100644
--- a/plugins/print/lang/en-ca.js
+++ b/plugins/print/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'en-ca', {
diff --git a/plugins/print/lang/en-gb.js b/plugins/print/lang/en-gb.js
index 195de044..193f84e8 100644
--- a/plugins/print/lang/en-gb.js
+++ b/plugins/print/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'en-gb', {
diff --git a/plugins/print/lang/en.js b/plugins/print/lang/en.js
index 5a5f3ed7..7ec88647 100644
--- a/plugins/print/lang/en.js
+++ b/plugins/print/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'en', {
diff --git a/plugins/print/lang/eo.js b/plugins/print/lang/eo.js
index f3d5be4d..352b1039 100644
--- a/plugins/print/lang/eo.js
+++ b/plugins/print/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'eo', {
diff --git a/plugins/print/lang/es-mx.js b/plugins/print/lang/es-mx.js
index f56e3111..6fbf04fe 100644
--- a/plugins/print/lang/es-mx.js
+++ b/plugins/print/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'es-mx', {
diff --git a/plugins/print/lang/es.js b/plugins/print/lang/es.js
index dc109e2f..963849ae 100644
--- a/plugins/print/lang/es.js
+++ b/plugins/print/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'es', {
diff --git a/plugins/print/lang/et.js b/plugins/print/lang/et.js
index ab51cd45..3174c298 100644
--- a/plugins/print/lang/et.js
+++ b/plugins/print/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'et', {
diff --git a/plugins/print/lang/eu.js b/plugins/print/lang/eu.js
index 32606b4e..5d673c01 100644
--- a/plugins/print/lang/eu.js
+++ b/plugins/print/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'eu', {
diff --git a/plugins/print/lang/fa.js b/plugins/print/lang/fa.js
index 70084064..943aca70 100644
--- a/plugins/print/lang/fa.js
+++ b/plugins/print/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'fa', {
diff --git a/plugins/print/lang/fi.js b/plugins/print/lang/fi.js
index 7493bb95..6a6c8e13 100644
--- a/plugins/print/lang/fi.js
+++ b/plugins/print/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'fi', {
diff --git a/plugins/print/lang/fo.js b/plugins/print/lang/fo.js
index a335d103..0e94d428 100644
--- a/plugins/print/lang/fo.js
+++ b/plugins/print/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'fo', {
diff --git a/plugins/print/lang/fr-ca.js b/plugins/print/lang/fr-ca.js
index 25b22393..32aae1b6 100644
--- a/plugins/print/lang/fr-ca.js
+++ b/plugins/print/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'fr-ca', {
diff --git a/plugins/print/lang/fr.js b/plugins/print/lang/fr.js
index 36ed3244..ba86dbe7 100644
--- a/plugins/print/lang/fr.js
+++ b/plugins/print/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'fr', {
diff --git a/plugins/print/lang/gl.js b/plugins/print/lang/gl.js
index bc3dc1f6..74df5097 100644
--- a/plugins/print/lang/gl.js
+++ b/plugins/print/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'gl', {
diff --git a/plugins/print/lang/gu.js b/plugins/print/lang/gu.js
index 457405df..d58b6372 100644
--- a/plugins/print/lang/gu.js
+++ b/plugins/print/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'gu', {
diff --git a/plugins/print/lang/he.js b/plugins/print/lang/he.js
index ac0d3c1c..972b9fd6 100644
--- a/plugins/print/lang/he.js
+++ b/plugins/print/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'he', {
diff --git a/plugins/print/lang/hi.js b/plugins/print/lang/hi.js
index cfe4ef0d..4ac9be1e 100644
--- a/plugins/print/lang/hi.js
+++ b/plugins/print/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'hi', {
diff --git a/plugins/print/lang/hr.js b/plugins/print/lang/hr.js
index 14372298..41e6f64f 100644
--- a/plugins/print/lang/hr.js
+++ b/plugins/print/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'hr', {
diff --git a/plugins/print/lang/hu.js b/plugins/print/lang/hu.js
index 31424522..39541ffc 100644
--- a/plugins/print/lang/hu.js
+++ b/plugins/print/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'hu', {
diff --git a/plugins/print/lang/id.js b/plugins/print/lang/id.js
index f4f7e5cc..a81454dd 100644
--- a/plugins/print/lang/id.js
+++ b/plugins/print/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'id', {
diff --git a/plugins/print/lang/is.js b/plugins/print/lang/is.js
index 26a89bb5..758af4f5 100644
--- a/plugins/print/lang/is.js
+++ b/plugins/print/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'is', {
diff --git a/plugins/print/lang/it.js b/plugins/print/lang/it.js
index 22d248c2..cfd6cdbf 100644
--- a/plugins/print/lang/it.js
+++ b/plugins/print/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'it', {
diff --git a/plugins/print/lang/ja.js b/plugins/print/lang/ja.js
index fec7c268..43b08f51 100644
--- a/plugins/print/lang/ja.js
+++ b/plugins/print/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'ja', {
diff --git a/plugins/print/lang/ka.js b/plugins/print/lang/ka.js
index 494298db..041dbda2 100644
--- a/plugins/print/lang/ka.js
+++ b/plugins/print/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'ka', {
diff --git a/plugins/print/lang/km.js b/plugins/print/lang/km.js
index c7ce0ca6..a8c122fe 100644
--- a/plugins/print/lang/km.js
+++ b/plugins/print/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'km', {
diff --git a/plugins/print/lang/ko.js b/plugins/print/lang/ko.js
index f6b1f351..f5b2c14d 100644
--- a/plugins/print/lang/ko.js
+++ b/plugins/print/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'ko', {
diff --git a/plugins/print/lang/ku.js b/plugins/print/lang/ku.js
index 86c968ef..7ff34a68 100644
--- a/plugins/print/lang/ku.js
+++ b/plugins/print/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'ku', {
diff --git a/plugins/print/lang/lt.js b/plugins/print/lang/lt.js
index e07b3eab..fc7a0fa7 100644
--- a/plugins/print/lang/lt.js
+++ b/plugins/print/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'lt', {
diff --git a/plugins/print/lang/lv.js b/plugins/print/lang/lv.js
index 112b08b1..63ec0437 100644
--- a/plugins/print/lang/lv.js
+++ b/plugins/print/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'lv', {
diff --git a/plugins/print/lang/mk.js b/plugins/print/lang/mk.js
index e0669988..386decc0 100644
--- a/plugins/print/lang/mk.js
+++ b/plugins/print/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'mk', {
diff --git a/plugins/print/lang/mn.js b/plugins/print/lang/mn.js
index 8df8444a..3d09e8b3 100644
--- a/plugins/print/lang/mn.js
+++ b/plugins/print/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'mn', {
diff --git a/plugins/print/lang/ms.js b/plugins/print/lang/ms.js
index f1a1e2e5..21500152 100644
--- a/plugins/print/lang/ms.js
+++ b/plugins/print/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'ms', {
diff --git a/plugins/print/lang/nb.js b/plugins/print/lang/nb.js
index 0847fbc5..ad7fa576 100644
--- a/plugins/print/lang/nb.js
+++ b/plugins/print/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'nb', {
diff --git a/plugins/print/lang/nl.js b/plugins/print/lang/nl.js
index 565e9a22..2e11e8f3 100644
--- a/plugins/print/lang/nl.js
+++ b/plugins/print/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'nl', {
diff --git a/plugins/print/lang/no.js b/plugins/print/lang/no.js
index fc79f34c..2bdbbb07 100644
--- a/plugins/print/lang/no.js
+++ b/plugins/print/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'no', {
diff --git a/plugins/print/lang/oc.js b/plugins/print/lang/oc.js
index 85d5ae5c..be76ecb1 100644
--- a/plugins/print/lang/oc.js
+++ b/plugins/print/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'oc', {
diff --git a/plugins/print/lang/pl.js b/plugins/print/lang/pl.js
index 39d1be78..cccc1a09 100644
--- a/plugins/print/lang/pl.js
+++ b/plugins/print/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'pl', {
diff --git a/plugins/print/lang/pt-br.js b/plugins/print/lang/pt-br.js
index eb77aa88..e1eddcba 100644
--- a/plugins/print/lang/pt-br.js
+++ b/plugins/print/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'pt-br', {
diff --git a/plugins/print/lang/pt.js b/plugins/print/lang/pt.js
index 77450998..c0c72d7f 100644
--- a/plugins/print/lang/pt.js
+++ b/plugins/print/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'pt', {
diff --git a/plugins/print/lang/ro.js b/plugins/print/lang/ro.js
index 38b7a698..04aeb3cd 100644
--- a/plugins/print/lang/ro.js
+++ b/plugins/print/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'ro', {
diff --git a/plugins/print/lang/ru.js b/plugins/print/lang/ru.js
index c57c363c..d348c746 100644
--- a/plugins/print/lang/ru.js
+++ b/plugins/print/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'ru', {
diff --git a/plugins/print/lang/si.js b/plugins/print/lang/si.js
index 51f2cdd8..11fd5ad0 100644
--- a/plugins/print/lang/si.js
+++ b/plugins/print/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'si', {
diff --git a/plugins/print/lang/sk.js b/plugins/print/lang/sk.js
index f68c5c22..d69bcc4b 100644
--- a/plugins/print/lang/sk.js
+++ b/plugins/print/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'sk', {
diff --git a/plugins/print/lang/sl.js b/plugins/print/lang/sl.js
index 562bba0a..a7cba85a 100644
--- a/plugins/print/lang/sl.js
+++ b/plugins/print/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'sl', {
diff --git a/plugins/print/lang/sq.js b/plugins/print/lang/sq.js
index 96933f1e..cd68c2a7 100644
--- a/plugins/print/lang/sq.js
+++ b/plugins/print/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'sq', {
diff --git a/plugins/print/lang/sr-latn.js b/plugins/print/lang/sr-latn.js
index 2d3b4dca..f9cd75a7 100644
--- a/plugins/print/lang/sr-latn.js
+++ b/plugins/print/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'sr-latn', {
diff --git a/plugins/print/lang/sr.js b/plugins/print/lang/sr.js
index 499b4a80..68c98584 100644
--- a/plugins/print/lang/sr.js
+++ b/plugins/print/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'sr', {
diff --git a/plugins/print/lang/sv.js b/plugins/print/lang/sv.js
index 29824beb..fc5ba0b2 100644
--- a/plugins/print/lang/sv.js
+++ b/plugins/print/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'sv', {
diff --git a/plugins/print/lang/th.js b/plugins/print/lang/th.js
index d716422d..e1073798 100644
--- a/plugins/print/lang/th.js
+++ b/plugins/print/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'th', {
diff --git a/plugins/print/lang/tr.js b/plugins/print/lang/tr.js
index dd2abddd..487e93bd 100644
--- a/plugins/print/lang/tr.js
+++ b/plugins/print/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'tr', {
diff --git a/plugins/print/lang/tt.js b/plugins/print/lang/tt.js
index 1876ba2c..e718dfa7 100644
--- a/plugins/print/lang/tt.js
+++ b/plugins/print/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'tt', {
diff --git a/plugins/print/lang/ug.js b/plugins/print/lang/ug.js
index 5dea5cfa..40d3bfec 100644
--- a/plugins/print/lang/ug.js
+++ b/plugins/print/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'ug', {
diff --git a/plugins/print/lang/uk.js b/plugins/print/lang/uk.js
index 54bd2ef4..7f261f13 100644
--- a/plugins/print/lang/uk.js
+++ b/plugins/print/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'uk', {
diff --git a/plugins/print/lang/vi.js b/plugins/print/lang/vi.js
index c9634a77..a94c6ff3 100644
--- a/plugins/print/lang/vi.js
+++ b/plugins/print/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'vi', {
diff --git a/plugins/print/lang/zh-cn.js b/plugins/print/lang/zh-cn.js
index da3b3b60..4bbe6525 100644
--- a/plugins/print/lang/zh-cn.js
+++ b/plugins/print/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'zh-cn', {
diff --git a/plugins/print/lang/zh.js b/plugins/print/lang/zh.js
index 56b8c6da..8f2e69af 100644
--- a/plugins/print/lang/zh.js
+++ b/plugins/print/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'print', 'zh', {
diff --git a/plugins/print/plugin.js b/plugins/print/plugin.js
index 9fa20eec..1acedc42 100644
--- a/plugins/print/plugin.js
+++ b/plugins/print/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/removeformat/lang/af.js b/plugins/removeformat/lang/af.js
index a5acaff4..d57c4cda 100644
--- a/plugins/removeformat/lang/af.js
+++ b/plugins/removeformat/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'af', {
diff --git a/plugins/removeformat/lang/ar.js b/plugins/removeformat/lang/ar.js
index e5c9cb97..c5e6bc26 100644
--- a/plugins/removeformat/lang/ar.js
+++ b/plugins/removeformat/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'ar', {
diff --git a/plugins/removeformat/lang/az.js b/plugins/removeformat/lang/az.js
index 8d78d19e..66eb84e1 100644
--- a/plugins/removeformat/lang/az.js
+++ b/plugins/removeformat/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'az', {
diff --git a/plugins/removeformat/lang/bg.js b/plugins/removeformat/lang/bg.js
index 65663798..1d8ec18b 100644
--- a/plugins/removeformat/lang/bg.js
+++ b/plugins/removeformat/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'bg', {
diff --git a/plugins/removeformat/lang/bn.js b/plugins/removeformat/lang/bn.js
index 9364f128..4f1e2db5 100644
--- a/plugins/removeformat/lang/bn.js
+++ b/plugins/removeformat/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'bn', {
diff --git a/plugins/removeformat/lang/bs.js b/plugins/removeformat/lang/bs.js
index 7e6d0212..da04aebd 100644
--- a/plugins/removeformat/lang/bs.js
+++ b/plugins/removeformat/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'bs', {
diff --git a/plugins/removeformat/lang/ca.js b/plugins/removeformat/lang/ca.js
index 498140a2..4009641d 100644
--- a/plugins/removeformat/lang/ca.js
+++ b/plugins/removeformat/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'ca', {
diff --git a/plugins/removeformat/lang/cs.js b/plugins/removeformat/lang/cs.js
index ab82efdf..0b1a28ce 100644
--- a/plugins/removeformat/lang/cs.js
+++ b/plugins/removeformat/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'cs', {
diff --git a/plugins/removeformat/lang/cy.js b/plugins/removeformat/lang/cy.js
index 2a2fa1c3..50bb3830 100644
--- a/plugins/removeformat/lang/cy.js
+++ b/plugins/removeformat/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'cy', {
diff --git a/plugins/removeformat/lang/da.js b/plugins/removeformat/lang/da.js
index fe7a74e3..b277096d 100644
--- a/plugins/removeformat/lang/da.js
+++ b/plugins/removeformat/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'da', {
diff --git a/plugins/removeformat/lang/de-ch.js b/plugins/removeformat/lang/de-ch.js
index bb523422..97afcd9c 100644
--- a/plugins/removeformat/lang/de-ch.js
+++ b/plugins/removeformat/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'de-ch', {
diff --git a/plugins/removeformat/lang/de.js b/plugins/removeformat/lang/de.js
index 2b3589dc..b9f44df8 100644
--- a/plugins/removeformat/lang/de.js
+++ b/plugins/removeformat/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'de', {
diff --git a/plugins/removeformat/lang/el.js b/plugins/removeformat/lang/el.js
index 52eac266..5a9fa51c 100644
--- a/plugins/removeformat/lang/el.js
+++ b/plugins/removeformat/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'el', {
diff --git a/plugins/removeformat/lang/en-au.js b/plugins/removeformat/lang/en-au.js
index 53741741..d0a4566e 100644
--- a/plugins/removeformat/lang/en-au.js
+++ b/plugins/removeformat/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'en-au', {
diff --git a/plugins/removeformat/lang/en-ca.js b/plugins/removeformat/lang/en-ca.js
index 43c3e8e0..8ce2a54d 100644
--- a/plugins/removeformat/lang/en-ca.js
+++ b/plugins/removeformat/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'en-ca', {
diff --git a/plugins/removeformat/lang/en-gb.js b/plugins/removeformat/lang/en-gb.js
index c0409d77..7df24fe7 100644
--- a/plugins/removeformat/lang/en-gb.js
+++ b/plugins/removeformat/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'en-gb', {
diff --git a/plugins/removeformat/lang/en.js b/plugins/removeformat/lang/en.js
index 15b7f1ea..366cff36 100644
--- a/plugins/removeformat/lang/en.js
+++ b/plugins/removeformat/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'en', {
diff --git a/plugins/removeformat/lang/eo.js b/plugins/removeformat/lang/eo.js
index d0daefdf..80568e75 100644
--- a/plugins/removeformat/lang/eo.js
+++ b/plugins/removeformat/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'eo', {
diff --git a/plugins/removeformat/lang/es-mx.js b/plugins/removeformat/lang/es-mx.js
index 3a3d7e11..83fc00fd 100644
--- a/plugins/removeformat/lang/es-mx.js
+++ b/plugins/removeformat/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'es-mx', {
diff --git a/plugins/removeformat/lang/es.js b/plugins/removeformat/lang/es.js
index ee2e23b8..833ee855 100644
--- a/plugins/removeformat/lang/es.js
+++ b/plugins/removeformat/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'es', {
diff --git a/plugins/removeformat/lang/et.js b/plugins/removeformat/lang/et.js
index cc67efd3..1a0a760b 100644
--- a/plugins/removeformat/lang/et.js
+++ b/plugins/removeformat/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'et', {
diff --git a/plugins/removeformat/lang/eu.js b/plugins/removeformat/lang/eu.js
index 12341c7e..630a2bae 100644
--- a/plugins/removeformat/lang/eu.js
+++ b/plugins/removeformat/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'eu', {
diff --git a/plugins/removeformat/lang/fa.js b/plugins/removeformat/lang/fa.js
index 05ddc7b6..83e73cf0 100644
--- a/plugins/removeformat/lang/fa.js
+++ b/plugins/removeformat/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'fa', {
diff --git a/plugins/removeformat/lang/fi.js b/plugins/removeformat/lang/fi.js
index f18ecde7..6e82f7bd 100644
--- a/plugins/removeformat/lang/fi.js
+++ b/plugins/removeformat/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'fi', {
diff --git a/plugins/removeformat/lang/fo.js b/plugins/removeformat/lang/fo.js
index 5ccd596f..3ee5c9e1 100644
--- a/plugins/removeformat/lang/fo.js
+++ b/plugins/removeformat/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'fo', {
diff --git a/plugins/removeformat/lang/fr-ca.js b/plugins/removeformat/lang/fr-ca.js
index a101d5b9..96e0284a 100644
--- a/plugins/removeformat/lang/fr-ca.js
+++ b/plugins/removeformat/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'fr-ca', {
diff --git a/plugins/removeformat/lang/fr.js b/plugins/removeformat/lang/fr.js
index 5b9cc805..2f79bb5a 100644
--- a/plugins/removeformat/lang/fr.js
+++ b/plugins/removeformat/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'fr', {
diff --git a/plugins/removeformat/lang/gl.js b/plugins/removeformat/lang/gl.js
index 8e1141eb..e84215cd 100644
--- a/plugins/removeformat/lang/gl.js
+++ b/plugins/removeformat/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'gl', {
diff --git a/plugins/removeformat/lang/gu.js b/plugins/removeformat/lang/gu.js
index 515531e0..4210f01b 100644
--- a/plugins/removeformat/lang/gu.js
+++ b/plugins/removeformat/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'gu', {
diff --git a/plugins/removeformat/lang/he.js b/plugins/removeformat/lang/he.js
index b127d00f..364490af 100644
--- a/plugins/removeformat/lang/he.js
+++ b/plugins/removeformat/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'he', {
diff --git a/plugins/removeformat/lang/hi.js b/plugins/removeformat/lang/hi.js
index a27b320f..1cedbe66 100644
--- a/plugins/removeformat/lang/hi.js
+++ b/plugins/removeformat/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'hi', {
diff --git a/plugins/removeformat/lang/hr.js b/plugins/removeformat/lang/hr.js
index a62a501a..8f8b9e60 100644
--- a/plugins/removeformat/lang/hr.js
+++ b/plugins/removeformat/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'hr', {
diff --git a/plugins/removeformat/lang/hu.js b/plugins/removeformat/lang/hu.js
index 39e6ce51..1bae4749 100644
--- a/plugins/removeformat/lang/hu.js
+++ b/plugins/removeformat/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'hu', {
diff --git a/plugins/removeformat/lang/id.js b/plugins/removeformat/lang/id.js
index d1628836..8f913f66 100644
--- a/plugins/removeformat/lang/id.js
+++ b/plugins/removeformat/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'id', {
diff --git a/plugins/removeformat/lang/is.js b/plugins/removeformat/lang/is.js
index a96b1a4b..40ed9cbd 100644
--- a/plugins/removeformat/lang/is.js
+++ b/plugins/removeformat/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'is', {
diff --git a/plugins/removeformat/lang/it.js b/plugins/removeformat/lang/it.js
index 29179ecf..bfa1f8c9 100644
--- a/plugins/removeformat/lang/it.js
+++ b/plugins/removeformat/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'it', {
diff --git a/plugins/removeformat/lang/ja.js b/plugins/removeformat/lang/ja.js
index 8fc94765..cacf4f61 100644
--- a/plugins/removeformat/lang/ja.js
+++ b/plugins/removeformat/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'ja', {
diff --git a/plugins/removeformat/lang/ka.js b/plugins/removeformat/lang/ka.js
index c1fd841e..712c2b58 100644
--- a/plugins/removeformat/lang/ka.js
+++ b/plugins/removeformat/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'ka', {
diff --git a/plugins/removeformat/lang/km.js b/plugins/removeformat/lang/km.js
index b8d35f2b..f4d8c2c7 100644
--- a/plugins/removeformat/lang/km.js
+++ b/plugins/removeformat/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'km', {
diff --git a/plugins/removeformat/lang/ko.js b/plugins/removeformat/lang/ko.js
index 2c744246..ef32aeb2 100644
--- a/plugins/removeformat/lang/ko.js
+++ b/plugins/removeformat/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'ko', {
diff --git a/plugins/removeformat/lang/ku.js b/plugins/removeformat/lang/ku.js
index 68b5ba8b..a55a9cf7 100644
--- a/plugins/removeformat/lang/ku.js
+++ b/plugins/removeformat/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'ku', {
diff --git a/plugins/removeformat/lang/lt.js b/plugins/removeformat/lang/lt.js
index 98a17a93..e5379657 100644
--- a/plugins/removeformat/lang/lt.js
+++ b/plugins/removeformat/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'lt', {
diff --git a/plugins/removeformat/lang/lv.js b/plugins/removeformat/lang/lv.js
index ca23d6fd..3836effd 100644
--- a/plugins/removeformat/lang/lv.js
+++ b/plugins/removeformat/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'lv', {
diff --git a/plugins/removeformat/lang/mk.js b/plugins/removeformat/lang/mk.js
index 39e85e33..38d003bc 100644
--- a/plugins/removeformat/lang/mk.js
+++ b/plugins/removeformat/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'mk', {
diff --git a/plugins/removeformat/lang/mn.js b/plugins/removeformat/lang/mn.js
index fb36b3d9..ac122a51 100644
--- a/plugins/removeformat/lang/mn.js
+++ b/plugins/removeformat/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'mn', {
diff --git a/plugins/removeformat/lang/ms.js b/plugins/removeformat/lang/ms.js
index 29a585e4..c58d1598 100644
--- a/plugins/removeformat/lang/ms.js
+++ b/plugins/removeformat/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'ms', {
diff --git a/plugins/removeformat/lang/nb.js b/plugins/removeformat/lang/nb.js
index 3999fd49..0e7156a9 100644
--- a/plugins/removeformat/lang/nb.js
+++ b/plugins/removeformat/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'nb', {
diff --git a/plugins/removeformat/lang/nl.js b/plugins/removeformat/lang/nl.js
index 469567fb..212fcfdf 100644
--- a/plugins/removeformat/lang/nl.js
+++ b/plugins/removeformat/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'nl', {
diff --git a/plugins/removeformat/lang/no.js b/plugins/removeformat/lang/no.js
index cad87869..286eb9d6 100644
--- a/plugins/removeformat/lang/no.js
+++ b/plugins/removeformat/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'no', {
diff --git a/plugins/removeformat/lang/oc.js b/plugins/removeformat/lang/oc.js
index d71b53b3..604442c6 100644
--- a/plugins/removeformat/lang/oc.js
+++ b/plugins/removeformat/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'oc', {
diff --git a/plugins/removeformat/lang/pl.js b/plugins/removeformat/lang/pl.js
index 77b4277d..6a6e0379 100644
--- a/plugins/removeformat/lang/pl.js
+++ b/plugins/removeformat/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'pl', {
diff --git a/plugins/removeformat/lang/pt-br.js b/plugins/removeformat/lang/pt-br.js
index a1c25c61..727a79da 100644
--- a/plugins/removeformat/lang/pt-br.js
+++ b/plugins/removeformat/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'pt-br', {
diff --git a/plugins/removeformat/lang/pt.js b/plugins/removeformat/lang/pt.js
index 6230ccdc..dcfbe1d4 100644
--- a/plugins/removeformat/lang/pt.js
+++ b/plugins/removeformat/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'pt', {
diff --git a/plugins/removeformat/lang/ro.js b/plugins/removeformat/lang/ro.js
index 4b5d9f5a..29b3e876 100644
--- a/plugins/removeformat/lang/ro.js
+++ b/plugins/removeformat/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'ro', {
diff --git a/plugins/removeformat/lang/ru.js b/plugins/removeformat/lang/ru.js
index b5cc1b43..76236697 100644
--- a/plugins/removeformat/lang/ru.js
+++ b/plugins/removeformat/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'ru', {
diff --git a/plugins/removeformat/lang/si.js b/plugins/removeformat/lang/si.js
index 246cab5d..b9676d08 100644
--- a/plugins/removeformat/lang/si.js
+++ b/plugins/removeformat/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'si', {
diff --git a/plugins/removeformat/lang/sk.js b/plugins/removeformat/lang/sk.js
index 6ddfbd2c..3a31c3b2 100644
--- a/plugins/removeformat/lang/sk.js
+++ b/plugins/removeformat/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'sk', {
diff --git a/plugins/removeformat/lang/sl.js b/plugins/removeformat/lang/sl.js
index 33471f96..e384003f 100644
--- a/plugins/removeformat/lang/sl.js
+++ b/plugins/removeformat/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'sl', {
diff --git a/plugins/removeformat/lang/sq.js b/plugins/removeformat/lang/sq.js
index 1af941ce..a320e88d 100644
--- a/plugins/removeformat/lang/sq.js
+++ b/plugins/removeformat/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'sq', {
diff --git a/plugins/removeformat/lang/sr-latn.js b/plugins/removeformat/lang/sr-latn.js
index 1ebf6a4d..baaa3e4f 100644
--- a/plugins/removeformat/lang/sr-latn.js
+++ b/plugins/removeformat/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'sr-latn', {
diff --git a/plugins/removeformat/lang/sr.js b/plugins/removeformat/lang/sr.js
index 28619c80..3bb181e7 100644
--- a/plugins/removeformat/lang/sr.js
+++ b/plugins/removeformat/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'sr', {
diff --git a/plugins/removeformat/lang/sv.js b/plugins/removeformat/lang/sv.js
index 4663b82b..31cd995c 100644
--- a/plugins/removeformat/lang/sv.js
+++ b/plugins/removeformat/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'sv', {
diff --git a/plugins/removeformat/lang/th.js b/plugins/removeformat/lang/th.js
index 20ff4aec..4ddbc271 100644
--- a/plugins/removeformat/lang/th.js
+++ b/plugins/removeformat/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'th', {
diff --git a/plugins/removeformat/lang/tr.js b/plugins/removeformat/lang/tr.js
index de22cb5e..42a45ca6 100644
--- a/plugins/removeformat/lang/tr.js
+++ b/plugins/removeformat/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'tr', {
diff --git a/plugins/removeformat/lang/tt.js b/plugins/removeformat/lang/tt.js
index 0c21d27f..2407a391 100644
--- a/plugins/removeformat/lang/tt.js
+++ b/plugins/removeformat/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'tt', {
diff --git a/plugins/removeformat/lang/ug.js b/plugins/removeformat/lang/ug.js
index 4a610589..7152354f 100644
--- a/plugins/removeformat/lang/ug.js
+++ b/plugins/removeformat/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'ug', {
diff --git a/plugins/removeformat/lang/uk.js b/plugins/removeformat/lang/uk.js
index c99ad0da..3902079f 100644
--- a/plugins/removeformat/lang/uk.js
+++ b/plugins/removeformat/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'uk', {
diff --git a/plugins/removeformat/lang/vi.js b/plugins/removeformat/lang/vi.js
index 035ce52c..28e4e111 100644
--- a/plugins/removeformat/lang/vi.js
+++ b/plugins/removeformat/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'vi', {
diff --git a/plugins/removeformat/lang/zh-cn.js b/plugins/removeformat/lang/zh-cn.js
index a763e2d5..88eb9ead 100644
--- a/plugins/removeformat/lang/zh-cn.js
+++ b/plugins/removeformat/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'zh-cn', {
diff --git a/plugins/removeformat/lang/zh.js b/plugins/removeformat/lang/zh.js
index 59782217..3b3ca941 100644
--- a/plugins/removeformat/lang/zh.js
+++ b/plugins/removeformat/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'removeformat', 'zh', {
diff --git a/plugins/removeformat/plugin.js b/plugins/removeformat/plugin.js
index 0409aea2..cb626f0e 100644
--- a/plugins/removeformat/plugin.js
+++ b/plugins/removeformat/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/resize/plugin.js b/plugins/resize/plugin.js
index f70b80f0..afba417a 100644
--- a/plugins/resize/plugin.js
+++ b/plugins/resize/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/richcombo/plugin.js b/plugins/richcombo/plugin.js
index 0ce4d653..49d4a995 100644
--- a/plugins/richcombo/plugin.js
+++ b/plugins/richcombo/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/save/lang/af.js b/plugins/save/lang/af.js
index 1424aa18..24e1ceab 100644
--- a/plugins/save/lang/af.js
+++ b/plugins/save/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'af', {
diff --git a/plugins/save/lang/ar.js b/plugins/save/lang/ar.js
index 06aafa38..c46aba4b 100644
--- a/plugins/save/lang/ar.js
+++ b/plugins/save/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'ar', {
diff --git a/plugins/save/lang/az.js b/plugins/save/lang/az.js
index db70558b..d6c8dae0 100644
--- a/plugins/save/lang/az.js
+++ b/plugins/save/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'az', {
diff --git a/plugins/save/lang/bg.js b/plugins/save/lang/bg.js
index 5ee43164..736d08ae 100644
--- a/plugins/save/lang/bg.js
+++ b/plugins/save/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'bg', {
diff --git a/plugins/save/lang/bn.js b/plugins/save/lang/bn.js
index d572735d..abd63650 100644
--- a/plugins/save/lang/bn.js
+++ b/plugins/save/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'bn', {
diff --git a/plugins/save/lang/bs.js b/plugins/save/lang/bs.js
index 0720aad4..a9f3ac52 100644
--- a/plugins/save/lang/bs.js
+++ b/plugins/save/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'bs', {
diff --git a/plugins/save/lang/ca.js b/plugins/save/lang/ca.js
index e158d650..8dc998a9 100644
--- a/plugins/save/lang/ca.js
+++ b/plugins/save/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'ca', {
diff --git a/plugins/save/lang/cs.js b/plugins/save/lang/cs.js
index 1cba0467..679ac8ed 100644
--- a/plugins/save/lang/cs.js
+++ b/plugins/save/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'cs', {
diff --git a/plugins/save/lang/cy.js b/plugins/save/lang/cy.js
index c789b17e..c8ba307b 100644
--- a/plugins/save/lang/cy.js
+++ b/plugins/save/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'cy', {
diff --git a/plugins/save/lang/da.js b/plugins/save/lang/da.js
index 0dd25a73..a58952b7 100644
--- a/plugins/save/lang/da.js
+++ b/plugins/save/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'da', {
diff --git a/plugins/save/lang/de-ch.js b/plugins/save/lang/de-ch.js
index d07ba13e..744c5829 100644
--- a/plugins/save/lang/de-ch.js
+++ b/plugins/save/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'de-ch', {
diff --git a/plugins/save/lang/de.js b/plugins/save/lang/de.js
index ecc3c868..e627c203 100644
--- a/plugins/save/lang/de.js
+++ b/plugins/save/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'de', {
diff --git a/plugins/save/lang/el.js b/plugins/save/lang/el.js
index 26b90df6..480761be 100644
--- a/plugins/save/lang/el.js
+++ b/plugins/save/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'el', {
diff --git a/plugins/save/lang/en-au.js b/plugins/save/lang/en-au.js
index 4dc0308c..e2294419 100644
--- a/plugins/save/lang/en-au.js
+++ b/plugins/save/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'en-au', {
diff --git a/plugins/save/lang/en-ca.js b/plugins/save/lang/en-ca.js
index 0a18b403..404da5b0 100644
--- a/plugins/save/lang/en-ca.js
+++ b/plugins/save/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'en-ca', {
diff --git a/plugins/save/lang/en-gb.js b/plugins/save/lang/en-gb.js
index 59e1f409..dae0cb00 100644
--- a/plugins/save/lang/en-gb.js
+++ b/plugins/save/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'en-gb', {
diff --git a/plugins/save/lang/en.js b/plugins/save/lang/en.js
index 4203fdf8..194b02e4 100644
--- a/plugins/save/lang/en.js
+++ b/plugins/save/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'en', {
diff --git a/plugins/save/lang/eo.js b/plugins/save/lang/eo.js
index dce2f0f4..63e3927b 100644
--- a/plugins/save/lang/eo.js
+++ b/plugins/save/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'eo', {
diff --git a/plugins/save/lang/es-mx.js b/plugins/save/lang/es-mx.js
index 2a69260a..7fdc1a99 100644
--- a/plugins/save/lang/es-mx.js
+++ b/plugins/save/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'es-mx', {
diff --git a/plugins/save/lang/es.js b/plugins/save/lang/es.js
index 8fdcad88..6d98b7eb 100644
--- a/plugins/save/lang/es.js
+++ b/plugins/save/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'es', {
diff --git a/plugins/save/lang/et.js b/plugins/save/lang/et.js
index 78a10ea0..4aee8e55 100644
--- a/plugins/save/lang/et.js
+++ b/plugins/save/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'et', {
diff --git a/plugins/save/lang/eu.js b/plugins/save/lang/eu.js
index 2700f37c..47e8bb83 100644
--- a/plugins/save/lang/eu.js
+++ b/plugins/save/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'eu', {
diff --git a/plugins/save/lang/fa.js b/plugins/save/lang/fa.js
index d642396c..33ddf102 100644
--- a/plugins/save/lang/fa.js
+++ b/plugins/save/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'fa', {
diff --git a/plugins/save/lang/fi.js b/plugins/save/lang/fi.js
index 203a37d1..31728d8a 100644
--- a/plugins/save/lang/fi.js
+++ b/plugins/save/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'fi', {
diff --git a/plugins/save/lang/fo.js b/plugins/save/lang/fo.js
index 5eecb61d..42cf2b1e 100644
--- a/plugins/save/lang/fo.js
+++ b/plugins/save/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'fo', {
diff --git a/plugins/save/lang/fr-ca.js b/plugins/save/lang/fr-ca.js
index 31ca73e8..153fdacd 100644
--- a/plugins/save/lang/fr-ca.js
+++ b/plugins/save/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'fr-ca', {
diff --git a/plugins/save/lang/fr.js b/plugins/save/lang/fr.js
index a89937c6..f3105758 100644
--- a/plugins/save/lang/fr.js
+++ b/plugins/save/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'fr', {
diff --git a/plugins/save/lang/gl.js b/plugins/save/lang/gl.js
index ffb5145c..2bfa0dd3 100644
--- a/plugins/save/lang/gl.js
+++ b/plugins/save/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'gl', {
diff --git a/plugins/save/lang/gu.js b/plugins/save/lang/gu.js
index 68b1cc34..aba063a0 100644
--- a/plugins/save/lang/gu.js
+++ b/plugins/save/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'gu', {
diff --git a/plugins/save/lang/he.js b/plugins/save/lang/he.js
index a1f5dc31..e0eda48d 100644
--- a/plugins/save/lang/he.js
+++ b/plugins/save/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'he', {
diff --git a/plugins/save/lang/hi.js b/plugins/save/lang/hi.js
index c15934d0..a42755f0 100644
--- a/plugins/save/lang/hi.js
+++ b/plugins/save/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'hi', {
diff --git a/plugins/save/lang/hr.js b/plugins/save/lang/hr.js
index e869cd25..c3127156 100644
--- a/plugins/save/lang/hr.js
+++ b/plugins/save/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'hr', {
diff --git a/plugins/save/lang/hu.js b/plugins/save/lang/hu.js
index b5346af6..265b93d6 100644
--- a/plugins/save/lang/hu.js
+++ b/plugins/save/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'hu', {
diff --git a/plugins/save/lang/id.js b/plugins/save/lang/id.js
index f21326d1..77a6bda2 100644
--- a/plugins/save/lang/id.js
+++ b/plugins/save/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'id', {
diff --git a/plugins/save/lang/is.js b/plugins/save/lang/is.js
index cc8e3fce..73c8e5e0 100644
--- a/plugins/save/lang/is.js
+++ b/plugins/save/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'is', {
diff --git a/plugins/save/lang/it.js b/plugins/save/lang/it.js
index e91b25e5..c81663f9 100644
--- a/plugins/save/lang/it.js
+++ b/plugins/save/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'it', {
diff --git a/plugins/save/lang/ja.js b/plugins/save/lang/ja.js
index 33e6dc91..624566f4 100644
--- a/plugins/save/lang/ja.js
+++ b/plugins/save/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'ja', {
diff --git a/plugins/save/lang/ka.js b/plugins/save/lang/ka.js
index bfdc7f59..3c602b90 100644
--- a/plugins/save/lang/ka.js
+++ b/plugins/save/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'ka', {
diff --git a/plugins/save/lang/km.js b/plugins/save/lang/km.js
index 63f7348f..c8d6d259 100644
--- a/plugins/save/lang/km.js
+++ b/plugins/save/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'km', {
diff --git a/plugins/save/lang/ko.js b/plugins/save/lang/ko.js
index 1f21f200..d574d6df 100644
--- a/plugins/save/lang/ko.js
+++ b/plugins/save/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'ko', {
diff --git a/plugins/save/lang/ku.js b/plugins/save/lang/ku.js
index b809da6d..a23ef8ac 100644
--- a/plugins/save/lang/ku.js
+++ b/plugins/save/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'ku', {
diff --git a/plugins/save/lang/lt.js b/plugins/save/lang/lt.js
index fa52392c..b4c48aad 100644
--- a/plugins/save/lang/lt.js
+++ b/plugins/save/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'lt', {
diff --git a/plugins/save/lang/lv.js b/plugins/save/lang/lv.js
index b04f3e68..3c8a9872 100644
--- a/plugins/save/lang/lv.js
+++ b/plugins/save/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'lv', {
diff --git a/plugins/save/lang/mk.js b/plugins/save/lang/mk.js
index f3892c2d..0269715a 100644
--- a/plugins/save/lang/mk.js
+++ b/plugins/save/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'mk', {
diff --git a/plugins/save/lang/mn.js b/plugins/save/lang/mn.js
index 4b7afcda..258a46ef 100644
--- a/plugins/save/lang/mn.js
+++ b/plugins/save/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'mn', {
diff --git a/plugins/save/lang/ms.js b/plugins/save/lang/ms.js
index cb765a66..41cedd09 100644
--- a/plugins/save/lang/ms.js
+++ b/plugins/save/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'ms', {
diff --git a/plugins/save/lang/nb.js b/plugins/save/lang/nb.js
index e0fb2b0e..09c9fd79 100644
--- a/plugins/save/lang/nb.js
+++ b/plugins/save/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'nb', {
diff --git a/plugins/save/lang/nl.js b/plugins/save/lang/nl.js
index cf63eee1..9ae950e1 100644
--- a/plugins/save/lang/nl.js
+++ b/plugins/save/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'nl', {
diff --git a/plugins/save/lang/no.js b/plugins/save/lang/no.js
index fe5854f8..d0f78c50 100644
--- a/plugins/save/lang/no.js
+++ b/plugins/save/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'no', {
diff --git a/plugins/save/lang/oc.js b/plugins/save/lang/oc.js
index 84e5ef1e..9660e542 100644
--- a/plugins/save/lang/oc.js
+++ b/plugins/save/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'oc', {
diff --git a/plugins/save/lang/pl.js b/plugins/save/lang/pl.js
index 8b0b0455..8f17119b 100644
--- a/plugins/save/lang/pl.js
+++ b/plugins/save/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'pl', {
diff --git a/plugins/save/lang/pt-br.js b/plugins/save/lang/pt-br.js
index ad674e0b..2538e4ad 100644
--- a/plugins/save/lang/pt-br.js
+++ b/plugins/save/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'pt-br', {
diff --git a/plugins/save/lang/pt.js b/plugins/save/lang/pt.js
index 4416c534..b89ae63d 100644
--- a/plugins/save/lang/pt.js
+++ b/plugins/save/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'pt', {
diff --git a/plugins/save/lang/ro.js b/plugins/save/lang/ro.js
index d8bbc5f6..752fde40 100644
--- a/plugins/save/lang/ro.js
+++ b/plugins/save/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'ro', {
diff --git a/plugins/save/lang/ru.js b/plugins/save/lang/ru.js
index 2920f050..7425cc2c 100644
--- a/plugins/save/lang/ru.js
+++ b/plugins/save/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'ru', {
diff --git a/plugins/save/lang/si.js b/plugins/save/lang/si.js
index cb653a24..3042d7ab 100644
--- a/plugins/save/lang/si.js
+++ b/plugins/save/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'si', {
diff --git a/plugins/save/lang/sk.js b/plugins/save/lang/sk.js
index d4fcad9f..cd522b07 100644
--- a/plugins/save/lang/sk.js
+++ b/plugins/save/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'sk', {
diff --git a/plugins/save/lang/sl.js b/plugins/save/lang/sl.js
index 44884631..a1b29045 100644
--- a/plugins/save/lang/sl.js
+++ b/plugins/save/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'sl', {
diff --git a/plugins/save/lang/sq.js b/plugins/save/lang/sq.js
index de78ea93..5112d8c6 100644
--- a/plugins/save/lang/sq.js
+++ b/plugins/save/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'sq', {
diff --git a/plugins/save/lang/sr-latn.js b/plugins/save/lang/sr-latn.js
index 98b07f45..b6cd9046 100644
--- a/plugins/save/lang/sr-latn.js
+++ b/plugins/save/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'sr-latn', {
diff --git a/plugins/save/lang/sr.js b/plugins/save/lang/sr.js
index 6fd52dd2..1222200c 100644
--- a/plugins/save/lang/sr.js
+++ b/plugins/save/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'sr', {
diff --git a/plugins/save/lang/sv.js b/plugins/save/lang/sv.js
index 58320608..1c921162 100644
--- a/plugins/save/lang/sv.js
+++ b/plugins/save/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'sv', {
diff --git a/plugins/save/lang/th.js b/plugins/save/lang/th.js
index b122144a..5524e5e7 100644
--- a/plugins/save/lang/th.js
+++ b/plugins/save/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'th', {
diff --git a/plugins/save/lang/tr.js b/plugins/save/lang/tr.js
index 9f8141a1..9e099bef 100644
--- a/plugins/save/lang/tr.js
+++ b/plugins/save/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'tr', {
diff --git a/plugins/save/lang/tt.js b/plugins/save/lang/tt.js
index 714b6402..56ba2181 100644
--- a/plugins/save/lang/tt.js
+++ b/plugins/save/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'tt', {
diff --git a/plugins/save/lang/ug.js b/plugins/save/lang/ug.js
index eda74daa..6a057bbd 100644
--- a/plugins/save/lang/ug.js
+++ b/plugins/save/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'ug', {
diff --git a/plugins/save/lang/uk.js b/plugins/save/lang/uk.js
index a7aa0f24..ab7cdcde 100644
--- a/plugins/save/lang/uk.js
+++ b/plugins/save/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'uk', {
diff --git a/plugins/save/lang/vi.js b/plugins/save/lang/vi.js
index 64a4bebf..07ff3631 100644
--- a/plugins/save/lang/vi.js
+++ b/plugins/save/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'vi', {
diff --git a/plugins/save/lang/zh-cn.js b/plugins/save/lang/zh-cn.js
index 85d51b60..a2674643 100644
--- a/plugins/save/lang/zh-cn.js
+++ b/plugins/save/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'zh-cn', {
diff --git a/plugins/save/lang/zh.js b/plugins/save/lang/zh.js
index 7df32cf3..4f25965f 100644
--- a/plugins/save/lang/zh.js
+++ b/plugins/save/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'save', 'zh', {
diff --git a/plugins/save/plugin.js b/plugins/save/plugin.js
index d1e7d43e..d2ac47ca 100644
--- a/plugins/save/plugin.js
+++ b/plugins/save/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/selectall/lang/af.js b/plugins/selectall/lang/af.js
index e03907a4..374877ac 100644
--- a/plugins/selectall/lang/af.js
+++ b/plugins/selectall/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'af', {
diff --git a/plugins/selectall/lang/ar.js b/plugins/selectall/lang/ar.js
index 10524c8e..72cedcfa 100644
--- a/plugins/selectall/lang/ar.js
+++ b/plugins/selectall/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'ar', {
diff --git a/plugins/selectall/lang/az.js b/plugins/selectall/lang/az.js
index b5e42d8d..186d26fe 100644
--- a/plugins/selectall/lang/az.js
+++ b/plugins/selectall/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'az', {
diff --git a/plugins/selectall/lang/bg.js b/plugins/selectall/lang/bg.js
index 86eabbec..5f87e52a 100644
--- a/plugins/selectall/lang/bg.js
+++ b/plugins/selectall/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'bg', {
diff --git a/plugins/selectall/lang/bn.js b/plugins/selectall/lang/bn.js
index bd21ad27..a86f43f5 100644
--- a/plugins/selectall/lang/bn.js
+++ b/plugins/selectall/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'bn', {
diff --git a/plugins/selectall/lang/bs.js b/plugins/selectall/lang/bs.js
index c2d9ac3d..fd28ba69 100644
--- a/plugins/selectall/lang/bs.js
+++ b/plugins/selectall/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'bs', {
diff --git a/plugins/selectall/lang/ca.js b/plugins/selectall/lang/ca.js
index 26e4d475..bc475550 100644
--- a/plugins/selectall/lang/ca.js
+++ b/plugins/selectall/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'ca', {
diff --git a/plugins/selectall/lang/cs.js b/plugins/selectall/lang/cs.js
index f75a5276..5599d95e 100644
--- a/plugins/selectall/lang/cs.js
+++ b/plugins/selectall/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'cs', {
diff --git a/plugins/selectall/lang/cy.js b/plugins/selectall/lang/cy.js
index 430fcdf3..ab632b05 100644
--- a/plugins/selectall/lang/cy.js
+++ b/plugins/selectall/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'cy', {
diff --git a/plugins/selectall/lang/da.js b/plugins/selectall/lang/da.js
index 3938f96d..d3284294 100644
--- a/plugins/selectall/lang/da.js
+++ b/plugins/selectall/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'da', {
diff --git a/plugins/selectall/lang/de-ch.js b/plugins/selectall/lang/de-ch.js
index 0b8282c6..b6fda92c 100644
--- a/plugins/selectall/lang/de-ch.js
+++ b/plugins/selectall/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'de-ch', {
diff --git a/plugins/selectall/lang/de.js b/plugins/selectall/lang/de.js
index 41c085dd..e27e263f 100644
--- a/plugins/selectall/lang/de.js
+++ b/plugins/selectall/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'de', {
diff --git a/plugins/selectall/lang/el.js b/plugins/selectall/lang/el.js
index fd760b66..af52394c 100644
--- a/plugins/selectall/lang/el.js
+++ b/plugins/selectall/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'el', {
diff --git a/plugins/selectall/lang/en-au.js b/plugins/selectall/lang/en-au.js
index c14833a1..02cd67fe 100644
--- a/plugins/selectall/lang/en-au.js
+++ b/plugins/selectall/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'en-au', {
diff --git a/plugins/selectall/lang/en-ca.js b/plugins/selectall/lang/en-ca.js
index e5973740..894e86e6 100644
--- a/plugins/selectall/lang/en-ca.js
+++ b/plugins/selectall/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'en-ca', {
diff --git a/plugins/selectall/lang/en-gb.js b/plugins/selectall/lang/en-gb.js
index 80ad6a28..ec9de4af 100644
--- a/plugins/selectall/lang/en-gb.js
+++ b/plugins/selectall/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'en-gb', {
diff --git a/plugins/selectall/lang/en.js b/plugins/selectall/lang/en.js
index ec8c89b4..46ad4ddb 100644
--- a/plugins/selectall/lang/en.js
+++ b/plugins/selectall/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'en', {
diff --git a/plugins/selectall/lang/eo.js b/plugins/selectall/lang/eo.js
index 8c38ae50..bed81fe3 100644
--- a/plugins/selectall/lang/eo.js
+++ b/plugins/selectall/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'eo', {
diff --git a/plugins/selectall/lang/es-mx.js b/plugins/selectall/lang/es-mx.js
index ea51eab3..fe703bcd 100644
--- a/plugins/selectall/lang/es-mx.js
+++ b/plugins/selectall/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'es-mx', {
diff --git a/plugins/selectall/lang/es.js b/plugins/selectall/lang/es.js
index 825ed0ab..8ff8082c 100644
--- a/plugins/selectall/lang/es.js
+++ b/plugins/selectall/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'es', {
diff --git a/plugins/selectall/lang/et.js b/plugins/selectall/lang/et.js
index fe3b1792..b779080c 100644
--- a/plugins/selectall/lang/et.js
+++ b/plugins/selectall/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'et', {
diff --git a/plugins/selectall/lang/eu.js b/plugins/selectall/lang/eu.js
index 52ad872c..32b74330 100644
--- a/plugins/selectall/lang/eu.js
+++ b/plugins/selectall/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'eu', {
diff --git a/plugins/selectall/lang/fa.js b/plugins/selectall/lang/fa.js
index 76c3b7b0..6e2f56d9 100644
--- a/plugins/selectall/lang/fa.js
+++ b/plugins/selectall/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'fa', {
diff --git a/plugins/selectall/lang/fi.js b/plugins/selectall/lang/fi.js
index 7ed1d472..212e738b 100644
--- a/plugins/selectall/lang/fi.js
+++ b/plugins/selectall/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'fi', {
diff --git a/plugins/selectall/lang/fo.js b/plugins/selectall/lang/fo.js
index 152f5536..abc909db 100644
--- a/plugins/selectall/lang/fo.js
+++ b/plugins/selectall/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'fo', {
diff --git a/plugins/selectall/lang/fr-ca.js b/plugins/selectall/lang/fr-ca.js
index d37a5523..24f1836e 100644
--- a/plugins/selectall/lang/fr-ca.js
+++ b/plugins/selectall/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'fr-ca', {
diff --git a/plugins/selectall/lang/fr.js b/plugins/selectall/lang/fr.js
index 9a04cf23..c5dd0ac4 100644
--- a/plugins/selectall/lang/fr.js
+++ b/plugins/selectall/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'fr', {
diff --git a/plugins/selectall/lang/gl.js b/plugins/selectall/lang/gl.js
index 260b51dd..7ff0da50 100644
--- a/plugins/selectall/lang/gl.js
+++ b/plugins/selectall/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'gl', {
diff --git a/plugins/selectall/lang/gu.js b/plugins/selectall/lang/gu.js
index afe510fa..d78b98fa 100644
--- a/plugins/selectall/lang/gu.js
+++ b/plugins/selectall/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'gu', {
diff --git a/plugins/selectall/lang/he.js b/plugins/selectall/lang/he.js
index ee5f4004..eac5ab4c 100644
--- a/plugins/selectall/lang/he.js
+++ b/plugins/selectall/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'he', {
diff --git a/plugins/selectall/lang/hi.js b/plugins/selectall/lang/hi.js
index 727b87e5..3ec21237 100644
--- a/plugins/selectall/lang/hi.js
+++ b/plugins/selectall/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'hi', {
diff --git a/plugins/selectall/lang/hr.js b/plugins/selectall/lang/hr.js
index 98946092..983b9c48 100644
--- a/plugins/selectall/lang/hr.js
+++ b/plugins/selectall/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'hr', {
diff --git a/plugins/selectall/lang/hu.js b/plugins/selectall/lang/hu.js
index 92f16e68..ca973d0b 100644
--- a/plugins/selectall/lang/hu.js
+++ b/plugins/selectall/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'hu', {
diff --git a/plugins/selectall/lang/id.js b/plugins/selectall/lang/id.js
index d0689fd6..addf7b2d 100644
--- a/plugins/selectall/lang/id.js
+++ b/plugins/selectall/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'id', {
diff --git a/plugins/selectall/lang/is.js b/plugins/selectall/lang/is.js
index d9e53702..881d8f7d 100644
--- a/plugins/selectall/lang/is.js
+++ b/plugins/selectall/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'is', {
diff --git a/plugins/selectall/lang/it.js b/plugins/selectall/lang/it.js
index 142bba89..c423bd13 100644
--- a/plugins/selectall/lang/it.js
+++ b/plugins/selectall/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'it', {
diff --git a/plugins/selectall/lang/ja.js b/plugins/selectall/lang/ja.js
index 86e18d6d..8f7be37a 100644
--- a/plugins/selectall/lang/ja.js
+++ b/plugins/selectall/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'ja', {
diff --git a/plugins/selectall/lang/ka.js b/plugins/selectall/lang/ka.js
index 70ea2959..6a479c9f 100644
--- a/plugins/selectall/lang/ka.js
+++ b/plugins/selectall/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'ka', {
diff --git a/plugins/selectall/lang/km.js b/plugins/selectall/lang/km.js
index 0ad170c6..8ba05c9b 100644
--- a/plugins/selectall/lang/km.js
+++ b/plugins/selectall/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'km', {
diff --git a/plugins/selectall/lang/ko.js b/plugins/selectall/lang/ko.js
index f1c995cf..48f5e3d0 100644
--- a/plugins/selectall/lang/ko.js
+++ b/plugins/selectall/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'ko', {
diff --git a/plugins/selectall/lang/ku.js b/plugins/selectall/lang/ku.js
index ece6e5d7..529bde1f 100644
--- a/plugins/selectall/lang/ku.js
+++ b/plugins/selectall/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'ku', {
diff --git a/plugins/selectall/lang/lt.js b/plugins/selectall/lang/lt.js
index 8d68b507..f204089d 100644
--- a/plugins/selectall/lang/lt.js
+++ b/plugins/selectall/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'lt', {
diff --git a/plugins/selectall/lang/lv.js b/plugins/selectall/lang/lv.js
index 1165eb3d..9804f86a 100644
--- a/plugins/selectall/lang/lv.js
+++ b/plugins/selectall/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'lv', {
diff --git a/plugins/selectall/lang/mk.js b/plugins/selectall/lang/mk.js
index 0fd93ea0..9006c751 100644
--- a/plugins/selectall/lang/mk.js
+++ b/plugins/selectall/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'mk', {
diff --git a/plugins/selectall/lang/mn.js b/plugins/selectall/lang/mn.js
index e9adf46b..8a5b5b28 100644
--- a/plugins/selectall/lang/mn.js
+++ b/plugins/selectall/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'mn', {
diff --git a/plugins/selectall/lang/ms.js b/plugins/selectall/lang/ms.js
index 8f30fe6a..3f21834b 100644
--- a/plugins/selectall/lang/ms.js
+++ b/plugins/selectall/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'ms', {
diff --git a/plugins/selectall/lang/nb.js b/plugins/selectall/lang/nb.js
index 4423fd8a..e8adb39a 100644
--- a/plugins/selectall/lang/nb.js
+++ b/plugins/selectall/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'nb', {
diff --git a/plugins/selectall/lang/nl.js b/plugins/selectall/lang/nl.js
index d51b4467..101294ca 100644
--- a/plugins/selectall/lang/nl.js
+++ b/plugins/selectall/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'nl', {
diff --git a/plugins/selectall/lang/no.js b/plugins/selectall/lang/no.js
index ec4d3a69..64b9e20d 100644
--- a/plugins/selectall/lang/no.js
+++ b/plugins/selectall/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'no', {
diff --git a/plugins/selectall/lang/oc.js b/plugins/selectall/lang/oc.js
index 74bfdb44..72507029 100644
--- a/plugins/selectall/lang/oc.js
+++ b/plugins/selectall/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'oc', {
diff --git a/plugins/selectall/lang/pl.js b/plugins/selectall/lang/pl.js
index 6bd79d0b..cc241255 100644
--- a/plugins/selectall/lang/pl.js
+++ b/plugins/selectall/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'pl', {
diff --git a/plugins/selectall/lang/pt-br.js b/plugins/selectall/lang/pt-br.js
index e4b1ce09..c74d48f6 100644
--- a/plugins/selectall/lang/pt-br.js
+++ b/plugins/selectall/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'pt-br', {
diff --git a/plugins/selectall/lang/pt.js b/plugins/selectall/lang/pt.js
index 57cbc7b0..13ba1d51 100644
--- a/plugins/selectall/lang/pt.js
+++ b/plugins/selectall/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'pt', {
diff --git a/plugins/selectall/lang/ro.js b/plugins/selectall/lang/ro.js
index b9867618..9907c76c 100644
--- a/plugins/selectall/lang/ro.js
+++ b/plugins/selectall/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'ro', {
diff --git a/plugins/selectall/lang/ru.js b/plugins/selectall/lang/ru.js
index 583b2bac..9825f7fd 100644
--- a/plugins/selectall/lang/ru.js
+++ b/plugins/selectall/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'ru', {
diff --git a/plugins/selectall/lang/si.js b/plugins/selectall/lang/si.js
index 39bb3909..db3d74d0 100644
--- a/plugins/selectall/lang/si.js
+++ b/plugins/selectall/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'si', {
diff --git a/plugins/selectall/lang/sk.js b/plugins/selectall/lang/sk.js
index 1c74cc20..487e0a05 100644
--- a/plugins/selectall/lang/sk.js
+++ b/plugins/selectall/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'sk', {
diff --git a/plugins/selectall/lang/sl.js b/plugins/selectall/lang/sl.js
index ba2fcef5..8becc2a8 100644
--- a/plugins/selectall/lang/sl.js
+++ b/plugins/selectall/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'sl', {
diff --git a/plugins/selectall/lang/sq.js b/plugins/selectall/lang/sq.js
index 7681e644..824cdbd0 100644
--- a/plugins/selectall/lang/sq.js
+++ b/plugins/selectall/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'sq', {
diff --git a/plugins/selectall/lang/sr-latn.js b/plugins/selectall/lang/sr-latn.js
index afdddee0..d6b78db4 100644
--- a/plugins/selectall/lang/sr-latn.js
+++ b/plugins/selectall/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'sr-latn', {
diff --git a/plugins/selectall/lang/sr.js b/plugins/selectall/lang/sr.js
index 5a28d705..ce4e944a 100644
--- a/plugins/selectall/lang/sr.js
+++ b/plugins/selectall/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'sr', {
diff --git a/plugins/selectall/lang/sv.js b/plugins/selectall/lang/sv.js
index e13ffaad..00939cc3 100644
--- a/plugins/selectall/lang/sv.js
+++ b/plugins/selectall/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'sv', {
diff --git a/plugins/selectall/lang/th.js b/plugins/selectall/lang/th.js
index 5172ce23..76f141e2 100644
--- a/plugins/selectall/lang/th.js
+++ b/plugins/selectall/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'th', {
diff --git a/plugins/selectall/lang/tr.js b/plugins/selectall/lang/tr.js
index e9998af2..6b62ca92 100644
--- a/plugins/selectall/lang/tr.js
+++ b/plugins/selectall/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'tr', {
diff --git a/plugins/selectall/lang/tt.js b/plugins/selectall/lang/tt.js
index 492f46ed..77f079fa 100644
--- a/plugins/selectall/lang/tt.js
+++ b/plugins/selectall/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'tt', {
diff --git a/plugins/selectall/lang/ug.js b/plugins/selectall/lang/ug.js
index 7fa3f309..ad2f7cbf 100644
--- a/plugins/selectall/lang/ug.js
+++ b/plugins/selectall/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'ug', {
diff --git a/plugins/selectall/lang/uk.js b/plugins/selectall/lang/uk.js
index 22c9dd90..06fd80f4 100644
--- a/plugins/selectall/lang/uk.js
+++ b/plugins/selectall/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'uk', {
diff --git a/plugins/selectall/lang/vi.js b/plugins/selectall/lang/vi.js
index 467153e0..7d081672 100644
--- a/plugins/selectall/lang/vi.js
+++ b/plugins/selectall/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'vi', {
diff --git a/plugins/selectall/lang/zh-cn.js b/plugins/selectall/lang/zh-cn.js
index 09e4f6d4..1ed75638 100644
--- a/plugins/selectall/lang/zh-cn.js
+++ b/plugins/selectall/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'zh-cn', {
diff --git a/plugins/selectall/lang/zh.js b/plugins/selectall/lang/zh.js
index e8c603cc..68d0ad14 100644
--- a/plugins/selectall/lang/zh.js
+++ b/plugins/selectall/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'selectall', 'zh', {
diff --git a/plugins/selectall/plugin.js b/plugins/selectall/plugin.js
index 29d87c2b..849996a0 100644
--- a/plugins/selectall/plugin.js
+++ b/plugins/selectall/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/sharedspace/plugin.js b/plugins/sharedspace/plugin.js
index 0b4f1da2..a7b84365 100644
--- a/plugins/sharedspace/plugin.js
+++ b/plugins/sharedspace/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/sharedspace/samples/sharedspace.html b/plugins/sharedspace/samples/sharedspace.html
index 55b84d5b..f3718967 100644
--- a/plugins/sharedspace/samples/sharedspace.html
+++ b/plugins/sharedspace/samples/sharedspace.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -115,7 +115,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/showblocks/lang/af.js b/plugins/showblocks/lang/af.js
index 41a87dab..6bf91da9 100644
--- a/plugins/showblocks/lang/af.js
+++ b/plugins/showblocks/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'af', {
diff --git a/plugins/showblocks/lang/ar.js b/plugins/showblocks/lang/ar.js
index decdee17..6d1a6f20 100644
--- a/plugins/showblocks/lang/ar.js
+++ b/plugins/showblocks/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'ar', {
diff --git a/plugins/showblocks/lang/az.js b/plugins/showblocks/lang/az.js
index af9a2f83..74092597 100644
--- a/plugins/showblocks/lang/az.js
+++ b/plugins/showblocks/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'az', {
diff --git a/plugins/showblocks/lang/bg.js b/plugins/showblocks/lang/bg.js
index e5f1527c..93b6e7c2 100644
--- a/plugins/showblocks/lang/bg.js
+++ b/plugins/showblocks/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'bg', {
diff --git a/plugins/showblocks/lang/bn.js b/plugins/showblocks/lang/bn.js
index 6efb03ba..e504f272 100644
--- a/plugins/showblocks/lang/bn.js
+++ b/plugins/showblocks/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'bn', {
diff --git a/plugins/showblocks/lang/bs.js b/plugins/showblocks/lang/bs.js
index 4477c12f..3588615f 100644
--- a/plugins/showblocks/lang/bs.js
+++ b/plugins/showblocks/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'bs', {
diff --git a/plugins/showblocks/lang/ca.js b/plugins/showblocks/lang/ca.js
index f551bf48..6ed5237e 100644
--- a/plugins/showblocks/lang/ca.js
+++ b/plugins/showblocks/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'ca', {
diff --git a/plugins/showblocks/lang/cs.js b/plugins/showblocks/lang/cs.js
index e37f1674..43e32fa4 100644
--- a/plugins/showblocks/lang/cs.js
+++ b/plugins/showblocks/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'cs', {
diff --git a/plugins/showblocks/lang/cy.js b/plugins/showblocks/lang/cy.js
index deba9689..73fa42f1 100644
--- a/plugins/showblocks/lang/cy.js
+++ b/plugins/showblocks/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'cy', {
diff --git a/plugins/showblocks/lang/da.js b/plugins/showblocks/lang/da.js
index 4baf74c2..4946db39 100644
--- a/plugins/showblocks/lang/da.js
+++ b/plugins/showblocks/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'da', {
diff --git a/plugins/showblocks/lang/de-ch.js b/plugins/showblocks/lang/de-ch.js
index 5716f673..9fbe80c4 100644
--- a/plugins/showblocks/lang/de-ch.js
+++ b/plugins/showblocks/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'de-ch', {
diff --git a/plugins/showblocks/lang/de.js b/plugins/showblocks/lang/de.js
index f074785f..137b11de 100644
--- a/plugins/showblocks/lang/de.js
+++ b/plugins/showblocks/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'de', {
diff --git a/plugins/showblocks/lang/el.js b/plugins/showblocks/lang/el.js
index b5086916..455a5bce 100644
--- a/plugins/showblocks/lang/el.js
+++ b/plugins/showblocks/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'el', {
diff --git a/plugins/showblocks/lang/en-au.js b/plugins/showblocks/lang/en-au.js
index 46354e28..2331a3fd 100644
--- a/plugins/showblocks/lang/en-au.js
+++ b/plugins/showblocks/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'en-au', {
diff --git a/plugins/showblocks/lang/en-ca.js b/plugins/showblocks/lang/en-ca.js
index 57690553..18733337 100644
--- a/plugins/showblocks/lang/en-ca.js
+++ b/plugins/showblocks/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'en-ca', {
diff --git a/plugins/showblocks/lang/en-gb.js b/plugins/showblocks/lang/en-gb.js
index e9b1385c..4a2f6446 100644
--- a/plugins/showblocks/lang/en-gb.js
+++ b/plugins/showblocks/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'en-gb', {
diff --git a/plugins/showblocks/lang/en.js b/plugins/showblocks/lang/en.js
index 117a9dd6..4b782006 100644
--- a/plugins/showblocks/lang/en.js
+++ b/plugins/showblocks/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'en', {
diff --git a/plugins/showblocks/lang/eo.js b/plugins/showblocks/lang/eo.js
index 3c03bf04..ddaf5d38 100644
--- a/plugins/showblocks/lang/eo.js
+++ b/plugins/showblocks/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'eo', {
diff --git a/plugins/showblocks/lang/es-mx.js b/plugins/showblocks/lang/es-mx.js
index 3f17da03..44660892 100644
--- a/plugins/showblocks/lang/es-mx.js
+++ b/plugins/showblocks/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'es-mx', {
diff --git a/plugins/showblocks/lang/es.js b/plugins/showblocks/lang/es.js
index cd655e91..82540d38 100644
--- a/plugins/showblocks/lang/es.js
+++ b/plugins/showblocks/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'es', {
diff --git a/plugins/showblocks/lang/et.js b/plugins/showblocks/lang/et.js
index 8aa5c441..8d3c8031 100644
--- a/plugins/showblocks/lang/et.js
+++ b/plugins/showblocks/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'et', {
diff --git a/plugins/showblocks/lang/eu.js b/plugins/showblocks/lang/eu.js
index 5ff62079..bfe10741 100644
--- a/plugins/showblocks/lang/eu.js
+++ b/plugins/showblocks/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'eu', {
diff --git a/plugins/showblocks/lang/fa.js b/plugins/showblocks/lang/fa.js
index f9098294..7cfed88b 100644
--- a/plugins/showblocks/lang/fa.js
+++ b/plugins/showblocks/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'fa', {
diff --git a/plugins/showblocks/lang/fi.js b/plugins/showblocks/lang/fi.js
index c2cc2448..f0206c30 100644
--- a/plugins/showblocks/lang/fi.js
+++ b/plugins/showblocks/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'fi', {
diff --git a/plugins/showblocks/lang/fo.js b/plugins/showblocks/lang/fo.js
index af96e55f..5bbe08d3 100644
--- a/plugins/showblocks/lang/fo.js
+++ b/plugins/showblocks/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'fo', {
diff --git a/plugins/showblocks/lang/fr-ca.js b/plugins/showblocks/lang/fr-ca.js
index 3dd3d32e..2194c381 100644
--- a/plugins/showblocks/lang/fr-ca.js
+++ b/plugins/showblocks/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'fr-ca', {
diff --git a/plugins/showblocks/lang/fr.js b/plugins/showblocks/lang/fr.js
index 935efeea..a8438e90 100644
--- a/plugins/showblocks/lang/fr.js
+++ b/plugins/showblocks/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'fr', {
diff --git a/plugins/showblocks/lang/gl.js b/plugins/showblocks/lang/gl.js
index f382325c..bc780a50 100644
--- a/plugins/showblocks/lang/gl.js
+++ b/plugins/showblocks/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'gl', {
diff --git a/plugins/showblocks/lang/gu.js b/plugins/showblocks/lang/gu.js
index 0c07f491..cb22d664 100644
--- a/plugins/showblocks/lang/gu.js
+++ b/plugins/showblocks/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'gu', {
diff --git a/plugins/showblocks/lang/he.js b/plugins/showblocks/lang/he.js
index bc3ba03d..85a99ee1 100644
--- a/plugins/showblocks/lang/he.js
+++ b/plugins/showblocks/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'he', {
diff --git a/plugins/showblocks/lang/hi.js b/plugins/showblocks/lang/hi.js
index 19cdd384..f7cf1c9f 100644
--- a/plugins/showblocks/lang/hi.js
+++ b/plugins/showblocks/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'hi', {
diff --git a/plugins/showblocks/lang/hr.js b/plugins/showblocks/lang/hr.js
index a6213738..b7fdc208 100644
--- a/plugins/showblocks/lang/hr.js
+++ b/plugins/showblocks/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'hr', {
diff --git a/plugins/showblocks/lang/hu.js b/plugins/showblocks/lang/hu.js
index c2b51bb1..fcd89e9e 100644
--- a/plugins/showblocks/lang/hu.js
+++ b/plugins/showblocks/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'hu', {
diff --git a/plugins/showblocks/lang/id.js b/plugins/showblocks/lang/id.js
index d2c3d037..d02b25c4 100644
--- a/plugins/showblocks/lang/id.js
+++ b/plugins/showblocks/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'id', {
diff --git a/plugins/showblocks/lang/is.js b/plugins/showblocks/lang/is.js
index 91bac42d..b9e29163 100644
--- a/plugins/showblocks/lang/is.js
+++ b/plugins/showblocks/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'is', {
diff --git a/plugins/showblocks/lang/it.js b/plugins/showblocks/lang/it.js
index 8903fb89..5036355e 100644
--- a/plugins/showblocks/lang/it.js
+++ b/plugins/showblocks/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'it', {
diff --git a/plugins/showblocks/lang/ja.js b/plugins/showblocks/lang/ja.js
index d8d0e47b..b0e0e5be 100644
--- a/plugins/showblocks/lang/ja.js
+++ b/plugins/showblocks/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'ja', {
diff --git a/plugins/showblocks/lang/ka.js b/plugins/showblocks/lang/ka.js
index 3abc54bc..d7f8dd05 100644
--- a/plugins/showblocks/lang/ka.js
+++ b/plugins/showblocks/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'ka', {
diff --git a/plugins/showblocks/lang/km.js b/plugins/showblocks/lang/km.js
index 682beed0..f312a025 100644
--- a/plugins/showblocks/lang/km.js
+++ b/plugins/showblocks/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'km', {
diff --git a/plugins/showblocks/lang/ko.js b/plugins/showblocks/lang/ko.js
index 899c9e9a..dc27043d 100644
--- a/plugins/showblocks/lang/ko.js
+++ b/plugins/showblocks/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'ko', {
diff --git a/plugins/showblocks/lang/ku.js b/plugins/showblocks/lang/ku.js
index 5e082c0d..da735927 100644
--- a/plugins/showblocks/lang/ku.js
+++ b/plugins/showblocks/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'ku', {
diff --git a/plugins/showblocks/lang/lt.js b/plugins/showblocks/lang/lt.js
index 3293fb59..0f28e8de 100644
--- a/plugins/showblocks/lang/lt.js
+++ b/plugins/showblocks/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'lt', {
diff --git a/plugins/showblocks/lang/lv.js b/plugins/showblocks/lang/lv.js
index 295b61e7..e3a4fd00 100644
--- a/plugins/showblocks/lang/lv.js
+++ b/plugins/showblocks/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'lv', {
diff --git a/plugins/showblocks/lang/mk.js b/plugins/showblocks/lang/mk.js
index aba1411b..f71f33ae 100644
--- a/plugins/showblocks/lang/mk.js
+++ b/plugins/showblocks/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'mk', {
diff --git a/plugins/showblocks/lang/mn.js b/plugins/showblocks/lang/mn.js
index eb944972..49c82e23 100644
--- a/plugins/showblocks/lang/mn.js
+++ b/plugins/showblocks/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'mn', {
diff --git a/plugins/showblocks/lang/ms.js b/plugins/showblocks/lang/ms.js
index 5faf29ea..b401cec8 100644
--- a/plugins/showblocks/lang/ms.js
+++ b/plugins/showblocks/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'ms', {
diff --git a/plugins/showblocks/lang/nb.js b/plugins/showblocks/lang/nb.js
index 5043aeba..3971a131 100644
--- a/plugins/showblocks/lang/nb.js
+++ b/plugins/showblocks/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'nb', {
diff --git a/plugins/showblocks/lang/nl.js b/plugins/showblocks/lang/nl.js
index a6ae4798..cde8f672 100644
--- a/plugins/showblocks/lang/nl.js
+++ b/plugins/showblocks/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'nl', {
diff --git a/plugins/showblocks/lang/no.js b/plugins/showblocks/lang/no.js
index 1b7f8bba..51d5e964 100644
--- a/plugins/showblocks/lang/no.js
+++ b/plugins/showblocks/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'no', {
diff --git a/plugins/showblocks/lang/oc.js b/plugins/showblocks/lang/oc.js
index ab74f412..3b322cbd 100644
--- a/plugins/showblocks/lang/oc.js
+++ b/plugins/showblocks/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'oc', {
diff --git a/plugins/showblocks/lang/pl.js b/plugins/showblocks/lang/pl.js
index 0cde597b..428d5b24 100644
--- a/plugins/showblocks/lang/pl.js
+++ b/plugins/showblocks/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'pl', {
diff --git a/plugins/showblocks/lang/pt-br.js b/plugins/showblocks/lang/pt-br.js
index 6ff7fce0..b8812a78 100644
--- a/plugins/showblocks/lang/pt-br.js
+++ b/plugins/showblocks/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'pt-br', {
diff --git a/plugins/showblocks/lang/pt.js b/plugins/showblocks/lang/pt.js
index ccc0d3df..038864b3 100644
--- a/plugins/showblocks/lang/pt.js
+++ b/plugins/showblocks/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'pt', {
diff --git a/plugins/showblocks/lang/ro.js b/plugins/showblocks/lang/ro.js
index de455bc1..86e9cba0 100644
--- a/plugins/showblocks/lang/ro.js
+++ b/plugins/showblocks/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'ro', {
diff --git a/plugins/showblocks/lang/ru.js b/plugins/showblocks/lang/ru.js
index 926eb28a..27b5f0b9 100644
--- a/plugins/showblocks/lang/ru.js
+++ b/plugins/showblocks/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'ru', {
diff --git a/plugins/showblocks/lang/si.js b/plugins/showblocks/lang/si.js
index 3db3c53a..276789ec 100644
--- a/plugins/showblocks/lang/si.js
+++ b/plugins/showblocks/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'si', {
diff --git a/plugins/showblocks/lang/sk.js b/plugins/showblocks/lang/sk.js
index dfd8608c..42d5764b 100644
--- a/plugins/showblocks/lang/sk.js
+++ b/plugins/showblocks/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'sk', {
diff --git a/plugins/showblocks/lang/sl.js b/plugins/showblocks/lang/sl.js
index 62563d14..c3a6842d 100644
--- a/plugins/showblocks/lang/sl.js
+++ b/plugins/showblocks/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'sl', {
diff --git a/plugins/showblocks/lang/sq.js b/plugins/showblocks/lang/sq.js
index 02585b3f..850af24b 100644
--- a/plugins/showblocks/lang/sq.js
+++ b/plugins/showblocks/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'sq', {
diff --git a/plugins/showblocks/lang/sr-latn.js b/plugins/showblocks/lang/sr-latn.js
index ac76b199..686fd3ae 100644
--- a/plugins/showblocks/lang/sr-latn.js
+++ b/plugins/showblocks/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'sr-latn', {
diff --git a/plugins/showblocks/lang/sr.js b/plugins/showblocks/lang/sr.js
index 2a1b1283..e56f1228 100644
--- a/plugins/showblocks/lang/sr.js
+++ b/plugins/showblocks/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'sr', {
diff --git a/plugins/showblocks/lang/sv.js b/plugins/showblocks/lang/sv.js
index 5a94fcd5..c48a0eba 100644
--- a/plugins/showblocks/lang/sv.js
+++ b/plugins/showblocks/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'sv', {
diff --git a/plugins/showblocks/lang/th.js b/plugins/showblocks/lang/th.js
index d07ec08c..f654cd73 100644
--- a/plugins/showblocks/lang/th.js
+++ b/plugins/showblocks/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'th', {
diff --git a/plugins/showblocks/lang/tr.js b/plugins/showblocks/lang/tr.js
index f816abac..40d13cc7 100644
--- a/plugins/showblocks/lang/tr.js
+++ b/plugins/showblocks/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'tr', {
diff --git a/plugins/showblocks/lang/tt.js b/plugins/showblocks/lang/tt.js
index b9e2dfe4..6b77f81f 100644
--- a/plugins/showblocks/lang/tt.js
+++ b/plugins/showblocks/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'tt', {
diff --git a/plugins/showblocks/lang/ug.js b/plugins/showblocks/lang/ug.js
index 0848d0f7..6e7d6570 100644
--- a/plugins/showblocks/lang/ug.js
+++ b/plugins/showblocks/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'ug', {
diff --git a/plugins/showblocks/lang/uk.js b/plugins/showblocks/lang/uk.js
index 3f99af8d..c74d1e5c 100644
--- a/plugins/showblocks/lang/uk.js
+++ b/plugins/showblocks/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'uk', {
diff --git a/plugins/showblocks/lang/vi.js b/plugins/showblocks/lang/vi.js
index 809fad65..bf9c1590 100644
--- a/plugins/showblocks/lang/vi.js
+++ b/plugins/showblocks/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'vi', {
diff --git a/plugins/showblocks/lang/zh-cn.js b/plugins/showblocks/lang/zh-cn.js
index 0231f927..fea691f9 100644
--- a/plugins/showblocks/lang/zh-cn.js
+++ b/plugins/showblocks/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'zh-cn', {
diff --git a/plugins/showblocks/lang/zh.js b/plugins/showblocks/lang/zh.js
index ef5e1f35..e654c35d 100644
--- a/plugins/showblocks/lang/zh.js
+++ b/plugins/showblocks/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'showblocks', 'zh', {
diff --git a/plugins/showblocks/plugin.js b/plugins/showblocks/plugin.js
index 79d47c27..9b0e94df 100755
--- a/plugins/showblocks/plugin.js
+++ b/plugins/showblocks/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/showborders/plugin.js b/plugins/showborders/plugin.js
index 928806b9..1a79678a 100644
--- a/plugins/showborders/plugin.js
+++ b/plugins/showborders/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/smiley/dialogs/smiley.js b/plugins/smiley/dialogs/smiley.js
index 7fc14acf..400956d0 100644
--- a/plugins/smiley/dialogs/smiley.js
+++ b/plugins/smiley/dialogs/smiley.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/smiley/lang/af.js b/plugins/smiley/lang/af.js
index 4da3dc06..ff0becf4 100644
--- a/plugins/smiley/lang/af.js
+++ b/plugins/smiley/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'af', {
diff --git a/plugins/smiley/lang/ar.js b/plugins/smiley/lang/ar.js
index 0d3fbe57..49315c2f 100644
--- a/plugins/smiley/lang/ar.js
+++ b/plugins/smiley/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'ar', {
diff --git a/plugins/smiley/lang/az.js b/plugins/smiley/lang/az.js
index dc716877..b78d0397 100644
--- a/plugins/smiley/lang/az.js
+++ b/plugins/smiley/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'az', {
diff --git a/plugins/smiley/lang/bg.js b/plugins/smiley/lang/bg.js
index 56a0c42c..a46842e3 100644
--- a/plugins/smiley/lang/bg.js
+++ b/plugins/smiley/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'bg', {
diff --git a/plugins/smiley/lang/bn.js b/plugins/smiley/lang/bn.js
index b0f12f45..64641a8b 100644
--- a/plugins/smiley/lang/bn.js
+++ b/plugins/smiley/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'bn', {
diff --git a/plugins/smiley/lang/bs.js b/plugins/smiley/lang/bs.js
index 37c0322e..f0f8182b 100644
--- a/plugins/smiley/lang/bs.js
+++ b/plugins/smiley/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'bs', {
diff --git a/plugins/smiley/lang/ca.js b/plugins/smiley/lang/ca.js
index ee38a467..1f1ac652 100644
--- a/plugins/smiley/lang/ca.js
+++ b/plugins/smiley/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'ca', {
diff --git a/plugins/smiley/lang/cs.js b/plugins/smiley/lang/cs.js
index 475b53be..3c7583cb 100644
--- a/plugins/smiley/lang/cs.js
+++ b/plugins/smiley/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'cs', {
diff --git a/plugins/smiley/lang/cy.js b/plugins/smiley/lang/cy.js
index 81b34379..14d77ccf 100644
--- a/plugins/smiley/lang/cy.js
+++ b/plugins/smiley/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'cy', {
diff --git a/plugins/smiley/lang/da.js b/plugins/smiley/lang/da.js
index 0f3c1bba..c0920f83 100644
--- a/plugins/smiley/lang/da.js
+++ b/plugins/smiley/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'da', {
diff --git a/plugins/smiley/lang/de-ch.js b/plugins/smiley/lang/de-ch.js
index c1064cbc..fc040517 100644
--- a/plugins/smiley/lang/de-ch.js
+++ b/plugins/smiley/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'de-ch', {
diff --git a/plugins/smiley/lang/de.js b/plugins/smiley/lang/de.js
index f1fce35d..e071f597 100644
--- a/plugins/smiley/lang/de.js
+++ b/plugins/smiley/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'de', {
diff --git a/plugins/smiley/lang/el.js b/plugins/smiley/lang/el.js
index de4c9915..c5adb3c5 100644
--- a/plugins/smiley/lang/el.js
+++ b/plugins/smiley/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'el', {
diff --git a/plugins/smiley/lang/en-au.js b/plugins/smiley/lang/en-au.js
index 0b7fa99b..e0d6e7bd 100644
--- a/plugins/smiley/lang/en-au.js
+++ b/plugins/smiley/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'en-au', {
diff --git a/plugins/smiley/lang/en-ca.js b/plugins/smiley/lang/en-ca.js
index b0ab2dfd..8ab11a5a 100644
--- a/plugins/smiley/lang/en-ca.js
+++ b/plugins/smiley/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'en-ca', {
diff --git a/plugins/smiley/lang/en-gb.js b/plugins/smiley/lang/en-gb.js
index 8966bdeb..95f2797f 100644
--- a/plugins/smiley/lang/en-gb.js
+++ b/plugins/smiley/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'en-gb', {
diff --git a/plugins/smiley/lang/en.js b/plugins/smiley/lang/en.js
index 0d2fd2ac..f959808e 100644
--- a/plugins/smiley/lang/en.js
+++ b/plugins/smiley/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'en', {
diff --git a/plugins/smiley/lang/eo.js b/plugins/smiley/lang/eo.js
index b5343e5d..aba3b2e4 100644
--- a/plugins/smiley/lang/eo.js
+++ b/plugins/smiley/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'eo', {
diff --git a/plugins/smiley/lang/es-mx.js b/plugins/smiley/lang/es-mx.js
index 9d647ab8..4e1230a3 100644
--- a/plugins/smiley/lang/es-mx.js
+++ b/plugins/smiley/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'es-mx', {
diff --git a/plugins/smiley/lang/es.js b/plugins/smiley/lang/es.js
index d81e368a..8b50e042 100644
--- a/plugins/smiley/lang/es.js
+++ b/plugins/smiley/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'es', {
diff --git a/plugins/smiley/lang/et.js b/plugins/smiley/lang/et.js
index 7ef0a766..82246ff8 100644
--- a/plugins/smiley/lang/et.js
+++ b/plugins/smiley/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'et', {
diff --git a/plugins/smiley/lang/eu.js b/plugins/smiley/lang/eu.js
index c3e433c8..250a969e 100644
--- a/plugins/smiley/lang/eu.js
+++ b/plugins/smiley/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'eu', {
diff --git a/plugins/smiley/lang/fa.js b/plugins/smiley/lang/fa.js
index eeb83757..cc447c1c 100644
--- a/plugins/smiley/lang/fa.js
+++ b/plugins/smiley/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'fa', {
diff --git a/plugins/smiley/lang/fi.js b/plugins/smiley/lang/fi.js
index 229a0ee4..ecc19455 100644
--- a/plugins/smiley/lang/fi.js
+++ b/plugins/smiley/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'fi', {
diff --git a/plugins/smiley/lang/fo.js b/plugins/smiley/lang/fo.js
index 613e808f..01afa58c 100644
--- a/plugins/smiley/lang/fo.js
+++ b/plugins/smiley/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'fo', {
diff --git a/plugins/smiley/lang/fr-ca.js b/plugins/smiley/lang/fr-ca.js
index d8206c4e..0cb983d5 100644
--- a/plugins/smiley/lang/fr-ca.js
+++ b/plugins/smiley/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'fr-ca', {
diff --git a/plugins/smiley/lang/fr.js b/plugins/smiley/lang/fr.js
index e152ab20..fc318473 100644
--- a/plugins/smiley/lang/fr.js
+++ b/plugins/smiley/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'fr', {
diff --git a/plugins/smiley/lang/gl.js b/plugins/smiley/lang/gl.js
index e5f6990c..9dafcc3c 100644
--- a/plugins/smiley/lang/gl.js
+++ b/plugins/smiley/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'gl', {
diff --git a/plugins/smiley/lang/gu.js b/plugins/smiley/lang/gu.js
index 5630ed4c..3ea4ac1a 100644
--- a/plugins/smiley/lang/gu.js
+++ b/plugins/smiley/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'gu', {
diff --git a/plugins/smiley/lang/he.js b/plugins/smiley/lang/he.js
index afbd5a6d..c39fc40b 100644
--- a/plugins/smiley/lang/he.js
+++ b/plugins/smiley/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'he', {
diff --git a/plugins/smiley/lang/hi.js b/plugins/smiley/lang/hi.js
index 05dbfd33..049b2185 100644
--- a/plugins/smiley/lang/hi.js
+++ b/plugins/smiley/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'hi', {
diff --git a/plugins/smiley/lang/hr.js b/plugins/smiley/lang/hr.js
index 855d38c8..6bb56069 100644
--- a/plugins/smiley/lang/hr.js
+++ b/plugins/smiley/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'hr', {
diff --git a/plugins/smiley/lang/hu.js b/plugins/smiley/lang/hu.js
index 076d4ed5..5f183544 100644
--- a/plugins/smiley/lang/hu.js
+++ b/plugins/smiley/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'hu', {
diff --git a/plugins/smiley/lang/id.js b/plugins/smiley/lang/id.js
index 436bf2a5..6d97b71c 100644
--- a/plugins/smiley/lang/id.js
+++ b/plugins/smiley/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'id', {
diff --git a/plugins/smiley/lang/is.js b/plugins/smiley/lang/is.js
index 176c4473..b3c550cf 100644
--- a/plugins/smiley/lang/is.js
+++ b/plugins/smiley/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'is', {
diff --git a/plugins/smiley/lang/it.js b/plugins/smiley/lang/it.js
index 38e9de35..64826a61 100644
--- a/plugins/smiley/lang/it.js
+++ b/plugins/smiley/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'it', {
diff --git a/plugins/smiley/lang/ja.js b/plugins/smiley/lang/ja.js
index e5b6549d..ac4fc626 100644
--- a/plugins/smiley/lang/ja.js
+++ b/plugins/smiley/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'ja', {
diff --git a/plugins/smiley/lang/ka.js b/plugins/smiley/lang/ka.js
index f747ccba..689b9486 100644
--- a/plugins/smiley/lang/ka.js
+++ b/plugins/smiley/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'ka', {
diff --git a/plugins/smiley/lang/km.js b/plugins/smiley/lang/km.js
index a15b1c96..a79dd478 100644
--- a/plugins/smiley/lang/km.js
+++ b/plugins/smiley/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'km', {
diff --git a/plugins/smiley/lang/ko.js b/plugins/smiley/lang/ko.js
index 1bd218fd..9cc118ca 100644
--- a/plugins/smiley/lang/ko.js
+++ b/plugins/smiley/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'ko', {
diff --git a/plugins/smiley/lang/ku.js b/plugins/smiley/lang/ku.js
index b35af297..6023fec6 100644
--- a/plugins/smiley/lang/ku.js
+++ b/plugins/smiley/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'ku', {
diff --git a/plugins/smiley/lang/lt.js b/plugins/smiley/lang/lt.js
index ea754ff5..25938fcf 100644
--- a/plugins/smiley/lang/lt.js
+++ b/plugins/smiley/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'lt', {
diff --git a/plugins/smiley/lang/lv.js b/plugins/smiley/lang/lv.js
index bca2e3e6..4c85d018 100644
--- a/plugins/smiley/lang/lv.js
+++ b/plugins/smiley/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'lv', {
diff --git a/plugins/smiley/lang/mk.js b/plugins/smiley/lang/mk.js
index 5b05ee1b..7f90180b 100644
--- a/plugins/smiley/lang/mk.js
+++ b/plugins/smiley/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'mk', {
diff --git a/plugins/smiley/lang/mn.js b/plugins/smiley/lang/mn.js
index 7cf191e8..82e9c148 100644
--- a/plugins/smiley/lang/mn.js
+++ b/plugins/smiley/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'mn', {
diff --git a/plugins/smiley/lang/ms.js b/plugins/smiley/lang/ms.js
index 25b2b22f..c51509ad 100644
--- a/plugins/smiley/lang/ms.js
+++ b/plugins/smiley/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'ms', {
diff --git a/plugins/smiley/lang/nb.js b/plugins/smiley/lang/nb.js
index d299fdb9..82add4d3 100644
--- a/plugins/smiley/lang/nb.js
+++ b/plugins/smiley/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'nb', {
diff --git a/plugins/smiley/lang/nl.js b/plugins/smiley/lang/nl.js
index d69d61f8..de9dfdc8 100644
--- a/plugins/smiley/lang/nl.js
+++ b/plugins/smiley/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'nl', {
diff --git a/plugins/smiley/lang/no.js b/plugins/smiley/lang/no.js
index a51d8d82..6a20d6b5 100644
--- a/plugins/smiley/lang/no.js
+++ b/plugins/smiley/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'no', {
diff --git a/plugins/smiley/lang/oc.js b/plugins/smiley/lang/oc.js
index 0f534c9f..0780bd79 100644
--- a/plugins/smiley/lang/oc.js
+++ b/plugins/smiley/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'oc', {
diff --git a/plugins/smiley/lang/pl.js b/plugins/smiley/lang/pl.js
index 1f816755..89240913 100644
--- a/plugins/smiley/lang/pl.js
+++ b/plugins/smiley/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'pl', {
diff --git a/plugins/smiley/lang/pt-br.js b/plugins/smiley/lang/pt-br.js
index 34fcd1af..8b03c814 100644
--- a/plugins/smiley/lang/pt-br.js
+++ b/plugins/smiley/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'pt-br', {
diff --git a/plugins/smiley/lang/pt.js b/plugins/smiley/lang/pt.js
index 0d105916..750d657c 100644
--- a/plugins/smiley/lang/pt.js
+++ b/plugins/smiley/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'pt', {
diff --git a/plugins/smiley/lang/ro.js b/plugins/smiley/lang/ro.js
index d8a5229a..31e128f4 100644
--- a/plugins/smiley/lang/ro.js
+++ b/plugins/smiley/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'ro', {
diff --git a/plugins/smiley/lang/ru.js b/plugins/smiley/lang/ru.js
index 3cd487c8..e2103641 100644
--- a/plugins/smiley/lang/ru.js
+++ b/plugins/smiley/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'ru', {
diff --git a/plugins/smiley/lang/si.js b/plugins/smiley/lang/si.js
index 631b2ddb..5999c6ab 100644
--- a/plugins/smiley/lang/si.js
+++ b/plugins/smiley/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'si', {
diff --git a/plugins/smiley/lang/sk.js b/plugins/smiley/lang/sk.js
index e1acd94b..18433fb6 100644
--- a/plugins/smiley/lang/sk.js
+++ b/plugins/smiley/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'sk', {
diff --git a/plugins/smiley/lang/sl.js b/plugins/smiley/lang/sl.js
index 9bbbdd30..1efca31e 100644
--- a/plugins/smiley/lang/sl.js
+++ b/plugins/smiley/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'sl', {
diff --git a/plugins/smiley/lang/sq.js b/plugins/smiley/lang/sq.js
index 4f1cbcac..4007d501 100644
--- a/plugins/smiley/lang/sq.js
+++ b/plugins/smiley/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'sq', {
diff --git a/plugins/smiley/lang/sr-latn.js b/plugins/smiley/lang/sr-latn.js
index 3848c3e6..2352026c 100644
--- a/plugins/smiley/lang/sr-latn.js
+++ b/plugins/smiley/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'sr-latn', {
diff --git a/plugins/smiley/lang/sr.js b/plugins/smiley/lang/sr.js
index 4376c679..8ecd3a0c 100644
--- a/plugins/smiley/lang/sr.js
+++ b/plugins/smiley/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'sr', {
diff --git a/plugins/smiley/lang/sv.js b/plugins/smiley/lang/sv.js
index 205c6e9d..35571b49 100644
--- a/plugins/smiley/lang/sv.js
+++ b/plugins/smiley/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'sv', {
diff --git a/plugins/smiley/lang/th.js b/plugins/smiley/lang/th.js
index b593ae0f..c2a9ee54 100644
--- a/plugins/smiley/lang/th.js
+++ b/plugins/smiley/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'th', {
diff --git a/plugins/smiley/lang/tr.js b/plugins/smiley/lang/tr.js
index 17313ed1..82f90fd2 100644
--- a/plugins/smiley/lang/tr.js
+++ b/plugins/smiley/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'tr', {
diff --git a/plugins/smiley/lang/tt.js b/plugins/smiley/lang/tt.js
index 1f839818..2732d21e 100644
--- a/plugins/smiley/lang/tt.js
+++ b/plugins/smiley/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'tt', {
diff --git a/plugins/smiley/lang/ug.js b/plugins/smiley/lang/ug.js
index 12e85539..5dc84ae2 100644
--- a/plugins/smiley/lang/ug.js
+++ b/plugins/smiley/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'ug', {
diff --git a/plugins/smiley/lang/uk.js b/plugins/smiley/lang/uk.js
index 220979d0..b005b5ff 100644
--- a/plugins/smiley/lang/uk.js
+++ b/plugins/smiley/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'uk', {
diff --git a/plugins/smiley/lang/vi.js b/plugins/smiley/lang/vi.js
index 3f7e26b3..af362f8b 100644
--- a/plugins/smiley/lang/vi.js
+++ b/plugins/smiley/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'vi', {
diff --git a/plugins/smiley/lang/zh-cn.js b/plugins/smiley/lang/zh-cn.js
index 2fd3f398..142f6dde 100644
--- a/plugins/smiley/lang/zh-cn.js
+++ b/plugins/smiley/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'zh-cn', {
diff --git a/plugins/smiley/lang/zh.js b/plugins/smiley/lang/zh.js
index 878c1b40..c0ee4fe9 100644
--- a/plugins/smiley/lang/zh.js
+++ b/plugins/smiley/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'smiley', 'zh', {
diff --git a/plugins/smiley/plugin.js b/plugins/smiley/plugin.js
index d527bcaf..d2602f39 100644
--- a/plugins/smiley/plugin.js
+++ b/plugins/smiley/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/sourcearea/lang/af.js b/plugins/sourcearea/lang/af.js
index 8b7c739b..4ededfe7 100644
--- a/plugins/sourcearea/lang/af.js
+++ b/plugins/sourcearea/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'af', {
diff --git a/plugins/sourcearea/lang/ar.js b/plugins/sourcearea/lang/ar.js
index 90443dd6..10dd44a0 100644
--- a/plugins/sourcearea/lang/ar.js
+++ b/plugins/sourcearea/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'ar', {
diff --git a/plugins/sourcearea/lang/az.js b/plugins/sourcearea/lang/az.js
index ef1f091d..e6cc92da 100644
--- a/plugins/sourcearea/lang/az.js
+++ b/plugins/sourcearea/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'az', {
diff --git a/plugins/sourcearea/lang/bg.js b/plugins/sourcearea/lang/bg.js
index 2fda2964..3b3001f9 100644
--- a/plugins/sourcearea/lang/bg.js
+++ b/plugins/sourcearea/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'bg', {
diff --git a/plugins/sourcearea/lang/bn.js b/plugins/sourcearea/lang/bn.js
index 4837b3ab..f67ec44e 100644
--- a/plugins/sourcearea/lang/bn.js
+++ b/plugins/sourcearea/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'bn', {
diff --git a/plugins/sourcearea/lang/bs.js b/plugins/sourcearea/lang/bs.js
index 0aa1af65..95a77842 100644
--- a/plugins/sourcearea/lang/bs.js
+++ b/plugins/sourcearea/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'bs', {
diff --git a/plugins/sourcearea/lang/ca.js b/plugins/sourcearea/lang/ca.js
index ad0075a6..467b1ac2 100644
--- a/plugins/sourcearea/lang/ca.js
+++ b/plugins/sourcearea/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'ca', {
diff --git a/plugins/sourcearea/lang/cs.js b/plugins/sourcearea/lang/cs.js
index ba87eafc..29a2811d 100644
--- a/plugins/sourcearea/lang/cs.js
+++ b/plugins/sourcearea/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'cs', {
diff --git a/plugins/sourcearea/lang/cy.js b/plugins/sourcearea/lang/cy.js
index d24f6c48..0ed873d2 100644
--- a/plugins/sourcearea/lang/cy.js
+++ b/plugins/sourcearea/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'cy', {
diff --git a/plugins/sourcearea/lang/da.js b/plugins/sourcearea/lang/da.js
index 5c45b3f2..f5ab8b96 100644
--- a/plugins/sourcearea/lang/da.js
+++ b/plugins/sourcearea/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'da', {
diff --git a/plugins/sourcearea/lang/de-ch.js b/plugins/sourcearea/lang/de-ch.js
index 6ec4d60e..47b6d132 100644
--- a/plugins/sourcearea/lang/de-ch.js
+++ b/plugins/sourcearea/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'de-ch', {
diff --git a/plugins/sourcearea/lang/de.js b/plugins/sourcearea/lang/de.js
index 22d96cb0..44215a28 100644
--- a/plugins/sourcearea/lang/de.js
+++ b/plugins/sourcearea/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'de', {
diff --git a/plugins/sourcearea/lang/el.js b/plugins/sourcearea/lang/el.js
index 4ef68976..e9e7e43b 100644
--- a/plugins/sourcearea/lang/el.js
+++ b/plugins/sourcearea/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'el', {
diff --git a/plugins/sourcearea/lang/en-au.js b/plugins/sourcearea/lang/en-au.js
index cd5498fd..d53df584 100644
--- a/plugins/sourcearea/lang/en-au.js
+++ b/plugins/sourcearea/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'en-au', {
diff --git a/plugins/sourcearea/lang/en-ca.js b/plugins/sourcearea/lang/en-ca.js
index 4bba181a..b7be784d 100644
--- a/plugins/sourcearea/lang/en-ca.js
+++ b/plugins/sourcearea/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'en-ca', {
diff --git a/plugins/sourcearea/lang/en-gb.js b/plugins/sourcearea/lang/en-gb.js
index ec9b6ae7..2ee230da 100644
--- a/plugins/sourcearea/lang/en-gb.js
+++ b/plugins/sourcearea/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'en-gb', {
diff --git a/plugins/sourcearea/lang/en.js b/plugins/sourcearea/lang/en.js
index 8d594994..ce564a57 100644
--- a/plugins/sourcearea/lang/en.js
+++ b/plugins/sourcearea/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'en', {
diff --git a/plugins/sourcearea/lang/eo.js b/plugins/sourcearea/lang/eo.js
index e91e2d85..5b2aec39 100644
--- a/plugins/sourcearea/lang/eo.js
+++ b/plugins/sourcearea/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'eo', {
diff --git a/plugins/sourcearea/lang/es-mx.js b/plugins/sourcearea/lang/es-mx.js
index 113f2c2f..078c9f17 100644
--- a/plugins/sourcearea/lang/es-mx.js
+++ b/plugins/sourcearea/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'es-mx', {
diff --git a/plugins/sourcearea/lang/es.js b/plugins/sourcearea/lang/es.js
index 4c80661e..a12f588c 100644
--- a/plugins/sourcearea/lang/es.js
+++ b/plugins/sourcearea/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'es', {
diff --git a/plugins/sourcearea/lang/et.js b/plugins/sourcearea/lang/et.js
index 48bc0ee1..63bf58d7 100644
--- a/plugins/sourcearea/lang/et.js
+++ b/plugins/sourcearea/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'et', {
diff --git a/plugins/sourcearea/lang/eu.js b/plugins/sourcearea/lang/eu.js
index 5a0b5ba3..4fca2640 100644
--- a/plugins/sourcearea/lang/eu.js
+++ b/plugins/sourcearea/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'eu', {
diff --git a/plugins/sourcearea/lang/fa.js b/plugins/sourcearea/lang/fa.js
index ada331c0..a26df313 100644
--- a/plugins/sourcearea/lang/fa.js
+++ b/plugins/sourcearea/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'fa', {
diff --git a/plugins/sourcearea/lang/fi.js b/plugins/sourcearea/lang/fi.js
index 1b3f1d14..0d3ee344 100644
--- a/plugins/sourcearea/lang/fi.js
+++ b/plugins/sourcearea/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'fi', {
diff --git a/plugins/sourcearea/lang/fo.js b/plugins/sourcearea/lang/fo.js
index a65c304c..09298890 100644
--- a/plugins/sourcearea/lang/fo.js
+++ b/plugins/sourcearea/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'fo', {
diff --git a/plugins/sourcearea/lang/fr-ca.js b/plugins/sourcearea/lang/fr-ca.js
index cc3abee8..6849eec8 100644
--- a/plugins/sourcearea/lang/fr-ca.js
+++ b/plugins/sourcearea/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'fr-ca', {
diff --git a/plugins/sourcearea/lang/fr.js b/plugins/sourcearea/lang/fr.js
index 4351d13c..6cfcd3b2 100644
--- a/plugins/sourcearea/lang/fr.js
+++ b/plugins/sourcearea/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'fr', {
diff --git a/plugins/sourcearea/lang/gl.js b/plugins/sourcearea/lang/gl.js
index 780a2521..93a606e9 100644
--- a/plugins/sourcearea/lang/gl.js
+++ b/plugins/sourcearea/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'gl', {
diff --git a/plugins/sourcearea/lang/gu.js b/plugins/sourcearea/lang/gu.js
index 75472a1b..1eb8bd93 100644
--- a/plugins/sourcearea/lang/gu.js
+++ b/plugins/sourcearea/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'gu', {
diff --git a/plugins/sourcearea/lang/he.js b/plugins/sourcearea/lang/he.js
index c5ae6ce4..678995f1 100644
--- a/plugins/sourcearea/lang/he.js
+++ b/plugins/sourcearea/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'he', {
diff --git a/plugins/sourcearea/lang/hi.js b/plugins/sourcearea/lang/hi.js
index 98e25a93..73858972 100644
--- a/plugins/sourcearea/lang/hi.js
+++ b/plugins/sourcearea/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'hi', {
diff --git a/plugins/sourcearea/lang/hr.js b/plugins/sourcearea/lang/hr.js
index 98213aad..137410be 100644
--- a/plugins/sourcearea/lang/hr.js
+++ b/plugins/sourcearea/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'hr', {
diff --git a/plugins/sourcearea/lang/hu.js b/plugins/sourcearea/lang/hu.js
index d25f1b39..0245ad06 100644
--- a/plugins/sourcearea/lang/hu.js
+++ b/plugins/sourcearea/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'hu', {
diff --git a/plugins/sourcearea/lang/id.js b/plugins/sourcearea/lang/id.js
index f256bfc8..5b0e02d9 100644
--- a/plugins/sourcearea/lang/id.js
+++ b/plugins/sourcearea/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'id', {
diff --git a/plugins/sourcearea/lang/is.js b/plugins/sourcearea/lang/is.js
index cee74f46..55c5591b 100644
--- a/plugins/sourcearea/lang/is.js
+++ b/plugins/sourcearea/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'is', {
diff --git a/plugins/sourcearea/lang/it.js b/plugins/sourcearea/lang/it.js
index 7a667316..8d42382b 100644
--- a/plugins/sourcearea/lang/it.js
+++ b/plugins/sourcearea/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'it', {
diff --git a/plugins/sourcearea/lang/ja.js b/plugins/sourcearea/lang/ja.js
index 38d1656f..87c61b27 100644
--- a/plugins/sourcearea/lang/ja.js
+++ b/plugins/sourcearea/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'ja', {
diff --git a/plugins/sourcearea/lang/ka.js b/plugins/sourcearea/lang/ka.js
index 4b6d5aca..4e888c48 100644
--- a/plugins/sourcearea/lang/ka.js
+++ b/plugins/sourcearea/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'ka', {
diff --git a/plugins/sourcearea/lang/km.js b/plugins/sourcearea/lang/km.js
index 793b8706..2e64624f 100644
--- a/plugins/sourcearea/lang/km.js
+++ b/plugins/sourcearea/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'km', {
diff --git a/plugins/sourcearea/lang/ko.js b/plugins/sourcearea/lang/ko.js
index 554bfb1f..79d690c5 100644
--- a/plugins/sourcearea/lang/ko.js
+++ b/plugins/sourcearea/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'ko', {
diff --git a/plugins/sourcearea/lang/ku.js b/plugins/sourcearea/lang/ku.js
index 57d19034..464fb7d1 100644
--- a/plugins/sourcearea/lang/ku.js
+++ b/plugins/sourcearea/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'ku', {
diff --git a/plugins/sourcearea/lang/lt.js b/plugins/sourcearea/lang/lt.js
index c54c9676..5a92fdf4 100644
--- a/plugins/sourcearea/lang/lt.js
+++ b/plugins/sourcearea/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'lt', {
diff --git a/plugins/sourcearea/lang/lv.js b/plugins/sourcearea/lang/lv.js
index 2db16108..7d9f1073 100644
--- a/plugins/sourcearea/lang/lv.js
+++ b/plugins/sourcearea/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'lv', {
diff --git a/plugins/sourcearea/lang/mk.js b/plugins/sourcearea/lang/mk.js
index bd2f9ca8..785d6329 100644
--- a/plugins/sourcearea/lang/mk.js
+++ b/plugins/sourcearea/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'mk', {
diff --git a/plugins/sourcearea/lang/mn.js b/plugins/sourcearea/lang/mn.js
index b456351c..6ec7385b 100644
--- a/plugins/sourcearea/lang/mn.js
+++ b/plugins/sourcearea/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'mn', {
diff --git a/plugins/sourcearea/lang/ms.js b/plugins/sourcearea/lang/ms.js
index f32f5af2..5c74f59e 100644
--- a/plugins/sourcearea/lang/ms.js
+++ b/plugins/sourcearea/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'ms', {
diff --git a/plugins/sourcearea/lang/nb.js b/plugins/sourcearea/lang/nb.js
index 6e9765cc..64e3062e 100644
--- a/plugins/sourcearea/lang/nb.js
+++ b/plugins/sourcearea/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'nb', {
diff --git a/plugins/sourcearea/lang/nl.js b/plugins/sourcearea/lang/nl.js
index 5b1f3970..f7bdc98b 100644
--- a/plugins/sourcearea/lang/nl.js
+++ b/plugins/sourcearea/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'nl', {
diff --git a/plugins/sourcearea/lang/no.js b/plugins/sourcearea/lang/no.js
index 47fceddc..365b7b5e 100644
--- a/plugins/sourcearea/lang/no.js
+++ b/plugins/sourcearea/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'no', {
diff --git a/plugins/sourcearea/lang/oc.js b/plugins/sourcearea/lang/oc.js
index b321aa48..9802eba8 100644
--- a/plugins/sourcearea/lang/oc.js
+++ b/plugins/sourcearea/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'oc', {
diff --git a/plugins/sourcearea/lang/pl.js b/plugins/sourcearea/lang/pl.js
index 32c89565..0dfdf44a 100644
--- a/plugins/sourcearea/lang/pl.js
+++ b/plugins/sourcearea/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'pl', {
diff --git a/plugins/sourcearea/lang/pt-br.js b/plugins/sourcearea/lang/pt-br.js
index 1de524a8..a0b4d4b3 100644
--- a/plugins/sourcearea/lang/pt-br.js
+++ b/plugins/sourcearea/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'pt-br', {
diff --git a/plugins/sourcearea/lang/pt.js b/plugins/sourcearea/lang/pt.js
index 840fa0f7..c6e1bef8 100644
--- a/plugins/sourcearea/lang/pt.js
+++ b/plugins/sourcearea/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'pt', {
diff --git a/plugins/sourcearea/lang/ro.js b/plugins/sourcearea/lang/ro.js
index 2441e4a7..7b4bd087 100644
--- a/plugins/sourcearea/lang/ro.js
+++ b/plugins/sourcearea/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'ro', {
diff --git a/plugins/sourcearea/lang/ru.js b/plugins/sourcearea/lang/ru.js
index 01324b1d..5c283f4a 100644
--- a/plugins/sourcearea/lang/ru.js
+++ b/plugins/sourcearea/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'ru', {
diff --git a/plugins/sourcearea/lang/si.js b/plugins/sourcearea/lang/si.js
index 8f39cfc0..0ee36f67 100644
--- a/plugins/sourcearea/lang/si.js
+++ b/plugins/sourcearea/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'si', {
diff --git a/plugins/sourcearea/lang/sk.js b/plugins/sourcearea/lang/sk.js
index d998b1ba..7a558a20 100644
--- a/plugins/sourcearea/lang/sk.js
+++ b/plugins/sourcearea/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'sk', {
diff --git a/plugins/sourcearea/lang/sl.js b/plugins/sourcearea/lang/sl.js
index ee072577..db446466 100644
--- a/plugins/sourcearea/lang/sl.js
+++ b/plugins/sourcearea/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'sl', {
diff --git a/plugins/sourcearea/lang/sq.js b/plugins/sourcearea/lang/sq.js
index 753a64a3..79af9ad2 100644
--- a/plugins/sourcearea/lang/sq.js
+++ b/plugins/sourcearea/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'sq', {
diff --git a/plugins/sourcearea/lang/sr-latn.js b/plugins/sourcearea/lang/sr-latn.js
index 42b9b878..f2181187 100644
--- a/plugins/sourcearea/lang/sr-latn.js
+++ b/plugins/sourcearea/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'sr-latn', {
diff --git a/plugins/sourcearea/lang/sr.js b/plugins/sourcearea/lang/sr.js
index 8d8b6c95..e5765926 100644
--- a/plugins/sourcearea/lang/sr.js
+++ b/plugins/sourcearea/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'sr', {
diff --git a/plugins/sourcearea/lang/sv.js b/plugins/sourcearea/lang/sv.js
index eeda8858..c8e10e5c 100644
--- a/plugins/sourcearea/lang/sv.js
+++ b/plugins/sourcearea/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'sv', {
diff --git a/plugins/sourcearea/lang/th.js b/plugins/sourcearea/lang/th.js
index a619a419..894c481c 100644
--- a/plugins/sourcearea/lang/th.js
+++ b/plugins/sourcearea/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'th', {
diff --git a/plugins/sourcearea/lang/tr.js b/plugins/sourcearea/lang/tr.js
index 602092cd..f7f69f5f 100644
--- a/plugins/sourcearea/lang/tr.js
+++ b/plugins/sourcearea/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'tr', {
diff --git a/plugins/sourcearea/lang/tt.js b/plugins/sourcearea/lang/tt.js
index 142f231d..d7e02f22 100644
--- a/plugins/sourcearea/lang/tt.js
+++ b/plugins/sourcearea/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'tt', {
diff --git a/plugins/sourcearea/lang/ug.js b/plugins/sourcearea/lang/ug.js
index abbea631..3c4d8aa2 100644
--- a/plugins/sourcearea/lang/ug.js
+++ b/plugins/sourcearea/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'ug', {
diff --git a/plugins/sourcearea/lang/uk.js b/plugins/sourcearea/lang/uk.js
index b9375d55..353ffeb6 100644
--- a/plugins/sourcearea/lang/uk.js
+++ b/plugins/sourcearea/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'uk', {
diff --git a/plugins/sourcearea/lang/vi.js b/plugins/sourcearea/lang/vi.js
index 421e7b5c..7ef744ce 100644
--- a/plugins/sourcearea/lang/vi.js
+++ b/plugins/sourcearea/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'vi', {
diff --git a/plugins/sourcearea/lang/zh-cn.js b/plugins/sourcearea/lang/zh-cn.js
index 8b06940a..c7822001 100644
--- a/plugins/sourcearea/lang/zh-cn.js
+++ b/plugins/sourcearea/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'zh-cn', {
diff --git a/plugins/sourcearea/lang/zh.js b/plugins/sourcearea/lang/zh.js
index 096b2670..b23ff2aa 100644
--- a/plugins/sourcearea/lang/zh.js
+++ b/plugins/sourcearea/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'sourcearea', 'zh', {
diff --git a/plugins/sourcearea/plugin.js b/plugins/sourcearea/plugin.js
index be2bf5ce..ce2e014e 100644
--- a/plugins/sourcearea/plugin.js
+++ b/plugins/sourcearea/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/sourcedialog/dialogs/sourcedialog.js b/plugins/sourcedialog/dialogs/sourcedialog.js
index 70fb6540..534181f5 100755
--- a/plugins/sourcedialog/dialogs/sourcedialog.js
+++ b/plugins/sourcedialog/dialogs/sourcedialog.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/sourcedialog/lang/af.js b/plugins/sourcedialog/lang/af.js
index 94193a1a..1c91b67a 100644
--- a/plugins/sourcedialog/lang/af.js
+++ b/plugins/sourcedialog/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/ar.js b/plugins/sourcedialog/lang/ar.js
index 2c5adfa8..788ad581 100644
--- a/plugins/sourcedialog/lang/ar.js
+++ b/plugins/sourcedialog/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/az.js b/plugins/sourcedialog/lang/az.js
index 697f1b6d..06f7a28f 100644
--- a/plugins/sourcedialog/lang/az.js
+++ b/plugins/sourcedialog/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/bg.js b/plugins/sourcedialog/lang/bg.js
index f7d48b8d..7a97d8df 100644
--- a/plugins/sourcedialog/lang/bg.js
+++ b/plugins/sourcedialog/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/bn.js b/plugins/sourcedialog/lang/bn.js
index c7eb2d4b..968fa1f4 100644
--- a/plugins/sourcedialog/lang/bn.js
+++ b/plugins/sourcedialog/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/bs.js b/plugins/sourcedialog/lang/bs.js
index e4d150c8..e88090c9 100644
--- a/plugins/sourcedialog/lang/bs.js
+++ b/plugins/sourcedialog/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/ca.js b/plugins/sourcedialog/lang/ca.js
index 914c10bc..399373f0 100644
--- a/plugins/sourcedialog/lang/ca.js
+++ b/plugins/sourcedialog/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/cs.js b/plugins/sourcedialog/lang/cs.js
index e565a578..22aa44e5 100644
--- a/plugins/sourcedialog/lang/cs.js
+++ b/plugins/sourcedialog/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/cy.js b/plugins/sourcedialog/lang/cy.js
index a236f620..a1578274 100644
--- a/plugins/sourcedialog/lang/cy.js
+++ b/plugins/sourcedialog/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/da.js b/plugins/sourcedialog/lang/da.js
index 46a74558..5547fc92 100644
--- a/plugins/sourcedialog/lang/da.js
+++ b/plugins/sourcedialog/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/de-ch.js b/plugins/sourcedialog/lang/de-ch.js
index d3bd6b64..ef286214 100644
--- a/plugins/sourcedialog/lang/de-ch.js
+++ b/plugins/sourcedialog/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/de.js b/plugins/sourcedialog/lang/de.js
index 463b15a9..74f14440 100644
--- a/plugins/sourcedialog/lang/de.js
+++ b/plugins/sourcedialog/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/el.js b/plugins/sourcedialog/lang/el.js
index 6396e528..7f07d678 100644
--- a/plugins/sourcedialog/lang/el.js
+++ b/plugins/sourcedialog/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/en-au.js b/plugins/sourcedialog/lang/en-au.js
index c9db5931..78ac9f9a 100644
--- a/plugins/sourcedialog/lang/en-au.js
+++ b/plugins/sourcedialog/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/en-ca.js b/plugins/sourcedialog/lang/en-ca.js
index 16cfb2d7..cf088228 100644
--- a/plugins/sourcedialog/lang/en-ca.js
+++ b/plugins/sourcedialog/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/en-gb.js b/plugins/sourcedialog/lang/en-gb.js
index 23a797cc..6d8308b0 100644
--- a/plugins/sourcedialog/lang/en-gb.js
+++ b/plugins/sourcedialog/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/en.js b/plugins/sourcedialog/lang/en.js
index 6383d7fb..1ef08f40 100644
--- a/plugins/sourcedialog/lang/en.js
+++ b/plugins/sourcedialog/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/eo.js b/plugins/sourcedialog/lang/eo.js
index b6a89daa..c95edd97 100644
--- a/plugins/sourcedialog/lang/eo.js
+++ b/plugins/sourcedialog/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/es-mx.js b/plugins/sourcedialog/lang/es-mx.js
index 8694f0f6..032b7467 100644
--- a/plugins/sourcedialog/lang/es-mx.js
+++ b/plugins/sourcedialog/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/es.js b/plugins/sourcedialog/lang/es.js
index ee3b14f9..ac06a1b4 100644
--- a/plugins/sourcedialog/lang/es.js
+++ b/plugins/sourcedialog/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/et.js b/plugins/sourcedialog/lang/et.js
index 609aa1ed..3f47d5d6 100644
--- a/plugins/sourcedialog/lang/et.js
+++ b/plugins/sourcedialog/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/eu.js b/plugins/sourcedialog/lang/eu.js
index 6bc4e13d..d977c5ed 100644
--- a/plugins/sourcedialog/lang/eu.js
+++ b/plugins/sourcedialog/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/fa.js b/plugins/sourcedialog/lang/fa.js
index f25c939b..185d4b8f 100644
--- a/plugins/sourcedialog/lang/fa.js
+++ b/plugins/sourcedialog/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/fi.js b/plugins/sourcedialog/lang/fi.js
index a233225d..4a6741e6 100644
--- a/plugins/sourcedialog/lang/fi.js
+++ b/plugins/sourcedialog/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/fo.js b/plugins/sourcedialog/lang/fo.js
index 17de8353..b39f779e 100644
--- a/plugins/sourcedialog/lang/fo.js
+++ b/plugins/sourcedialog/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/fr-ca.js b/plugins/sourcedialog/lang/fr-ca.js
index f6ea86ad..c50ed72a 100644
--- a/plugins/sourcedialog/lang/fr-ca.js
+++ b/plugins/sourcedialog/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/fr.js b/plugins/sourcedialog/lang/fr.js
index b407b75d..be6a9380 100644
--- a/plugins/sourcedialog/lang/fr.js
+++ b/plugins/sourcedialog/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/gl.js b/plugins/sourcedialog/lang/gl.js
index c47cac89..2fc2b688 100644
--- a/plugins/sourcedialog/lang/gl.js
+++ b/plugins/sourcedialog/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/gu.js b/plugins/sourcedialog/lang/gu.js
index 6354e1c2..8a0ad177 100644
--- a/plugins/sourcedialog/lang/gu.js
+++ b/plugins/sourcedialog/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/he.js b/plugins/sourcedialog/lang/he.js
index 902e6a0b..4a59db35 100644
--- a/plugins/sourcedialog/lang/he.js
+++ b/plugins/sourcedialog/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/hi.js b/plugins/sourcedialog/lang/hi.js
index 078b4363..d65d860a 100644
--- a/plugins/sourcedialog/lang/hi.js
+++ b/plugins/sourcedialog/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/hr.js b/plugins/sourcedialog/lang/hr.js
index 7305f417..1684d605 100644
--- a/plugins/sourcedialog/lang/hr.js
+++ b/plugins/sourcedialog/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/hu.js b/plugins/sourcedialog/lang/hu.js
index fe84e25c..ebeac400 100644
--- a/plugins/sourcedialog/lang/hu.js
+++ b/plugins/sourcedialog/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/id.js b/plugins/sourcedialog/lang/id.js
index 14f05155..4ad24f5e 100644
--- a/plugins/sourcedialog/lang/id.js
+++ b/plugins/sourcedialog/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/is.js b/plugins/sourcedialog/lang/is.js
index 6d14bcb4..255ebd75 100644
--- a/plugins/sourcedialog/lang/is.js
+++ b/plugins/sourcedialog/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/it.js b/plugins/sourcedialog/lang/it.js
index 41a4c0b6..e3d55292 100644
--- a/plugins/sourcedialog/lang/it.js
+++ b/plugins/sourcedialog/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/ja.js b/plugins/sourcedialog/lang/ja.js
index 31d7932d..8d8f5110 100644
--- a/plugins/sourcedialog/lang/ja.js
+++ b/plugins/sourcedialog/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/ka.js b/plugins/sourcedialog/lang/ka.js
index 63e0a162..b20387c1 100644
--- a/plugins/sourcedialog/lang/ka.js
+++ b/plugins/sourcedialog/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/km.js b/plugins/sourcedialog/lang/km.js
index f2067d3c..ab99233a 100644
--- a/plugins/sourcedialog/lang/km.js
+++ b/plugins/sourcedialog/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/ko.js b/plugins/sourcedialog/lang/ko.js
index f112ddd5..469f5641 100644
--- a/plugins/sourcedialog/lang/ko.js
+++ b/plugins/sourcedialog/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/ku.js b/plugins/sourcedialog/lang/ku.js
index 08385774..06bc2d4a 100644
--- a/plugins/sourcedialog/lang/ku.js
+++ b/plugins/sourcedialog/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/lt.js b/plugins/sourcedialog/lang/lt.js
index 59bc5d54..b4c9f347 100644
--- a/plugins/sourcedialog/lang/lt.js
+++ b/plugins/sourcedialog/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/lv.js b/plugins/sourcedialog/lang/lv.js
index a6c74c54..c3c93da1 100644
--- a/plugins/sourcedialog/lang/lv.js
+++ b/plugins/sourcedialog/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/mn.js b/plugins/sourcedialog/lang/mn.js
index 10d98855..0645138d 100644
--- a/plugins/sourcedialog/lang/mn.js
+++ b/plugins/sourcedialog/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/ms.js b/plugins/sourcedialog/lang/ms.js
index d78053e4..b00edf09 100644
--- a/plugins/sourcedialog/lang/ms.js
+++ b/plugins/sourcedialog/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/nb.js b/plugins/sourcedialog/lang/nb.js
index 74a9ddfd..02201d2a 100644
--- a/plugins/sourcedialog/lang/nb.js
+++ b/plugins/sourcedialog/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/nl.js b/plugins/sourcedialog/lang/nl.js
index 15e473ce..11f1bdc5 100644
--- a/plugins/sourcedialog/lang/nl.js
+++ b/plugins/sourcedialog/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/no.js b/plugins/sourcedialog/lang/no.js
index 22c9c80a..183cc16a 100644
--- a/plugins/sourcedialog/lang/no.js
+++ b/plugins/sourcedialog/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/oc.js b/plugins/sourcedialog/lang/oc.js
index fdea5012..80ec602e 100644
--- a/plugins/sourcedialog/lang/oc.js
+++ b/plugins/sourcedialog/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/pl.js b/plugins/sourcedialog/lang/pl.js
index ff585900..02276d06 100644
--- a/plugins/sourcedialog/lang/pl.js
+++ b/plugins/sourcedialog/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/pt-br.js b/plugins/sourcedialog/lang/pt-br.js
index 25a274e8..8aa5f017 100644
--- a/plugins/sourcedialog/lang/pt-br.js
+++ b/plugins/sourcedialog/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/pt.js b/plugins/sourcedialog/lang/pt.js
index e6bfaa76..e6c49218 100644
--- a/plugins/sourcedialog/lang/pt.js
+++ b/plugins/sourcedialog/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/ro.js b/plugins/sourcedialog/lang/ro.js
index c19371f4..44866e7c 100644
--- a/plugins/sourcedialog/lang/ro.js
+++ b/plugins/sourcedialog/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/ru.js b/plugins/sourcedialog/lang/ru.js
index 8e139297..e1c52a11 100644
--- a/plugins/sourcedialog/lang/ru.js
+++ b/plugins/sourcedialog/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/si.js b/plugins/sourcedialog/lang/si.js
index 376d7ef5..2b7bb8fc 100644
--- a/plugins/sourcedialog/lang/si.js
+++ b/plugins/sourcedialog/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/sk.js b/plugins/sourcedialog/lang/sk.js
index 6c2500bf..fd9d0f73 100644
--- a/plugins/sourcedialog/lang/sk.js
+++ b/plugins/sourcedialog/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/sl.js b/plugins/sourcedialog/lang/sl.js
index 42a07196..9176c18d 100644
--- a/plugins/sourcedialog/lang/sl.js
+++ b/plugins/sourcedialog/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/sq.js b/plugins/sourcedialog/lang/sq.js
index de196afc..56c2dc8e 100644
--- a/plugins/sourcedialog/lang/sq.js
+++ b/plugins/sourcedialog/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/sr-latn.js b/plugins/sourcedialog/lang/sr-latn.js
index ee32eda1..1bcf83b7 100644
--- a/plugins/sourcedialog/lang/sr-latn.js
+++ b/plugins/sourcedialog/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/sr.js b/plugins/sourcedialog/lang/sr.js
index 98c8b8f7..ed416103 100644
--- a/plugins/sourcedialog/lang/sr.js
+++ b/plugins/sourcedialog/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/sv.js b/plugins/sourcedialog/lang/sv.js
index 7ecefe55..b029a39a 100644
--- a/plugins/sourcedialog/lang/sv.js
+++ b/plugins/sourcedialog/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/th.js b/plugins/sourcedialog/lang/th.js
index 4aea37c7..6bc7a94e 100644
--- a/plugins/sourcedialog/lang/th.js
+++ b/plugins/sourcedialog/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/tr.js b/plugins/sourcedialog/lang/tr.js
index 3c3c82a2..3ea3623e 100644
--- a/plugins/sourcedialog/lang/tr.js
+++ b/plugins/sourcedialog/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/tt.js b/plugins/sourcedialog/lang/tt.js
index 86480e43..85182cd8 100644
--- a/plugins/sourcedialog/lang/tt.js
+++ b/plugins/sourcedialog/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/ug.js b/plugins/sourcedialog/lang/ug.js
index 8cac653b..b9bb1993 100644
--- a/plugins/sourcedialog/lang/ug.js
+++ b/plugins/sourcedialog/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/uk.js b/plugins/sourcedialog/lang/uk.js
index cbd83570..af8cad0c 100644
--- a/plugins/sourcedialog/lang/uk.js
+++ b/plugins/sourcedialog/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/vi.js b/plugins/sourcedialog/lang/vi.js
index 411edc12..33dd4b15 100644
--- a/plugins/sourcedialog/lang/vi.js
+++ b/plugins/sourcedialog/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/zh-cn.js b/plugins/sourcedialog/lang/zh-cn.js
index e785167c..f4709c5f 100644
--- a/plugins/sourcedialog/lang/zh-cn.js
+++ b/plugins/sourcedialog/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/lang/zh.js b/plugins/sourcedialog/lang/zh.js
index 83dbf7c3..b4c976eb 100644
--- a/plugins/sourcedialog/lang/zh.js
+++ b/plugins/sourcedialog/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/sourcedialog/plugin.js b/plugins/sourcedialog/plugin.js
index d690bdbb..99f26102 100644
--- a/plugins/sourcedialog/plugin.js
+++ b/plugins/sourcedialog/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/sourcedialog/samples/sourcedialog.html b/plugins/sourcedialog/samples/sourcedialog.html
index ddaefb3a..516c927a 100644
--- a/plugins/sourcedialog/samples/sourcedialog.html
+++ b/plugins/sourcedialog/samples/sourcedialog.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -114,7 +114,7 @@ CKEDITOR.replace( 'textarea_id', {
 				https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/specialchar/dialogs/lang/_translationstatus.txt b/plugins/specialchar/dialogs/lang/_translationstatus.txt
index 422ab45c..468958ed 100644
--- a/plugins/specialchar/dialogs/lang/_translationstatus.txt
+++ b/plugins/specialchar/dialogs/lang/_translationstatus.txt
@@ -1,4 +1,4 @@
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 cs.js      Found: 118 Missing: 0
diff --git a/plugins/specialchar/dialogs/lang/af.js b/plugins/specialchar/dialogs/lang/af.js
index 6873c13b..a667408b 100644
--- a/plugins/specialchar/dialogs/lang/af.js
+++ b/plugins/specialchar/dialogs/lang/af.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/ar.js b/plugins/specialchar/dialogs/lang/ar.js
index bd8b79f5..6bfd8e45 100644
--- a/plugins/specialchar/dialogs/lang/ar.js
+++ b/plugins/specialchar/dialogs/lang/ar.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/az.js b/plugins/specialchar/dialogs/lang/az.js
index 5d926c01..6713fa43 100644
--- a/plugins/specialchar/dialogs/lang/az.js
+++ b/plugins/specialchar/dialogs/lang/az.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/bg.js b/plugins/specialchar/dialogs/lang/bg.js
index d1a21c37..bd525eb4 100644
--- a/plugins/specialchar/dialogs/lang/bg.js
+++ b/plugins/specialchar/dialogs/lang/bg.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/ca.js b/plugins/specialchar/dialogs/lang/ca.js
index c88e03d4..4d91e004 100644
--- a/plugins/specialchar/dialogs/lang/ca.js
+++ b/plugins/specialchar/dialogs/lang/ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/cs.js b/plugins/specialchar/dialogs/lang/cs.js
index eed101a0..8c0c70c4 100644
--- a/plugins/specialchar/dialogs/lang/cs.js
+++ b/plugins/specialchar/dialogs/lang/cs.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/cy.js b/plugins/specialchar/dialogs/lang/cy.js
index cdd2893d..89c4353f 100644
--- a/plugins/specialchar/dialogs/lang/cy.js
+++ b/plugins/specialchar/dialogs/lang/cy.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/da.js b/plugins/specialchar/dialogs/lang/da.js
index f12b36ca..021e6118 100644
--- a/plugins/specialchar/dialogs/lang/da.js
+++ b/plugins/specialchar/dialogs/lang/da.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/de-ch.js b/plugins/specialchar/dialogs/lang/de-ch.js
index 267d7109..c4ff18a4 100644
--- a/plugins/specialchar/dialogs/lang/de-ch.js
+++ b/plugins/specialchar/dialogs/lang/de-ch.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/de.js b/plugins/specialchar/dialogs/lang/de.js
index 3bc5a795..ff1d87c9 100644
--- a/plugins/specialchar/dialogs/lang/de.js
+++ b/plugins/specialchar/dialogs/lang/de.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/el.js b/plugins/specialchar/dialogs/lang/el.js
index f30bb04c..d46feb69 100644
--- a/plugins/specialchar/dialogs/lang/el.js
+++ b/plugins/specialchar/dialogs/lang/el.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/en-au.js b/plugins/specialchar/dialogs/lang/en-au.js
index ae89ddbc..64cf1642 100644
--- a/plugins/specialchar/dialogs/lang/en-au.js
+++ b/plugins/specialchar/dialogs/lang/en-au.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/en-ca.js b/plugins/specialchar/dialogs/lang/en-ca.js
index 85c445f0..e2513ea4 100644
--- a/plugins/specialchar/dialogs/lang/en-ca.js
+++ b/plugins/specialchar/dialogs/lang/en-ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/en-gb.js b/plugins/specialchar/dialogs/lang/en-gb.js
index 26b3f405..828da8e3 100644
--- a/plugins/specialchar/dialogs/lang/en-gb.js
+++ b/plugins/specialchar/dialogs/lang/en-gb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/en.js b/plugins/specialchar/dialogs/lang/en.js
index fa99560f..0620b776 100644
--- a/plugins/specialchar/dialogs/lang/en.js
+++ b/plugins/specialchar/dialogs/lang/en.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/eo.js b/plugins/specialchar/dialogs/lang/eo.js
index 832515d0..836e0c55 100644
--- a/plugins/specialchar/dialogs/lang/eo.js
+++ b/plugins/specialchar/dialogs/lang/eo.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/es-mx.js b/plugins/specialchar/dialogs/lang/es-mx.js
index 72f8a8a5..e48f8bd7 100644
--- a/plugins/specialchar/dialogs/lang/es-mx.js
+++ b/plugins/specialchar/dialogs/lang/es-mx.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/es.js b/plugins/specialchar/dialogs/lang/es.js
index 6ac69a7a..a3b1657d 100644
--- a/plugins/specialchar/dialogs/lang/es.js
+++ b/plugins/specialchar/dialogs/lang/es.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/et.js b/plugins/specialchar/dialogs/lang/et.js
index cca3fea6..229bab10 100644
--- a/plugins/specialchar/dialogs/lang/et.js
+++ b/plugins/specialchar/dialogs/lang/et.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/eu.js b/plugins/specialchar/dialogs/lang/eu.js
index 24eb6f07..8101f30a 100644
--- a/plugins/specialchar/dialogs/lang/eu.js
+++ b/plugins/specialchar/dialogs/lang/eu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/fa.js b/plugins/specialchar/dialogs/lang/fa.js
index e8c16f3c..8aae0831 100644
--- a/plugins/specialchar/dialogs/lang/fa.js
+++ b/plugins/specialchar/dialogs/lang/fa.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/fi.js b/plugins/specialchar/dialogs/lang/fi.js
index 8a8e6a91..06d110b3 100644
--- a/plugins/specialchar/dialogs/lang/fi.js
+++ b/plugins/specialchar/dialogs/lang/fi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/fr-ca.js b/plugins/specialchar/dialogs/lang/fr-ca.js
index 14b3d8c2..8760ffb4 100644
--- a/plugins/specialchar/dialogs/lang/fr-ca.js
+++ b/plugins/specialchar/dialogs/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/fr.js b/plugins/specialchar/dialogs/lang/fr.js
index 9115ee85..c23f11f5 100644
--- a/plugins/specialchar/dialogs/lang/fr.js
+++ b/plugins/specialchar/dialogs/lang/fr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/gl.js b/plugins/specialchar/dialogs/lang/gl.js
index 8fe729f1..f5da5efc 100644
--- a/plugins/specialchar/dialogs/lang/gl.js
+++ b/plugins/specialchar/dialogs/lang/gl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/he.js b/plugins/specialchar/dialogs/lang/he.js
index 3bd9a5a8..8896b1c0 100644
--- a/plugins/specialchar/dialogs/lang/he.js
+++ b/plugins/specialchar/dialogs/lang/he.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/hr.js b/plugins/specialchar/dialogs/lang/hr.js
index f8c8addb..141212be 100644
--- a/plugins/specialchar/dialogs/lang/hr.js
+++ b/plugins/specialchar/dialogs/lang/hr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/hu.js b/plugins/specialchar/dialogs/lang/hu.js
index 65cb3d60..2c815dd9 100644
--- a/plugins/specialchar/dialogs/lang/hu.js
+++ b/plugins/specialchar/dialogs/lang/hu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/id.js b/plugins/specialchar/dialogs/lang/id.js
index f798fea5..558c57c9 100644
--- a/plugins/specialchar/dialogs/lang/id.js
+++ b/plugins/specialchar/dialogs/lang/id.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/it.js b/plugins/specialchar/dialogs/lang/it.js
index 58a9dd2c..ad83abd0 100644
--- a/plugins/specialchar/dialogs/lang/it.js
+++ b/plugins/specialchar/dialogs/lang/it.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/ja.js b/plugins/specialchar/dialogs/lang/ja.js
index 9e38d6c5..fce89372 100644
--- a/plugins/specialchar/dialogs/lang/ja.js
+++ b/plugins/specialchar/dialogs/lang/ja.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/km.js b/plugins/specialchar/dialogs/lang/km.js
index 6068f7a6..1b1b3068 100644
--- a/plugins/specialchar/dialogs/lang/km.js
+++ b/plugins/specialchar/dialogs/lang/km.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/ko.js b/plugins/specialchar/dialogs/lang/ko.js
index 72764a57..02aab39f 100644
--- a/plugins/specialchar/dialogs/lang/ko.js
+++ b/plugins/specialchar/dialogs/lang/ko.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/ku.js b/plugins/specialchar/dialogs/lang/ku.js
index 68f53648..8a505b0c 100644
--- a/plugins/specialchar/dialogs/lang/ku.js
+++ b/plugins/specialchar/dialogs/lang/ku.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/lt.js b/plugins/specialchar/dialogs/lang/lt.js
index 0ef36669..ae424a74 100644
--- a/plugins/specialchar/dialogs/lang/lt.js
+++ b/plugins/specialchar/dialogs/lang/lt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/lv.js b/plugins/specialchar/dialogs/lang/lv.js
index cfed1bf3..be697e7d 100644
--- a/plugins/specialchar/dialogs/lang/lv.js
+++ b/plugins/specialchar/dialogs/lang/lv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/nb.js b/plugins/specialchar/dialogs/lang/nb.js
index e32bf6d5..40d6c40f 100644
--- a/plugins/specialchar/dialogs/lang/nb.js
+++ b/plugins/specialchar/dialogs/lang/nb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/nl.js b/plugins/specialchar/dialogs/lang/nl.js
index d16cf540..d869e9d2 100644
--- a/plugins/specialchar/dialogs/lang/nl.js
+++ b/plugins/specialchar/dialogs/lang/nl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/no.js b/plugins/specialchar/dialogs/lang/no.js
index 54aad85a..e6a5c3ea 100644
--- a/plugins/specialchar/dialogs/lang/no.js
+++ b/plugins/specialchar/dialogs/lang/no.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/oc.js b/plugins/specialchar/dialogs/lang/oc.js
index 2d6e8d07..1d1b09fd 100644
--- a/plugins/specialchar/dialogs/lang/oc.js
+++ b/plugins/specialchar/dialogs/lang/oc.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/pl.js b/plugins/specialchar/dialogs/lang/pl.js
index f910c3d2..bb4eb348 100644
--- a/plugins/specialchar/dialogs/lang/pl.js
+++ b/plugins/specialchar/dialogs/lang/pl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/pt-br.js b/plugins/specialchar/dialogs/lang/pt-br.js
index 8846ae65..e1fed927 100644
--- a/plugins/specialchar/dialogs/lang/pt-br.js
+++ b/plugins/specialchar/dialogs/lang/pt-br.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/pt.js b/plugins/specialchar/dialogs/lang/pt.js
index 7f0a05cc..01157ce9 100644
--- a/plugins/specialchar/dialogs/lang/pt.js
+++ b/plugins/specialchar/dialogs/lang/pt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/ro.js b/plugins/specialchar/dialogs/lang/ro.js
index b1167ebe..0cdf22d4 100644
--- a/plugins/specialchar/dialogs/lang/ro.js
+++ b/plugins/specialchar/dialogs/lang/ro.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/ru.js b/plugins/specialchar/dialogs/lang/ru.js
index eab9922a..6ec79ada 100644
--- a/plugins/specialchar/dialogs/lang/ru.js
+++ b/plugins/specialchar/dialogs/lang/ru.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/si.js b/plugins/specialchar/dialogs/lang/si.js
index 677eacb7..27866d7a 100644
--- a/plugins/specialchar/dialogs/lang/si.js
+++ b/plugins/specialchar/dialogs/lang/si.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/sk.js b/plugins/specialchar/dialogs/lang/sk.js
index 967d80ce..85e250e7 100644
--- a/plugins/specialchar/dialogs/lang/sk.js
+++ b/plugins/specialchar/dialogs/lang/sk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/sl.js b/plugins/specialchar/dialogs/lang/sl.js
index 29ec3b52..857a6b0d 100644
--- a/plugins/specialchar/dialogs/lang/sl.js
+++ b/plugins/specialchar/dialogs/lang/sl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/sq.js b/plugins/specialchar/dialogs/lang/sq.js
index 0a43370c..f934098b 100644
--- a/plugins/specialchar/dialogs/lang/sq.js
+++ b/plugins/specialchar/dialogs/lang/sq.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/sr-latn.js b/plugins/specialchar/dialogs/lang/sr-latn.js
index 9f6a4d0d..6836c7f7 100644
--- a/plugins/specialchar/dialogs/lang/sr-latn.js
+++ b/plugins/specialchar/dialogs/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/sr.js b/plugins/specialchar/dialogs/lang/sr.js
index 43baab3f..7fb02350 100644
--- a/plugins/specialchar/dialogs/lang/sr.js
+++ b/plugins/specialchar/dialogs/lang/sr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/sv.js b/plugins/specialchar/dialogs/lang/sv.js
index 9df3b8ca..35ab63f8 100644
--- a/plugins/specialchar/dialogs/lang/sv.js
+++ b/plugins/specialchar/dialogs/lang/sv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/th.js b/plugins/specialchar/dialogs/lang/th.js
index d3916527..ea999597 100644
--- a/plugins/specialchar/dialogs/lang/th.js
+++ b/plugins/specialchar/dialogs/lang/th.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/tr.js b/plugins/specialchar/dialogs/lang/tr.js
index 66399a3f..1c4ecfbd 100644
--- a/plugins/specialchar/dialogs/lang/tr.js
+++ b/plugins/specialchar/dialogs/lang/tr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/tt.js b/plugins/specialchar/dialogs/lang/tt.js
index 4f096a36..0bbccf1a 100644
--- a/plugins/specialchar/dialogs/lang/tt.js
+++ b/plugins/specialchar/dialogs/lang/tt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/ug.js b/plugins/specialchar/dialogs/lang/ug.js
index 171d55de..634f211d 100644
--- a/plugins/specialchar/dialogs/lang/ug.js
+++ b/plugins/specialchar/dialogs/lang/ug.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/uk.js b/plugins/specialchar/dialogs/lang/uk.js
index 7bc36d00..63ffb655 100644
--- a/plugins/specialchar/dialogs/lang/uk.js
+++ b/plugins/specialchar/dialogs/lang/uk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/vi.js b/plugins/specialchar/dialogs/lang/vi.js
index f4ea00d6..9bc5c4ff 100644
--- a/plugins/specialchar/dialogs/lang/vi.js
+++ b/plugins/specialchar/dialogs/lang/vi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/zh-cn.js b/plugins/specialchar/dialogs/lang/zh-cn.js
index 002c1bd7..080c8b02 100644
--- a/plugins/specialchar/dialogs/lang/zh-cn.js
+++ b/plugins/specialchar/dialogs/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/lang/zh.js b/plugins/specialchar/dialogs/lang/zh.js
index 4da0b4f9..c13d290d 100644
--- a/plugins/specialchar/dialogs/lang/zh.js
+++ b/plugins/specialchar/dialogs/lang/zh.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/dialogs/specialchar.js b/plugins/specialchar/dialogs/specialchar.js
index 685cf902..40ccfa9a 100644
--- a/plugins/specialchar/dialogs/specialchar.js
+++ b/plugins/specialchar/dialogs/specialchar.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/specialchar/lang/_translationstatus.txt b/plugins/specialchar/lang/_translationstatus.txt
index 1e35af26..f35b1af4 100644
--- a/plugins/specialchar/lang/_translationstatus.txt
+++ b/plugins/specialchar/lang/_translationstatus.txt
@@ -1,4 +1,4 @@
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 
 af.js      Found: 3 Missing: 118
diff --git a/plugins/specialchar/lang/af.js b/plugins/specialchar/lang/af.js
index a7672ef0..bfd58594 100644
--- a/plugins/specialchar/lang/af.js
+++ b/plugins/specialchar/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'af', {
diff --git a/plugins/specialchar/lang/ar.js b/plugins/specialchar/lang/ar.js
index 5ea04b41..32e0b868 100644
--- a/plugins/specialchar/lang/ar.js
+++ b/plugins/specialchar/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'ar', {
diff --git a/plugins/specialchar/lang/az.js b/plugins/specialchar/lang/az.js
index b3b12165..a3225b6a 100644
--- a/plugins/specialchar/lang/az.js
+++ b/plugins/specialchar/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'az', {
diff --git a/plugins/specialchar/lang/bg.js b/plugins/specialchar/lang/bg.js
index 95f88469..b2e8ff02 100644
--- a/plugins/specialchar/lang/bg.js
+++ b/plugins/specialchar/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'bg', {
diff --git a/plugins/specialchar/lang/bn.js b/plugins/specialchar/lang/bn.js
index d40aed8d..403498ef 100644
--- a/plugins/specialchar/lang/bn.js
+++ b/plugins/specialchar/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'bn', {
diff --git a/plugins/specialchar/lang/bs.js b/plugins/specialchar/lang/bs.js
index b20c33c3..8c2d99b6 100644
--- a/plugins/specialchar/lang/bs.js
+++ b/plugins/specialchar/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'bs', {
diff --git a/plugins/specialchar/lang/ca.js b/plugins/specialchar/lang/ca.js
index 94340679..b1b6e4b9 100644
--- a/plugins/specialchar/lang/ca.js
+++ b/plugins/specialchar/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'ca', {
diff --git a/plugins/specialchar/lang/cs.js b/plugins/specialchar/lang/cs.js
index 87c3a802..44633ecd 100644
--- a/plugins/specialchar/lang/cs.js
+++ b/plugins/specialchar/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'cs', {
diff --git a/plugins/specialchar/lang/cy.js b/plugins/specialchar/lang/cy.js
index 5be0606f..e7b8bdfa 100644
--- a/plugins/specialchar/lang/cy.js
+++ b/plugins/specialchar/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'cy', {
diff --git a/plugins/specialchar/lang/da.js b/plugins/specialchar/lang/da.js
index 4a6e345f..232e13e4 100644
--- a/plugins/specialchar/lang/da.js
+++ b/plugins/specialchar/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'da', {
diff --git a/plugins/specialchar/lang/de-ch.js b/plugins/specialchar/lang/de-ch.js
index 203efd24..9c45e826 100644
--- a/plugins/specialchar/lang/de-ch.js
+++ b/plugins/specialchar/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'de-ch', {
diff --git a/plugins/specialchar/lang/de.js b/plugins/specialchar/lang/de.js
index 5445ec53..0da13f4f 100644
--- a/plugins/specialchar/lang/de.js
+++ b/plugins/specialchar/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'de', {
diff --git a/plugins/specialchar/lang/el.js b/plugins/specialchar/lang/el.js
index 4444465d..252fd318 100644
--- a/plugins/specialchar/lang/el.js
+++ b/plugins/specialchar/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'el', {
diff --git a/plugins/specialchar/lang/en-au.js b/plugins/specialchar/lang/en-au.js
index c5c84a4a..8d15b246 100644
--- a/plugins/specialchar/lang/en-au.js
+++ b/plugins/specialchar/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'en-au', {
diff --git a/plugins/specialchar/lang/en-ca.js b/plugins/specialchar/lang/en-ca.js
index 6c758250..8401a9dc 100644
--- a/plugins/specialchar/lang/en-ca.js
+++ b/plugins/specialchar/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'en-ca', {
diff --git a/plugins/specialchar/lang/en-gb.js b/plugins/specialchar/lang/en-gb.js
index c26eeaf7..7fb218bf 100644
--- a/plugins/specialchar/lang/en-gb.js
+++ b/plugins/specialchar/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'en-gb', {
diff --git a/plugins/specialchar/lang/en.js b/plugins/specialchar/lang/en.js
index 305b6ab9..b65617c9 100644
--- a/plugins/specialchar/lang/en.js
+++ b/plugins/specialchar/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'en', {
diff --git a/plugins/specialchar/lang/eo.js b/plugins/specialchar/lang/eo.js
index b76e92a9..21ca267f 100644
--- a/plugins/specialchar/lang/eo.js
+++ b/plugins/specialchar/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'eo', {
diff --git a/plugins/specialchar/lang/es-mx.js b/plugins/specialchar/lang/es-mx.js
index 6c46ce7a..80112cc3 100644
--- a/plugins/specialchar/lang/es-mx.js
+++ b/plugins/specialchar/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'es-mx', {
diff --git a/plugins/specialchar/lang/es.js b/plugins/specialchar/lang/es.js
index 79257850..6c29d286 100644
--- a/plugins/specialchar/lang/es.js
+++ b/plugins/specialchar/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'es', {
diff --git a/plugins/specialchar/lang/et.js b/plugins/specialchar/lang/et.js
index 6645d89c..318e2bf0 100644
--- a/plugins/specialchar/lang/et.js
+++ b/plugins/specialchar/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'et', {
diff --git a/plugins/specialchar/lang/eu.js b/plugins/specialchar/lang/eu.js
index 1b79441e..f434529c 100644
--- a/plugins/specialchar/lang/eu.js
+++ b/plugins/specialchar/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'eu', {
diff --git a/plugins/specialchar/lang/fa.js b/plugins/specialchar/lang/fa.js
index c377df1f..9590f08b 100644
--- a/plugins/specialchar/lang/fa.js
+++ b/plugins/specialchar/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'fa', {
diff --git a/plugins/specialchar/lang/fi.js b/plugins/specialchar/lang/fi.js
index 441cc536..a2f8a698 100644
--- a/plugins/specialchar/lang/fi.js
+++ b/plugins/specialchar/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'fi', {
diff --git a/plugins/specialchar/lang/fo.js b/plugins/specialchar/lang/fo.js
index 977db88e..e86288fe 100644
--- a/plugins/specialchar/lang/fo.js
+++ b/plugins/specialchar/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'fo', {
diff --git a/plugins/specialchar/lang/fr-ca.js b/plugins/specialchar/lang/fr-ca.js
index 13ee953a..18f81a04 100644
--- a/plugins/specialchar/lang/fr-ca.js
+++ b/plugins/specialchar/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'fr-ca', {
diff --git a/plugins/specialchar/lang/fr.js b/plugins/specialchar/lang/fr.js
index f21d026e..8f72ca56 100644
--- a/plugins/specialchar/lang/fr.js
+++ b/plugins/specialchar/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'fr', {
diff --git a/plugins/specialchar/lang/gl.js b/plugins/specialchar/lang/gl.js
index 7108920f..0c3acfbb 100644
--- a/plugins/specialchar/lang/gl.js
+++ b/plugins/specialchar/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'gl', {
diff --git a/plugins/specialchar/lang/gu.js b/plugins/specialchar/lang/gu.js
index 437ea27d..5c3846e1 100644
--- a/plugins/specialchar/lang/gu.js
+++ b/plugins/specialchar/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'gu', {
diff --git a/plugins/specialchar/lang/he.js b/plugins/specialchar/lang/he.js
index f8d4db66..a6d17471 100644
--- a/plugins/specialchar/lang/he.js
+++ b/plugins/specialchar/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'he', {
diff --git a/plugins/specialchar/lang/hi.js b/plugins/specialchar/lang/hi.js
index 6f0274c4..d39b54c9 100644
--- a/plugins/specialchar/lang/hi.js
+++ b/plugins/specialchar/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'hi', {
diff --git a/plugins/specialchar/lang/hr.js b/plugins/specialchar/lang/hr.js
index 7f6eb3cd..bbc34c13 100644
--- a/plugins/specialchar/lang/hr.js
+++ b/plugins/specialchar/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'hr', {
diff --git a/plugins/specialchar/lang/hu.js b/plugins/specialchar/lang/hu.js
index 6d6f2407..faae31ac 100644
--- a/plugins/specialchar/lang/hu.js
+++ b/plugins/specialchar/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'hu', {
diff --git a/plugins/specialchar/lang/id.js b/plugins/specialchar/lang/id.js
index 142fe8d6..deffff9e 100644
--- a/plugins/specialchar/lang/id.js
+++ b/plugins/specialchar/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'id', {
diff --git a/plugins/specialchar/lang/is.js b/plugins/specialchar/lang/is.js
index a7098f6a..a14671e2 100644
--- a/plugins/specialchar/lang/is.js
+++ b/plugins/specialchar/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'is', {
diff --git a/plugins/specialchar/lang/it.js b/plugins/specialchar/lang/it.js
index 9521daf4..23566817 100644
--- a/plugins/specialchar/lang/it.js
+++ b/plugins/specialchar/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'it', {
diff --git a/plugins/specialchar/lang/ja.js b/plugins/specialchar/lang/ja.js
index 6cddf23b..f97056e4 100644
--- a/plugins/specialchar/lang/ja.js
+++ b/plugins/specialchar/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'ja', {
diff --git a/plugins/specialchar/lang/ka.js b/plugins/specialchar/lang/ka.js
index 71a55b3b..7061856d 100644
--- a/plugins/specialchar/lang/ka.js
+++ b/plugins/specialchar/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'ka', {
diff --git a/plugins/specialchar/lang/km.js b/plugins/specialchar/lang/km.js
index e4c9383a..bc456bb2 100644
--- a/plugins/specialchar/lang/km.js
+++ b/plugins/specialchar/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'km', {
diff --git a/plugins/specialchar/lang/ko.js b/plugins/specialchar/lang/ko.js
index ad059385..dc31b315 100644
--- a/plugins/specialchar/lang/ko.js
+++ b/plugins/specialchar/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'ko', {
diff --git a/plugins/specialchar/lang/ku.js b/plugins/specialchar/lang/ku.js
index 4a8edcbe..f5d61509 100644
--- a/plugins/specialchar/lang/ku.js
+++ b/plugins/specialchar/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'ku', {
diff --git a/plugins/specialchar/lang/lt.js b/plugins/specialchar/lang/lt.js
index ef29f763..19205df5 100644
--- a/plugins/specialchar/lang/lt.js
+++ b/plugins/specialchar/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'lt', {
diff --git a/plugins/specialchar/lang/lv.js b/plugins/specialchar/lang/lv.js
index f9010461..839553e1 100644
--- a/plugins/specialchar/lang/lv.js
+++ b/plugins/specialchar/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'lv', {
diff --git a/plugins/specialchar/lang/mk.js b/plugins/specialchar/lang/mk.js
index 89a74508..d7f31cef 100644
--- a/plugins/specialchar/lang/mk.js
+++ b/plugins/specialchar/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'mk', {
diff --git a/plugins/specialchar/lang/mn.js b/plugins/specialchar/lang/mn.js
index 8dcb3f15..30d4d0b9 100644
--- a/plugins/specialchar/lang/mn.js
+++ b/plugins/specialchar/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'mn', {
diff --git a/plugins/specialchar/lang/ms.js b/plugins/specialchar/lang/ms.js
index 1deb3935..a8dd82bc 100644
--- a/plugins/specialchar/lang/ms.js
+++ b/plugins/specialchar/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'ms', {
diff --git a/plugins/specialchar/lang/nb.js b/plugins/specialchar/lang/nb.js
index e4172c40..116b54d0 100644
--- a/plugins/specialchar/lang/nb.js
+++ b/plugins/specialchar/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'nb', {
diff --git a/plugins/specialchar/lang/nl.js b/plugins/specialchar/lang/nl.js
index f98d74ae..1d8234a0 100644
--- a/plugins/specialchar/lang/nl.js
+++ b/plugins/specialchar/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'nl', {
diff --git a/plugins/specialchar/lang/no.js b/plugins/specialchar/lang/no.js
index 0d852b6d..2c537d36 100644
--- a/plugins/specialchar/lang/no.js
+++ b/plugins/specialchar/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'no', {
diff --git a/plugins/specialchar/lang/oc.js b/plugins/specialchar/lang/oc.js
index 4be56778..07c5c013 100644
--- a/plugins/specialchar/lang/oc.js
+++ b/plugins/specialchar/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'oc', {
diff --git a/plugins/specialchar/lang/pl.js b/plugins/specialchar/lang/pl.js
index 62274d7b..5f872f58 100644
--- a/plugins/specialchar/lang/pl.js
+++ b/plugins/specialchar/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'pl', {
diff --git a/plugins/specialchar/lang/pt-br.js b/plugins/specialchar/lang/pt-br.js
index 323bad05..4135d664 100644
--- a/plugins/specialchar/lang/pt-br.js
+++ b/plugins/specialchar/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'pt-br', {
diff --git a/plugins/specialchar/lang/pt.js b/plugins/specialchar/lang/pt.js
index cb3801f1..bc543122 100644
--- a/plugins/specialchar/lang/pt.js
+++ b/plugins/specialchar/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'pt', {
diff --git a/plugins/specialchar/lang/ro.js b/plugins/specialchar/lang/ro.js
index 15f9ad10..396f71f6 100644
--- a/plugins/specialchar/lang/ro.js
+++ b/plugins/specialchar/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'ro', {
diff --git a/plugins/specialchar/lang/ru.js b/plugins/specialchar/lang/ru.js
index bba2cfd8..f73235c6 100644
--- a/plugins/specialchar/lang/ru.js
+++ b/plugins/specialchar/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'ru', {
diff --git a/plugins/specialchar/lang/si.js b/plugins/specialchar/lang/si.js
index b9558da0..6a03cbf6 100644
--- a/plugins/specialchar/lang/si.js
+++ b/plugins/specialchar/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'si', {
diff --git a/plugins/specialchar/lang/sk.js b/plugins/specialchar/lang/sk.js
index 9062e8fb..15602e14 100644
--- a/plugins/specialchar/lang/sk.js
+++ b/plugins/specialchar/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'sk', {
diff --git a/plugins/specialchar/lang/sl.js b/plugins/specialchar/lang/sl.js
index 85e4db08..a1655be1 100644
--- a/plugins/specialchar/lang/sl.js
+++ b/plugins/specialchar/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'sl', {
diff --git a/plugins/specialchar/lang/sq.js b/plugins/specialchar/lang/sq.js
index b0525fc5..80b4361f 100644
--- a/plugins/specialchar/lang/sq.js
+++ b/plugins/specialchar/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'sq', {
diff --git a/plugins/specialchar/lang/sr-latn.js b/plugins/specialchar/lang/sr-latn.js
index 96da212b..e487a9cc 100644
--- a/plugins/specialchar/lang/sr-latn.js
+++ b/plugins/specialchar/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'sr-latn', {
diff --git a/plugins/specialchar/lang/sr.js b/plugins/specialchar/lang/sr.js
index 459d6f44..921f23e8 100644
--- a/plugins/specialchar/lang/sr.js
+++ b/plugins/specialchar/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'sr', {
diff --git a/plugins/specialchar/lang/sv.js b/plugins/specialchar/lang/sv.js
index ede95bbd..b5cba7ab 100644
--- a/plugins/specialchar/lang/sv.js
+++ b/plugins/specialchar/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'sv', {
diff --git a/plugins/specialchar/lang/th.js b/plugins/specialchar/lang/th.js
index 4c852fd0..45e44449 100644
--- a/plugins/specialchar/lang/th.js
+++ b/plugins/specialchar/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'th', {
diff --git a/plugins/specialchar/lang/tr.js b/plugins/specialchar/lang/tr.js
index 31853ac2..42ea7086 100644
--- a/plugins/specialchar/lang/tr.js
+++ b/plugins/specialchar/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'tr', {
diff --git a/plugins/specialchar/lang/tt.js b/plugins/specialchar/lang/tt.js
index 6cc9c152..22fd6c59 100644
--- a/plugins/specialchar/lang/tt.js
+++ b/plugins/specialchar/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'tt', {
diff --git a/plugins/specialchar/lang/ug.js b/plugins/specialchar/lang/ug.js
index 4c17b80f..826d98cd 100644
--- a/plugins/specialchar/lang/ug.js
+++ b/plugins/specialchar/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'ug', {
diff --git a/plugins/specialchar/lang/uk.js b/plugins/specialchar/lang/uk.js
index 7f6fc13f..6850fc29 100644
--- a/plugins/specialchar/lang/uk.js
+++ b/plugins/specialchar/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'uk', {
diff --git a/plugins/specialchar/lang/vi.js b/plugins/specialchar/lang/vi.js
index 3ee05110..d3d01cf7 100644
--- a/plugins/specialchar/lang/vi.js
+++ b/plugins/specialchar/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'vi', {
diff --git a/plugins/specialchar/lang/zh-cn.js b/plugins/specialchar/lang/zh-cn.js
index 6f2f5701..5bf2ab3c 100644
--- a/plugins/specialchar/lang/zh-cn.js
+++ b/plugins/specialchar/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'zh-cn', {
diff --git a/plugins/specialchar/lang/zh.js b/plugins/specialchar/lang/zh.js
index 7f47d682..e4fe1d83 100644
--- a/plugins/specialchar/lang/zh.js
+++ b/plugins/specialchar/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'specialchar', 'zh', {
diff --git a/plugins/specialchar/plugin.js b/plugins/specialchar/plugin.js
index 2a755faf..67668a02 100644
--- a/plugins/specialchar/plugin.js
+++ b/plugins/specialchar/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/stylescombo/lang/af.js b/plugins/stylescombo/lang/af.js
index 8c79c422..02081581 100644
--- a/plugins/stylescombo/lang/af.js
+++ b/plugins/stylescombo/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'af', {
diff --git a/plugins/stylescombo/lang/ar.js b/plugins/stylescombo/lang/ar.js
index 0203a292..4de972ee 100644
--- a/plugins/stylescombo/lang/ar.js
+++ b/plugins/stylescombo/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'ar', {
diff --git a/plugins/stylescombo/lang/az.js b/plugins/stylescombo/lang/az.js
index eb712b7d..3fa0a2bb 100644
--- a/plugins/stylescombo/lang/az.js
+++ b/plugins/stylescombo/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'az', {
diff --git a/plugins/stylescombo/lang/bg.js b/plugins/stylescombo/lang/bg.js
index 07e06116..8bbcd573 100644
--- a/plugins/stylescombo/lang/bg.js
+++ b/plugins/stylescombo/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'bg', {
diff --git a/plugins/stylescombo/lang/bn.js b/plugins/stylescombo/lang/bn.js
index 2061d9bf..80c4e47f 100644
--- a/plugins/stylescombo/lang/bn.js
+++ b/plugins/stylescombo/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'bn', {
diff --git a/plugins/stylescombo/lang/bs.js b/plugins/stylescombo/lang/bs.js
index f5209ac9..339a84fe 100644
--- a/plugins/stylescombo/lang/bs.js
+++ b/plugins/stylescombo/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'bs', {
diff --git a/plugins/stylescombo/lang/ca.js b/plugins/stylescombo/lang/ca.js
index 02d81bc8..5a475894 100644
--- a/plugins/stylescombo/lang/ca.js
+++ b/plugins/stylescombo/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'ca', {
diff --git a/plugins/stylescombo/lang/cs.js b/plugins/stylescombo/lang/cs.js
index bfdab5ea..f17303de 100644
--- a/plugins/stylescombo/lang/cs.js
+++ b/plugins/stylescombo/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'cs', {
diff --git a/plugins/stylescombo/lang/cy.js b/plugins/stylescombo/lang/cy.js
index 417aad25..f4cf11e5 100644
--- a/plugins/stylescombo/lang/cy.js
+++ b/plugins/stylescombo/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'cy', {
diff --git a/plugins/stylescombo/lang/da.js b/plugins/stylescombo/lang/da.js
index 9f5e47a0..39244762 100644
--- a/plugins/stylescombo/lang/da.js
+++ b/plugins/stylescombo/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'da', {
diff --git a/plugins/stylescombo/lang/de-ch.js b/plugins/stylescombo/lang/de-ch.js
index e0ddbbfe..b9725e84 100644
--- a/plugins/stylescombo/lang/de-ch.js
+++ b/plugins/stylescombo/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'de-ch', {
diff --git a/plugins/stylescombo/lang/de.js b/plugins/stylescombo/lang/de.js
index afca342f..d53502bf 100644
--- a/plugins/stylescombo/lang/de.js
+++ b/plugins/stylescombo/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'de', {
diff --git a/plugins/stylescombo/lang/el.js b/plugins/stylescombo/lang/el.js
index 4be37b9c..8e9a81e4 100644
--- a/plugins/stylescombo/lang/el.js
+++ b/plugins/stylescombo/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'el', {
diff --git a/plugins/stylescombo/lang/en-au.js b/plugins/stylescombo/lang/en-au.js
index 86420a2b..607f1c76 100644
--- a/plugins/stylescombo/lang/en-au.js
+++ b/plugins/stylescombo/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'en-au', {
diff --git a/plugins/stylescombo/lang/en-ca.js b/plugins/stylescombo/lang/en-ca.js
index 475e6a35..7a2fb9a5 100644
--- a/plugins/stylescombo/lang/en-ca.js
+++ b/plugins/stylescombo/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'en-ca', {
diff --git a/plugins/stylescombo/lang/en-gb.js b/plugins/stylescombo/lang/en-gb.js
index c35f0b95..e20adf3a 100644
--- a/plugins/stylescombo/lang/en-gb.js
+++ b/plugins/stylescombo/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'en-gb', {
diff --git a/plugins/stylescombo/lang/en.js b/plugins/stylescombo/lang/en.js
index 256f59a1..40783e32 100644
--- a/plugins/stylescombo/lang/en.js
+++ b/plugins/stylescombo/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'en', {
diff --git a/plugins/stylescombo/lang/eo.js b/plugins/stylescombo/lang/eo.js
index 8e8c1442..be6456df 100644
--- a/plugins/stylescombo/lang/eo.js
+++ b/plugins/stylescombo/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'eo', {
diff --git a/plugins/stylescombo/lang/es-mx.js b/plugins/stylescombo/lang/es-mx.js
index 6eec2c32..4dbf2b25 100644
--- a/plugins/stylescombo/lang/es-mx.js
+++ b/plugins/stylescombo/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'es-mx', {
diff --git a/plugins/stylescombo/lang/es.js b/plugins/stylescombo/lang/es.js
index fe2c0357..904222c4 100644
--- a/plugins/stylescombo/lang/es.js
+++ b/plugins/stylescombo/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'es', {
diff --git a/plugins/stylescombo/lang/et.js b/plugins/stylescombo/lang/et.js
index b4e985e9..4ae93f20 100644
--- a/plugins/stylescombo/lang/et.js
+++ b/plugins/stylescombo/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'et', {
diff --git a/plugins/stylescombo/lang/eu.js b/plugins/stylescombo/lang/eu.js
index 7f8896f6..2683fb6c 100644
--- a/plugins/stylescombo/lang/eu.js
+++ b/plugins/stylescombo/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'eu', {
diff --git a/plugins/stylescombo/lang/fa.js b/plugins/stylescombo/lang/fa.js
index ea3504db..7a1e5ef9 100644
--- a/plugins/stylescombo/lang/fa.js
+++ b/plugins/stylescombo/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'fa', {
diff --git a/plugins/stylescombo/lang/fi.js b/plugins/stylescombo/lang/fi.js
index fcf3e192..f2cdd2bd 100644
--- a/plugins/stylescombo/lang/fi.js
+++ b/plugins/stylescombo/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'fi', {
diff --git a/plugins/stylescombo/lang/fo.js b/plugins/stylescombo/lang/fo.js
index 416081fc..213794d3 100644
--- a/plugins/stylescombo/lang/fo.js
+++ b/plugins/stylescombo/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'fo', {
diff --git a/plugins/stylescombo/lang/fr-ca.js b/plugins/stylescombo/lang/fr-ca.js
index 2fda8b27..c01db965 100644
--- a/plugins/stylescombo/lang/fr-ca.js
+++ b/plugins/stylescombo/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'fr-ca', {
diff --git a/plugins/stylescombo/lang/fr.js b/plugins/stylescombo/lang/fr.js
index 2003aa02..64502189 100644
--- a/plugins/stylescombo/lang/fr.js
+++ b/plugins/stylescombo/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'fr', {
diff --git a/plugins/stylescombo/lang/gl.js b/plugins/stylescombo/lang/gl.js
index 5da8ba28..a93d1996 100644
--- a/plugins/stylescombo/lang/gl.js
+++ b/plugins/stylescombo/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'gl', {
diff --git a/plugins/stylescombo/lang/gu.js b/plugins/stylescombo/lang/gu.js
index 3ffafc12..8165ac1e 100644
--- a/plugins/stylescombo/lang/gu.js
+++ b/plugins/stylescombo/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'gu', {
diff --git a/plugins/stylescombo/lang/he.js b/plugins/stylescombo/lang/he.js
index c89513ac..5ed06df6 100644
--- a/plugins/stylescombo/lang/he.js
+++ b/plugins/stylescombo/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'he', {
diff --git a/plugins/stylescombo/lang/hi.js b/plugins/stylescombo/lang/hi.js
index 9e449c96..255bd538 100644
--- a/plugins/stylescombo/lang/hi.js
+++ b/plugins/stylescombo/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'hi', {
diff --git a/plugins/stylescombo/lang/hr.js b/plugins/stylescombo/lang/hr.js
index a82b1ddb..b56d8e4f 100644
--- a/plugins/stylescombo/lang/hr.js
+++ b/plugins/stylescombo/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'hr', {
diff --git a/plugins/stylescombo/lang/hu.js b/plugins/stylescombo/lang/hu.js
index ba38e8cc..b8fb9237 100644
--- a/plugins/stylescombo/lang/hu.js
+++ b/plugins/stylescombo/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'hu', {
diff --git a/plugins/stylescombo/lang/id.js b/plugins/stylescombo/lang/id.js
index e58b5878..e8095266 100644
--- a/plugins/stylescombo/lang/id.js
+++ b/plugins/stylescombo/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'id', {
diff --git a/plugins/stylescombo/lang/is.js b/plugins/stylescombo/lang/is.js
index 7b1ea76c..34c5e176 100644
--- a/plugins/stylescombo/lang/is.js
+++ b/plugins/stylescombo/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'is', {
diff --git a/plugins/stylescombo/lang/it.js b/plugins/stylescombo/lang/it.js
index 3481c821..87c2d648 100644
--- a/plugins/stylescombo/lang/it.js
+++ b/plugins/stylescombo/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'it', {
diff --git a/plugins/stylescombo/lang/ja.js b/plugins/stylescombo/lang/ja.js
index 8971308d..a31946b5 100644
--- a/plugins/stylescombo/lang/ja.js
+++ b/plugins/stylescombo/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'ja', {
diff --git a/plugins/stylescombo/lang/ka.js b/plugins/stylescombo/lang/ka.js
index 591ed4d2..616a2580 100644
--- a/plugins/stylescombo/lang/ka.js
+++ b/plugins/stylescombo/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'ka', {
diff --git a/plugins/stylescombo/lang/km.js b/plugins/stylescombo/lang/km.js
index b6088f25..2571c2e7 100644
--- a/plugins/stylescombo/lang/km.js
+++ b/plugins/stylescombo/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'km', {
diff --git a/plugins/stylescombo/lang/ko.js b/plugins/stylescombo/lang/ko.js
index 14425d30..d2d29309 100644
--- a/plugins/stylescombo/lang/ko.js
+++ b/plugins/stylescombo/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'ko', {
diff --git a/plugins/stylescombo/lang/ku.js b/plugins/stylescombo/lang/ku.js
index 42f568df..f8ff6aac 100644
--- a/plugins/stylescombo/lang/ku.js
+++ b/plugins/stylescombo/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'ku', {
diff --git a/plugins/stylescombo/lang/lt.js b/plugins/stylescombo/lang/lt.js
index 0166b28c..32a62ce5 100644
--- a/plugins/stylescombo/lang/lt.js
+++ b/plugins/stylescombo/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'lt', {
diff --git a/plugins/stylescombo/lang/lv.js b/plugins/stylescombo/lang/lv.js
index ebeebc2c..3ca1822d 100644
--- a/plugins/stylescombo/lang/lv.js
+++ b/plugins/stylescombo/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'lv', {
diff --git a/plugins/stylescombo/lang/mk.js b/plugins/stylescombo/lang/mk.js
index 818b9b81..3b5cbe40 100644
--- a/plugins/stylescombo/lang/mk.js
+++ b/plugins/stylescombo/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'mk', {
diff --git a/plugins/stylescombo/lang/mn.js b/plugins/stylescombo/lang/mn.js
index 10c988e1..5e98f902 100644
--- a/plugins/stylescombo/lang/mn.js
+++ b/plugins/stylescombo/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'mn', {
diff --git a/plugins/stylescombo/lang/ms.js b/plugins/stylescombo/lang/ms.js
index f79e6419..8d8beef0 100644
--- a/plugins/stylescombo/lang/ms.js
+++ b/plugins/stylescombo/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'ms', {
diff --git a/plugins/stylescombo/lang/nb.js b/plugins/stylescombo/lang/nb.js
index 694100c3..aa886b79 100644
--- a/plugins/stylescombo/lang/nb.js
+++ b/plugins/stylescombo/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'nb', {
diff --git a/plugins/stylescombo/lang/nl.js b/plugins/stylescombo/lang/nl.js
index b859af1c..9dcc845b 100644
--- a/plugins/stylescombo/lang/nl.js
+++ b/plugins/stylescombo/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'nl', {
diff --git a/plugins/stylescombo/lang/no.js b/plugins/stylescombo/lang/no.js
index 49abfe65..d2ee40d7 100644
--- a/plugins/stylescombo/lang/no.js
+++ b/plugins/stylescombo/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'no', {
diff --git a/plugins/stylescombo/lang/oc.js b/plugins/stylescombo/lang/oc.js
index fdda219a..3d17a65f 100644
--- a/plugins/stylescombo/lang/oc.js
+++ b/plugins/stylescombo/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'oc', {
diff --git a/plugins/stylescombo/lang/pl.js b/plugins/stylescombo/lang/pl.js
index f8548d84..b266a387 100644
--- a/plugins/stylescombo/lang/pl.js
+++ b/plugins/stylescombo/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'pl', {
diff --git a/plugins/stylescombo/lang/pt-br.js b/plugins/stylescombo/lang/pt-br.js
index 5eeb06ff..c8ca4aef 100644
--- a/plugins/stylescombo/lang/pt-br.js
+++ b/plugins/stylescombo/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'pt-br', {
diff --git a/plugins/stylescombo/lang/pt.js b/plugins/stylescombo/lang/pt.js
index 106d1885..a2265f3f 100644
--- a/plugins/stylescombo/lang/pt.js
+++ b/plugins/stylescombo/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'pt', {
diff --git a/plugins/stylescombo/lang/ro.js b/plugins/stylescombo/lang/ro.js
index beac6a92..c2982be4 100644
--- a/plugins/stylescombo/lang/ro.js
+++ b/plugins/stylescombo/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'ro', {
diff --git a/plugins/stylescombo/lang/ru.js b/plugins/stylescombo/lang/ru.js
index 14a1cc33..44f966b2 100644
--- a/plugins/stylescombo/lang/ru.js
+++ b/plugins/stylescombo/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'ru', {
diff --git a/plugins/stylescombo/lang/si.js b/plugins/stylescombo/lang/si.js
index 4d92c3ac..7dd1dc44 100644
--- a/plugins/stylescombo/lang/si.js
+++ b/plugins/stylescombo/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'si', {
diff --git a/plugins/stylescombo/lang/sk.js b/plugins/stylescombo/lang/sk.js
index c14fe11d..923b0859 100644
--- a/plugins/stylescombo/lang/sk.js
+++ b/plugins/stylescombo/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'sk', {
diff --git a/plugins/stylescombo/lang/sl.js b/plugins/stylescombo/lang/sl.js
index a6e003dd..fc99c916 100644
--- a/plugins/stylescombo/lang/sl.js
+++ b/plugins/stylescombo/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'sl', {
diff --git a/plugins/stylescombo/lang/sq.js b/plugins/stylescombo/lang/sq.js
index a514f550..e84b880d 100644
--- a/plugins/stylescombo/lang/sq.js
+++ b/plugins/stylescombo/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'sq', {
diff --git a/plugins/stylescombo/lang/sr-latn.js b/plugins/stylescombo/lang/sr-latn.js
index f91417b7..7203e0ec 100644
--- a/plugins/stylescombo/lang/sr-latn.js
+++ b/plugins/stylescombo/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'sr-latn', {
diff --git a/plugins/stylescombo/lang/sr.js b/plugins/stylescombo/lang/sr.js
index 2647df64..9392a968 100644
--- a/plugins/stylescombo/lang/sr.js
+++ b/plugins/stylescombo/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'sr', {
diff --git a/plugins/stylescombo/lang/sv.js b/plugins/stylescombo/lang/sv.js
index a90837bd..3f4661f7 100644
--- a/plugins/stylescombo/lang/sv.js
+++ b/plugins/stylescombo/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'sv', {
diff --git a/plugins/stylescombo/lang/th.js b/plugins/stylescombo/lang/th.js
index 4cc02d6d..190f3313 100644
--- a/plugins/stylescombo/lang/th.js
+++ b/plugins/stylescombo/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'th', {
diff --git a/plugins/stylescombo/lang/tr.js b/plugins/stylescombo/lang/tr.js
index 1aab0cf1..8f9953dc 100644
--- a/plugins/stylescombo/lang/tr.js
+++ b/plugins/stylescombo/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'tr', {
diff --git a/plugins/stylescombo/lang/tt.js b/plugins/stylescombo/lang/tt.js
index 9a896650..749f0bfe 100644
--- a/plugins/stylescombo/lang/tt.js
+++ b/plugins/stylescombo/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'tt', {
diff --git a/plugins/stylescombo/lang/ug.js b/plugins/stylescombo/lang/ug.js
index f3ea0841..4ade59fb 100644
--- a/plugins/stylescombo/lang/ug.js
+++ b/plugins/stylescombo/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'ug', {
diff --git a/plugins/stylescombo/lang/uk.js b/plugins/stylescombo/lang/uk.js
index b59ad971..57921d0b 100644
--- a/plugins/stylescombo/lang/uk.js
+++ b/plugins/stylescombo/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'uk', {
diff --git a/plugins/stylescombo/lang/vi.js b/plugins/stylescombo/lang/vi.js
index d2de9ba9..ffd0f4d0 100644
--- a/plugins/stylescombo/lang/vi.js
+++ b/plugins/stylescombo/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'vi', {
diff --git a/plugins/stylescombo/lang/zh-cn.js b/plugins/stylescombo/lang/zh-cn.js
index 8fbcca46..31890ffd 100644
--- a/plugins/stylescombo/lang/zh-cn.js
+++ b/plugins/stylescombo/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'zh-cn', {
diff --git a/plugins/stylescombo/lang/zh.js b/plugins/stylescombo/lang/zh.js
index 8b36ad8b..2832684b 100644
--- a/plugins/stylescombo/lang/zh.js
+++ b/plugins/stylescombo/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'stylescombo', 'zh', {
diff --git a/plugins/stylescombo/plugin.js b/plugins/stylescombo/plugin.js
index 5dba8af2..8b2b24d6 100644
--- a/plugins/stylescombo/plugin.js
+++ b/plugins/stylescombo/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/stylesheetparser/plugin.js b/plugins/stylesheetparser/plugin.js
index 89635dec..dc814123 100644
--- a/plugins/stylesheetparser/plugin.js
+++ b/plugins/stylesheetparser/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/stylesheetparser/samples/stylesheetparser.html b/plugins/stylesheetparser/samples/stylesheetparser.html
index 84688f72..8e0b8a6e 100644
--- a/plugins/stylesheetparser/samples/stylesheetparser.html
+++ b/plugins/stylesheetparser/samples/stylesheetparser.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -78,7 +78,7 @@ CKEDITOR.replace( '<em>textarea_id</em>', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/tab/plugin.js b/plugins/tab/plugin.js
index 4ff8ac6b..0afbbb4a 100644
--- a/plugins/tab/plugin.js
+++ b/plugins/tab/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -24,7 +24,7 @@
 	function selectNextCellCommand( backward ) {
 		return {
 			editorFocus: false,
-			canUndo: false,
+			canUndo: true,
 			modes: { wysiwyg: 1 },
 			exec: function( editor ) {
 				if ( editor.editable().hasFocus ) {
@@ -266,7 +266,7 @@ CKEDITOR.dom.element.prototype.focusPrevious = function( ignoreChildren, indexTo
 };
 
 /**
- * Intructs the editor to add a number of spaces (`&nbsp;`) to the text when
+ * Instructs the editor to add a number of spaces (`&nbsp;`) to the text when
  * hitting the <kbd>Tab</kbd> key. If set to zero, the <kbd>Tab</kbd> key will be used to move the
  * cursor focus to the next element in the page, out of the editor focus.
  *
diff --git a/plugins/table/dialogs/table.js b/plugins/table/dialogs/table.js
index 6fa1c0d4..acc0210f 100755
--- a/plugins/table/dialogs/table.js
+++ b/plugins/table/dialogs/table.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -54,6 +54,11 @@
 
 		var dialogadvtab = editor.plugins.dialogadvtab;
 
+
+		function shouldReplaceThByTd( cell, headers, index ) {
+			return cell.type == CKEDITOR.NODE_ELEMENT && ( !headers || index !== 0 );
+		}
+
 		return {
 			title: editor.lang.table.title,
 			minWidth: 310,
@@ -198,9 +203,13 @@
 							theRow = thead.getFirst();
 							for ( i = 0; i < theRow.getChildCount(); i++ ) {
 								var newCell = theRow.getChild( i );
-								if ( newCell.type == CKEDITOR.NODE_ELEMENT ) {
+								// In case when header is replaced to td element,
+								// check if the replaced cell should contain a 'row' scope (#2881).
+								if ( shouldReplaceThByTd( newCell, headers, i ) ) {
 									newCell.renameNode( 'td' );
 									newCell.removeAttribute( 'scope' );
+								} else {
+									newCell.setAttribute( 'scope', 'row' );
 								}
 							}
 
@@ -215,7 +224,13 @@
 						for ( row = 0; row < table.$.rows.length; row++ ) {
 							newCell = new CKEDITOR.dom.element( table.$.rows[ row ].cells[ 0 ] );
 							newCell.renameNode( 'th' );
-							newCell.setAttribute( 'scope', 'row' );
+
+							// If "both" is set, the first cell in table head should have scope "col"(#2996).
+							if ( headers === 'both' && row === 0 ) {
+								newCell.setAttribute( 'scope', 'col' );
+							} else {
+								newCell.setAttribute( 'scope', 'row' );
+							}
 						}
 					}
 
diff --git a/plugins/table/lang/af.js b/plugins/table/lang/af.js
index c48c8c85..8805220b 100644
--- a/plugins/table/lang/af.js
+++ b/plugins/table/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'af', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'af', {
 		borderColor: 'Randkleur',
 		data: 'Inhoud',
 		header: 'Opskrif',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Ja',
 		no: 'Nee',
 		invalidWidth: 'Selbreedte moet \'n getal wees.',
diff --git a/plugins/table/lang/ar.js b/plugins/table/lang/ar.js
index b6ba01b4..4f71f0a7 100644
--- a/plugins/table/lang/ar.js
+++ b/plugins/table/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'ar', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'ar', {
 		borderColor: 'لون الحدود',
 		data: 'بيانات',
 		header: 'عنوان',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'نعم',
 		no: 'لا',
 		invalidWidth: 'عرض الخلية يجب أن يكون عدداً.',
diff --git a/plugins/table/lang/az.js b/plugins/table/lang/az.js
index e139e921..eec22380 100644
--- a/plugins/table/lang/az.js
+++ b/plugins/table/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'az', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'az', {
 		borderColor: 'Sərhədin rəngi',
 		data: 'Məlumatlar',
 		header: 'Başlıq',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Bəli',
 		no: 'Xeyr',
 		invalidWidth: 'Xanasın eni rəqəm olmalıdır.',
diff --git a/plugins/table/lang/bg.js b/plugins/table/lang/bg.js
index 7939075b..1077ba4c 100644
--- a/plugins/table/lang/bg.js
+++ b/plugins/table/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'bg', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'bg', {
 		borderColor: 'Цвят на рамката',
 		data: 'Данни',
 		header: 'Заглавие',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Да',
 		no: 'Не',
 		invalidWidth: 'Ширината на клетката трябва да е число.',
diff --git a/plugins/table/lang/bn.js b/plugins/table/lang/bn.js
index 0a78656a..04632405 100644
--- a/plugins/table/lang/bn.js
+++ b/plugins/table/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'bn', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'bn', {
 		borderColor: 'Border Color',
 		data: 'Data',
 		header: 'Header',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Yes',
 		no: 'No',
 		invalidWidth: 'Cell width must be a number.',
diff --git a/plugins/table/lang/bs.js b/plugins/table/lang/bs.js
index f150c6b1..930d82e4 100644
--- a/plugins/table/lang/bs.js
+++ b/plugins/table/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'bs', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'bs', {
 		borderColor: 'Border Color',
 		data: 'Data',
 		header: 'Header',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Yes',
 		no: 'No',
 		invalidWidth: 'Cell width must be a number.',
diff --git a/plugins/table/lang/ca.js b/plugins/table/lang/ca.js
index 9ba241ff..ea791bd6 100644
--- a/plugins/table/lang/ca.js
+++ b/plugins/table/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'ca', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'ca', {
 		borderColor: 'Color de la vora',
 		data: 'Dades',
 		header: 'Capçalera',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Sí',
 		no: 'No',
 		invalidWidth: 'L\'amplada de cel·la ha de ser un nombre.',
diff --git a/plugins/table/lang/cs.js b/plugins/table/lang/cs.js
index cef90624..070b10b8 100644
--- a/plugins/table/lang/cs.js
+++ b/plugins/table/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'cs', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'cs', {
 		borderColor: 'Barva okraje',
 		data: 'Data',
 		header: 'Hlavička',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Ano',
 		no: 'Ne',
 		invalidWidth: 'Šířka buňky musí být číslo.',
diff --git a/plugins/table/lang/cy.js b/plugins/table/lang/cy.js
index 1fb62f70..04a45b73 100644
--- a/plugins/table/lang/cy.js
+++ b/plugins/table/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'cy', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'cy', {
 		borderColor: 'Lliw Ymyl',
 		data: 'Data',
 		header: 'Pennyn',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Ie',
 		no: 'Na',
 		invalidWidth: 'Mae\'n rhaid i led y gell fod yn rhif.',
diff --git a/plugins/table/lang/da.js b/plugins/table/lang/da.js
index 66557877..44b87843 100644
--- a/plugins/table/lang/da.js
+++ b/plugins/table/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'da', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'da', {
 		borderColor: 'Rammefarve',
 		data: 'Data',
 		header: 'Hoved',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Ja',
 		no: 'Nej',
 		invalidWidth: 'Cellebredde skal være et tal.',
diff --git a/plugins/table/lang/de-ch.js b/plugins/table/lang/de-ch.js
index 8ffde8d4..2e9fa4f3 100644
--- a/plugins/table/lang/de-ch.js
+++ b/plugins/table/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'de-ch', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'de-ch', {
 		borderColor: 'Rahmenfarbe',
 		data: 'Daten',
 		header: 'Überschrift',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Ja',
 		no: 'Nein',
 		invalidWidth: 'Zellenbreite muss eine Zahl sein.',
diff --git a/plugins/table/lang/de.js b/plugins/table/lang/de.js
index 9d1e1481..dabb7824 100644
--- a/plugins/table/lang/de.js
+++ b/plugins/table/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'de', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'de', {
 		borderColor: 'Rahmenfarbe',
 		data: 'Daten',
 		header: 'Überschrift',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Ja',
 		no: 'Nein',
 		invalidWidth: 'Zellenbreite muss eine Zahl sein.',
diff --git a/plugins/table/lang/el.js b/plugins/table/lang/el.js
index 2a9e1b1b..cd4bd7ce 100644
--- a/plugins/table/lang/el.js
+++ b/plugins/table/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'el', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'el', {
 		borderColor: 'Χρώμα Περιγράμματος',
 		data: 'Δεδομένα',
 		header: 'Κεφαλίδα',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Ναι',
 		no: 'Όχι',
 		invalidWidth: 'Το πλάτος του κελιού πρέπει να είναι αριθμός.',
diff --git a/plugins/table/lang/en-au.js b/plugins/table/lang/en-au.js
index 92dbf255..29ab671b 100644
--- a/plugins/table/lang/en-au.js
+++ b/plugins/table/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'en-au', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'en-au', {
 		borderColor: 'Border Color',
 		data: 'Data',
 		header: 'Header',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Yes',
 		no: 'No',
 		invalidWidth: 'Cell width must be a number.',
diff --git a/plugins/table/lang/en-ca.js b/plugins/table/lang/en-ca.js
index 8d96a9a7..9d1c8784 100644
--- a/plugins/table/lang/en-ca.js
+++ b/plugins/table/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'en-ca', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'en-ca', {
 		borderColor: 'Border Color',
 		data: 'Data',
 		header: 'Header',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Yes',
 		no: 'No',
 		invalidWidth: 'Cell width must be a number.',
diff --git a/plugins/table/lang/en-gb.js b/plugins/table/lang/en-gb.js
index 058dc7af..9990d529 100644
--- a/plugins/table/lang/en-gb.js
+++ b/plugins/table/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'en-gb', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'en-gb', {
 		borderColor: 'Border Color',
 		data: 'Data',
 		header: 'Header',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Yes',
 		no: 'No',
 		invalidWidth: 'Cell width must be a number.',
diff --git a/plugins/table/lang/en.js b/plugins/table/lang/en.js
index c86ec077..aaf66b2b 100644
--- a/plugins/table/lang/en.js
+++ b/plugins/table/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'en', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'en', {
 		borderColor: 'Border Color',
 		data: 'Data',
 		header: 'Header',
+		columnHeader: 'Column Header',
+		rowHeader: 'Row Header',
 		yes: 'Yes',
 		no: 'No',
 		invalidWidth: 'Cell width must be a number.',
diff --git a/plugins/table/lang/eo.js b/plugins/table/lang/eo.js
index d09ecdf0..373c21e2 100644
--- a/plugins/table/lang/eo.js
+++ b/plugins/table/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'eo', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'eo', {
 		borderColor: 'Borderkoloro',
 		data: 'Datenoj',
 		header: 'Supra paĝotitolo',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Jes',
 		no: 'No',
 		invalidWidth: 'Ĉellarĝo devas esti nombro.',
diff --git a/plugins/table/lang/es-mx.js b/plugins/table/lang/es-mx.js
index 479dac3f..37a427c8 100644
--- a/plugins/table/lang/es-mx.js
+++ b/plugins/table/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'es-mx', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'es-mx', {
 		borderColor: 'Color de borde',
 		data: 'Datos',
 		header: 'Encabezado',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Si',
 		no: 'No',
 		invalidWidth: 'El ancho de la celda debe ser un número entero.',
diff --git a/plugins/table/lang/es.js b/plugins/table/lang/es.js
index aeb6bdb9..16d65cd6 100644
--- a/plugins/table/lang/es.js
+++ b/plugins/table/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'es', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'es', {
 		borderColor: 'Color de borde',
 		data: 'Datos',
 		header: 'Encabezado',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Sí',
 		no: 'No',
 		invalidWidth: 'La anchura de celda debe ser un número.',
diff --git a/plugins/table/lang/et.js b/plugins/table/lang/et.js
index b8234cfc..372c0209 100644
--- a/plugins/table/lang/et.js
+++ b/plugins/table/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'et', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'et', {
 		borderColor: 'Äärise värv',
 		data: 'Andmed',
 		header: 'Päis',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Jah',
 		no: 'Ei',
 		invalidWidth: 'Lahtri laius peab olema number.',
diff --git a/plugins/table/lang/eu.js b/plugins/table/lang/eu.js
index e3a10406..064ddc59 100644
--- a/plugins/table/lang/eu.js
+++ b/plugins/table/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'eu', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'eu', {
 		borderColor: 'Ertzaren kolorea',
 		data: 'Data',
 		header: 'Goiburua',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Bai',
 		no: 'Ez',
 		invalidWidth: 'Gelaxkaren zabalera zenbaki bat izan behar da.',
diff --git a/plugins/table/lang/fa.js b/plugins/table/lang/fa.js
index 29f8be1b..028d75d5 100644
--- a/plugins/table/lang/fa.js
+++ b/plugins/table/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'fa', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'fa', {
 		borderColor: 'رنگ خطوط',
 		data: 'اطلاعات',
 		header: 'سرنویس',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'بله',
 		no: 'خیر',
 		invalidWidth: 'عرض سلول باید یک عدد باشد.',
diff --git a/plugins/table/lang/fi.js b/plugins/table/lang/fi.js
index 3420fe94..9fe48d59 100644
--- a/plugins/table/lang/fi.js
+++ b/plugins/table/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'fi', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'fi', {
 		borderColor: 'Reunan väri',
 		data: 'Data',
 		header: 'Ylätunniste',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Kyllä',
 		no: 'Ei',
 		invalidWidth: 'Solun leveyden täytyy olla numero.',
diff --git a/plugins/table/lang/fo.js b/plugins/table/lang/fo.js
index 4230a84f..8c4a70ea 100644
--- a/plugins/table/lang/fo.js
+++ b/plugins/table/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'fo', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'fo', {
 		borderColor: 'Bordalitur',
 		data: 'Data',
 		header: 'Header',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Ja',
 		no: 'Nei',
 		invalidWidth: 'Meskubreidd má vera eitt tal.',
diff --git a/plugins/table/lang/fr-ca.js b/plugins/table/lang/fr-ca.js
index a6b09402..41657ac3 100644
--- a/plugins/table/lang/fr-ca.js
+++ b/plugins/table/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'fr-ca', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'fr-ca', {
 		borderColor: 'Couleur de bordure',
 		data: 'Données',
 		header: 'En-tête',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Oui',
 		no: 'Non',
 		invalidWidth: 'La largeur de cellule doit être un nombre.',
diff --git a/plugins/table/lang/fr.js b/plugins/table/lang/fr.js
index b28e10fe..6c6ad3d2 100644
--- a/plugins/table/lang/fr.js
+++ b/plugins/table/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'fr', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'fr', {
 		borderColor: 'Couleur de bordure',
 		data: 'Données',
 		header: 'En-tête',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Oui',
 		no: 'Non',
 		invalidWidth: 'La largeur de la cellule doit être un nombre.',
diff --git a/plugins/table/lang/gl.js b/plugins/table/lang/gl.js
index 8018ec8d..aecff233 100644
--- a/plugins/table/lang/gl.js
+++ b/plugins/table/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'gl', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'gl', {
 		borderColor: 'Cor do bordo',
 		data: 'Datos',
 		header: 'Cabeceira',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Si',
 		no: 'Non',
 		invalidWidth: 'O largo da cela debe ser un número.',
diff --git a/plugins/table/lang/gu.js b/plugins/table/lang/gu.js
index 135fa464..a756eb8f 100644
--- a/plugins/table/lang/gu.js
+++ b/plugins/table/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'gu', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'gu', {
 		borderColor: 'બોર્ડેર રંગ',
 		data: 'સ્વીકૃત માહિતી',
 		header: 'મથાળું',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'હા',
 		no: 'ના',
 		invalidWidth: 'સેલની પોહલાઈ આંકડો હોવો જોઈએ.',
diff --git a/plugins/table/lang/he.js b/plugins/table/lang/he.js
index 808db561..a70544d3 100644
--- a/plugins/table/lang/he.js
+++ b/plugins/table/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'he', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'he', {
 		borderColor: 'צבע מסגרת',
 		data: 'מידע',
 		header: 'כותרת',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'כן',
 		no: 'לא',
 		invalidWidth: 'שדה רוחב התא חייב להיות מספר.',
diff --git a/plugins/table/lang/hi.js b/plugins/table/lang/hi.js
index 6a872a9c..747edfc1 100644
--- a/plugins/table/lang/hi.js
+++ b/plugins/table/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'hi', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'hi', {
 		borderColor: 'Border Color',
 		data: 'Data',
 		header: 'Header',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Yes',
 		no: 'No',
 		invalidWidth: 'Cell width must be a number.',
diff --git a/plugins/table/lang/hr.js b/plugins/table/lang/hr.js
index 1d49be17..7a474638 100644
--- a/plugins/table/lang/hr.js
+++ b/plugins/table/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'hr', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'hr', {
 		borderColor: 'Boja ruba',
 		data: 'Podatak',
 		header: 'Zaglavlje',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Da',
 		no: 'Ne',
 		invalidWidth: 'Širina ćelije mora biti broj.',
diff --git a/plugins/table/lang/hu.js b/plugins/table/lang/hu.js
index b86da406..0c5d9295 100644
--- a/plugins/table/lang/hu.js
+++ b/plugins/table/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'hu', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'hu', {
 		borderColor: 'Keret színe',
 		data: 'Adat',
 		header: 'Fejléc',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Igen',
 		no: 'Nem',
 		invalidWidth: 'A szélesség mezőbe csak számokat írhat.',
diff --git a/plugins/table/lang/id.js b/plugins/table/lang/id.js
index c9bf9d29..16b1a85e 100644
--- a/plugins/table/lang/id.js
+++ b/plugins/table/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'id', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'id', {
 		borderColor: 'Warna Batasan',
 		data: 'Data',
 		header: 'Header',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Ya',
 		no: 'Tidak',
 		invalidWidth: 'Lebar sel harus sebuah angka.',
diff --git a/plugins/table/lang/is.js b/plugins/table/lang/is.js
index bb4efa99..21fbe580 100644
--- a/plugins/table/lang/is.js
+++ b/plugins/table/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'is', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'is', {
 		borderColor: 'Border Color',
 		data: 'Data',
 		header: 'Header',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Yes',
 		no: 'No',
 		invalidWidth: 'Cell width must be a number.',
diff --git a/plugins/table/lang/it.js b/plugins/table/lang/it.js
index 3965086a..c5532391 100644
--- a/plugins/table/lang/it.js
+++ b/plugins/table/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'it', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'it', {
 		borderColor: 'Colore del Bordo',
 		data: 'Dati',
 		header: 'Intestazione',
+		columnHeader: 'Intestazione colonna',
+		rowHeader: 'Intestazione riga',
 		yes: 'Si',
 		no: 'No',
 		invalidWidth: 'La larghezza della cella dev\'essere un numero.',
diff --git a/plugins/table/lang/ja.js b/plugins/table/lang/ja.js
index 2e737a82..cccdfa4c 100644
--- a/plugins/table/lang/ja.js
+++ b/plugins/table/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'ja', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'ja', {
 		borderColor: 'ボーダーカラー',
 		data: 'テーブルデータ (td)',
 		header: 'ヘッダ',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'はい',
 		no: 'いいえ',
 		invalidWidth: 'セル幅は数値で入力してください。',
diff --git a/plugins/table/lang/ka.js b/plugins/table/lang/ka.js
index 0a396aff..fbd8436a 100644
--- a/plugins/table/lang/ka.js
+++ b/plugins/table/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'ka', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'ka', {
 		borderColor: 'ჩარჩოს ფერი',
 		data: 'მონაცემები',
 		header: 'სათაური',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'დიახ',
 		no: 'არა',
 		invalidWidth: 'უჯრის სიგანე რიცხვით უნდა იყოს წარმოდგენილი.',
diff --git a/plugins/table/lang/km.js b/plugins/table/lang/km.js
index abc95b38..9dc26d92 100644
--- a/plugins/table/lang/km.js
+++ b/plugins/table/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'km', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'km', {
 		borderColor: 'ពណ៌​បន្ទាត់​ស៊ុម',
 		data: 'ទិន្នន័យ',
 		header: 'ក្បាល',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'ព្រម',
 		no: 'ទេ',
 		invalidWidth: 'ទទឹង​ក្រឡា​ត្រូវ​តែ​ជា​លេខ។',
diff --git a/plugins/table/lang/ko.js b/plugins/table/lang/ko.js
index 979d4702..cbb0a6af 100644
--- a/plugins/table/lang/ko.js
+++ b/plugins/table/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'ko', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'ko', {
 		borderColor: '테두리 색',
 		data: '자료',
 		header: '머릿칸',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: '예',
 		no: '아니오',
 		invalidWidth: '셀 너비는 숫자여야 합니다.',
diff --git a/plugins/table/lang/ku.js b/plugins/table/lang/ku.js
index 4c4988e3..cfc3d7eb 100644
--- a/plugins/table/lang/ku.js
+++ b/plugins/table/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'ku', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'ku', {
 		borderColor: 'ڕەنگی پەراوێز',
 		data: 'داتا',
 		header: 'سەرپەڕه',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'بەڵێ',
 		no: 'نەخێر',
 		invalidWidth: 'پانی خانه دەبێت بەتەواوی ژماره بێت.',
diff --git a/plugins/table/lang/lt.js b/plugins/table/lang/lt.js
index 0863b56e..f7ebd307 100644
--- a/plugins/table/lang/lt.js
+++ b/plugins/table/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'lt', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'lt', {
 		borderColor: 'Rėmelio spalva',
 		data: 'Data',
 		header: 'Antraštė',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Taip',
 		no: 'Ne',
 		invalidWidth: 'Reikšmė turi būti skaičius.',
diff --git a/plugins/table/lang/lv.js b/plugins/table/lang/lv.js
index 547516e9..b4558c69 100644
--- a/plugins/table/lang/lv.js
+++ b/plugins/table/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'lv', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'lv', {
 		borderColor: 'Rāmja krāsa',
 		data: 'Dati',
 		header: 'Virsraksts',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Jā',
 		no: 'Nē',
 		invalidWidth: 'Šūnas platumam jābūt skaitlim',
diff --git a/plugins/table/lang/mk.js b/plugins/table/lang/mk.js
index 79ca8563..e835577c 100644
--- a/plugins/table/lang/mk.js
+++ b/plugins/table/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'mk', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'mk', {
 		borderColor: 'Border Color',
 		data: 'Data',
 		header: 'Header',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Yes',
 		no: 'No',
 		invalidWidth: 'Cell width must be a number.',
diff --git a/plugins/table/lang/mn.js b/plugins/table/lang/mn.js
index bc56944c..b16036d6 100644
--- a/plugins/table/lang/mn.js
+++ b/plugins/table/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'mn', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'mn', {
 		borderColor: 'Хүрээний өнгө',
 		data: 'Data',
 		header: 'Header',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Тийм',
 		no: 'Үгүй',
 		invalidWidth: 'Нүдний өргөн нь тоо байх ёстой.',
diff --git a/plugins/table/lang/ms.js b/plugins/table/lang/ms.js
index 8a4bff22..daf93b51 100644
--- a/plugins/table/lang/ms.js
+++ b/plugins/table/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'ms', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'ms', {
 		borderColor: 'Border Color',
 		data: 'Data',
 		header: 'Header',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Yes',
 		no: 'No',
 		invalidWidth: 'Cell width must be a number.',
diff --git a/plugins/table/lang/nb.js b/plugins/table/lang/nb.js
index 3747a561..f625258a 100644
--- a/plugins/table/lang/nb.js
+++ b/plugins/table/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'nb', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'nb', {
 		borderColor: 'Rammefarge',
 		data: 'Data',
 		header: 'Overskrift',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Ja',
 		no: 'Nei',
 		invalidWidth: 'Cellebredde må være et tall.',
diff --git a/plugins/table/lang/nl.js b/plugins/table/lang/nl.js
index 6f42d94a..c9987b34 100644
--- a/plugins/table/lang/nl.js
+++ b/plugins/table/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'nl', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'nl', {
 		borderColor: 'Randkleur',
 		data: 'Gegevens',
 		header: 'Kop',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Ja',
 		no: 'Nee',
 		invalidWidth: 'De celbreedte moet een getal zijn.',
diff --git a/plugins/table/lang/no.js b/plugins/table/lang/no.js
index 3dd850ec..3657837f 100644
--- a/plugins/table/lang/no.js
+++ b/plugins/table/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'no', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'no', {
 		borderColor: 'Rammefarge',
 		data: 'Data',
 		header: 'Overskrift',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Ja',
 		no: 'Nei',
 		invalidWidth: 'Cellebredde må være et tall.',
diff --git a/plugins/table/lang/oc.js b/plugins/table/lang/oc.js
index 769c6c08..c9ad9a89 100644
--- a/plugins/table/lang/oc.js
+++ b/plugins/table/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'oc', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'oc', {
 		borderColor: 'Color de bordadura',
 		data: 'Donadas',
 		header: 'Entèsta',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Òc',
 		no: 'Non',
 		invalidWidth: 'La largor de la cellula deu èsser un nombre.',
diff --git a/plugins/table/lang/pl.js b/plugins/table/lang/pl.js
index 5f6dee0c..27f2a380 100644
--- a/plugins/table/lang/pl.js
+++ b/plugins/table/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'pl', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'pl', {
 		borderColor: 'Kolor obramowania',
 		data: 'Dane',
 		header: 'Nagłówek',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Tak',
 		no: 'Nie',
 		invalidWidth: 'Szerokość komórki musi być liczbą.',
diff --git a/plugins/table/lang/pt-br.js b/plugins/table/lang/pt-br.js
index 3b51464b..68b850ef 100644
--- a/plugins/table/lang/pt-br.js
+++ b/plugins/table/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'pt-br', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'pt-br', {
 		borderColor: 'Cor das bordas',
 		data: 'Dados',
 		header: 'Cabeçalho',
+		columnHeader: 'Cabeçalho da Coluna',
+		rowHeader: 'Cabeçalho da Linha',
 		yes: 'Sim',
 		no: 'Não',
 		invalidWidth: 'A largura da célula tem que ser um número.',
diff --git a/plugins/table/lang/pt.js b/plugins/table/lang/pt.js
index bf268a71..269bc988 100644
--- a/plugins/table/lang/pt.js
+++ b/plugins/table/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'pt', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'pt', {
 		borderColor: 'Cor da margem',
 		data: 'Dados',
 		header: 'Cabeçalho',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Sim',
 		no: 'Não',
 		invalidWidth: 'A largura da célula deve ser um número.',
diff --git a/plugins/table/lang/ro.js b/plugins/table/lang/ro.js
index b836cbda..3938e410 100644
--- a/plugins/table/lang/ro.js
+++ b/plugins/table/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'ro', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'ro', {
 		borderColor: 'Culoare bordură',
 		data: 'Data',
 		header: 'Antet',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Da',
 		no: 'Nu',
 		invalidWidth: 'Lățimea celulei trebuie să fie un număr.',
diff --git a/plugins/table/lang/ru.js b/plugins/table/lang/ru.js
index dee6f434..f552a987 100644
--- a/plugins/table/lang/ru.js
+++ b/plugins/table/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'ru', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'ru', {
 		borderColor: 'Цвет границ',
 		data: 'Данные',
 		header: 'Заголовок',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Да',
 		no: 'Нет',
 		invalidWidth: 'Ширина ячейки должна быть числом.',
diff --git a/plugins/table/lang/si.js b/plugins/table/lang/si.js
index 340810f4..ae2d5965 100644
--- a/plugins/table/lang/si.js
+++ b/plugins/table/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'si', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'si', {
 		borderColor: 'මායිම් ',
 		data: 'Data', // MISSING
 		header: 'ශීර්ෂක',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'ඔව්',
 		no: 'නැත',
 		invalidWidth: 'කොටු පළල සංඛ්‍ය්ත්මක වටිනාකමක් විය යුතුය',
diff --git a/plugins/table/lang/sk.js b/plugins/table/lang/sk.js
index 95aee9b9..c626fa5a 100644
--- a/plugins/table/lang/sk.js
+++ b/plugins/table/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'sk', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'sk', {
 		borderColor: 'Farba orámovania',
 		data: 'Dáta',
 		header: 'Hlavička',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Áno',
 		no: 'Nie',
 		invalidWidth: 'Šírka bunky musí byť číslo.',
diff --git a/plugins/table/lang/sl.js b/plugins/table/lang/sl.js
index 699b4bcb..1d9f12e5 100644
--- a/plugins/table/lang/sl.js
+++ b/plugins/table/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'sl', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'sl', {
 		borderColor: 'Barva obrobe',
 		data: 'Podatki',
 		header: 'Glava',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Da',
 		no: 'Ne',
 		invalidWidth: 'Širina celice mora biti število.',
diff --git a/plugins/table/lang/sq.js b/plugins/table/lang/sq.js
index 34bb18fa..d9f83c64 100644
--- a/plugins/table/lang/sq.js
+++ b/plugins/table/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'sq', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'sq', {
 		borderColor: 'Ngjyra e Kornizave',
 		data: 'Të dhënat',
 		header: 'Koka',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Po',
 		no: 'Jo',
 		invalidWidth: 'Gjerësia e qelisë duhet të jetë numër.',
diff --git a/plugins/table/lang/sr-latn.js b/plugins/table/lang/sr-latn.js
index bdfca134..136f24f4 100644
--- a/plugins/table/lang/sr-latn.js
+++ b/plugins/table/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'sr-latn', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'sr-latn', {
 		borderColor: 'Boja okvira',
 		data: 'Podatak',
 		header: 'Zaglavlje',
+		columnHeader: 'Zaglavlje kolone',
+		rowHeader: 'Zaglavlje reda',
 		yes: 'Da',
 		no: 'Nе',
 		invalidWidth: 'U polje širina možete upisati samo brojeve. ',
diff --git a/plugins/table/lang/sr.js b/plugins/table/lang/sr.js
index 8f1e2566..93472501 100644
--- a/plugins/table/lang/sr.js
+++ b/plugins/table/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'sr', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'sr', {
 		borderColor: 'Боја оквира',
 		data: 'Податак',
 		header: 'Наслов',
+		columnHeader: 'Заглавље колоне',
+		rowHeader: 'Заглавље реда',
 		yes: 'Да',
 		no: 'Не',
 		invalidWidth: 'У поље ширина можете уписати само бројеве.',
diff --git a/plugins/table/lang/sv.js b/plugins/table/lang/sv.js
index 98be4908..7b9e5e16 100644
--- a/plugins/table/lang/sv.js
+++ b/plugins/table/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'sv', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'sv', {
 		borderColor: 'Ramfärg',
 		data: 'Data',
 		header: 'Rubrik',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Ja',
 		no: 'Nej',
 		invalidWidth: 'Cellens bredd måste vara ett nummer.',
diff --git a/plugins/table/lang/th.js b/plugins/table/lang/th.js
index db7b3ca9..db117b5d 100644
--- a/plugins/table/lang/th.js
+++ b/plugins/table/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'th', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'th', {
 		borderColor: 'Border Color',
 		data: 'Data',
 		header: 'Header',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Yes',
 		no: 'No',
 		invalidWidth: 'Cell width must be a number.',
diff --git a/plugins/table/lang/tr.js b/plugins/table/lang/tr.js
index 59ae0e05..745d572b 100644
--- a/plugins/table/lang/tr.js
+++ b/plugins/table/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'tr', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'tr', {
 		borderColor: 'Çerçeve Rengi',
 		data: 'Veri',
 		header: 'Başlık',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Evet',
 		no: 'Hayır',
 		invalidWidth: 'Hücre genişliği sayı olmalıdır.',
diff --git a/plugins/table/lang/tt.js b/plugins/table/lang/tt.js
index 3add9dc5..a8936ca7 100644
--- a/plugins/table/lang/tt.js
+++ b/plugins/table/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'tt', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'tt', {
 		borderColor: 'Чик төсе',
 		data: 'Мәгълүмат',
 		header: 'Башлык',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Әйе',
 		no: 'Юк',
 		invalidWidth: 'Cell width must be a number.', // MISSING
diff --git a/plugins/table/lang/ug.js b/plugins/table/lang/ug.js
index 3a567d15..abf84ee1 100644
--- a/plugins/table/lang/ug.js
+++ b/plugins/table/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'ug', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'ug', {
 		borderColor: 'گىرۋەك رەڭگى',
 		data: 'سانلىق مەلۇمات',
 		header: 'جەدۋەل باشى',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'ھەئە',
 		no: 'ياق',
 		invalidWidth: 'كاتەكچە كەڭلىكى چوقۇم سان بولىدۇ',
diff --git a/plugins/table/lang/uk.js b/plugins/table/lang/uk.js
index 2f25de84..4c7567d4 100644
--- a/plugins/table/lang/uk.js
+++ b/plugins/table/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'uk', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'uk', {
 		borderColor: 'Колір рамки',
 		data: 'Дані',
 		header: 'Заголовок',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Так',
 		no: 'Ні',
 		invalidWidth: 'Ширина комірки повинна бути цілим числом.',
diff --git a/plugins/table/lang/vi.js b/plugins/table/lang/vi.js
index 8b960455..3023bbd1 100644
--- a/plugins/table/lang/vi.js
+++ b/plugins/table/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'vi', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'vi', {
 		borderColor: 'Màu viền',
 		data: 'Dữ liệu',
 		header: 'Đầu đề',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: 'Có',
 		no: 'Không',
 		invalidWidth: 'Chiều rộng của ô phải là một số nguyên.',
diff --git a/plugins/table/lang/zh-cn.js b/plugins/table/lang/zh-cn.js
index c6698e29..3eb32eac 100644
--- a/plugins/table/lang/zh-cn.js
+++ b/plugins/table/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'zh-cn', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'zh-cn', {
 		borderColor: '边框颜色',
 		data: '数据',
 		header: '表头',
+		columnHeader: 'Column Header', // MISSING
+		rowHeader: 'Row Header', // MISSING
 		yes: '是',
 		no: '否',
 		invalidWidth: '单元格宽度必须为数字格式',
diff --git a/plugins/table/lang/zh.js b/plugins/table/lang/zh.js
index 977ed15f..b2b579e9 100644
--- a/plugins/table/lang/zh.js
+++ b/plugins/table/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'table', 'zh', {
@@ -27,6 +27,8 @@ CKEDITOR.plugins.setLang( 'table', 'zh', {
 		borderColor: '框線顏色',
 		data: '資料',
 		header: '頁首',
+		columnHeader: '欄標題',
+		rowHeader: '列標題',
 		yes: '是',
 		no: '否',
 		invalidWidth: '儲存格寬度必須為數字。',
@@ -50,7 +52,7 @@ CKEDITOR.plugins.setLang( 'table', 'zh', {
 	headersColumn: '第一列',
 	headersNone: '無',
 	headersRow: '第一行',
-	heightUnit: 'height unit', // MISSING
+	heightUnit: '高度單位',
 	invalidBorder: '框線大小必須是整數。',
 	invalidCellPadding: '儲存格邊距必須為正數。',
 	invalidCellSpacing: '儲存格間距必須為正數。',
diff --git a/plugins/table/plugin.js b/plugins/table/plugin.js
index 0f6567f2..69efd521 100755
--- a/plugins/table/plugin.js
+++ b/plugins/table/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/tableresize/dev/tableresize.html b/plugins/tableresize/dev/tableresize.html
index 116305cd..30e45a96 100644
--- a/plugins/tableresize/dev/tableresize.html
+++ b/plugins/tableresize/dev/tableresize.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
diff --git a/plugins/tableresize/plugin.js b/plugins/tableresize/plugin.js
index ba559a23..7fc7fcf2 100644
--- a/plugins/tableresize/plugin.js
+++ b/plugins/tableresize/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -402,11 +402,12 @@
 		init: function( editor ) {
 			editor.on( 'contentDom', function() {
 				var resizer,
-					editable = editor.editable();
+					editable = editor.editable(),
+					// In Classic editor it is better to use document
+					// instead of editable so event will work below body.
+					listenerTarget = editable.isInline() ? editable : editor.document;
 
-				// In Classic editor it is better to use document
-				// instead of editable so event will work below body.
-				editable.attachListener( editable.isInline() ? editable : editor.document, 'mousemove', function( evt ) {
+				editable.attachListener( listenerTarget, 'mousemove', function( evt ) {
 					evt = evt.data;
 
 					var target = evt.getTarget();
@@ -456,6 +457,15 @@
 						resizer.attachTo( pillar );
 					}
 				} );
+
+				// Reset pillars position on scroll (#4889).
+				editable.attachListener( listenerTarget, 'scroll', function() {
+					var tables = editable.find( 'table' ).toArray();
+
+					CKEDITOR.tools.array.forEach( tables, CKEDITOR.tools.debounce( function( table ) {
+						table.removeCustomData( '_cke_table_pillars' );
+					}, 200 ) );
+				} );
 			} );
 		}
 	} );
diff --git a/plugins/tableresize/samples/tableresize.html b/plugins/tableresize/samples/tableresize.html
index eeaf63d2..ffd986cf 100644
--- a/plugins/tableresize/samples/tableresize.html
+++ b/plugins/tableresize/samples/tableresize.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -100,7 +100,7 @@ CKEDITOR.replace( '<em>textarea_id</em>', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/tableselection/plugin.js b/plugins/tableselection/plugin.js
index 4c553323..47a57209 100644
--- a/plugins/tableselection/plugin.js
+++ b/plugins/tableselection/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -1149,6 +1149,21 @@
 				}
 			}
 
+			function getTableKeyUpListener( editor ) {
+				return function( evt ) {
+					var key = evt.data.getKey(),
+						selection = editor.getSelection();
+
+					// Handle only Tab key in table selection.
+					if ( key !== 9 || !selection.isInTable() ) {
+						return;
+					}
+
+					// Restore fake selection after pressing Tab (#4802).
+					restoreFakeSelection( editor );
+				};
+			}
+
 			function clearCellInRange( range ) {
 				var node = range.getEnclosedNode();
 
@@ -1172,6 +1187,7 @@
 			var editable = editor.editable();
 			editable.attachListener( editable, 'keydown', getTableOnKeyDownListener( editor ), null, null, -1 );
 			editable.attachListener( editable, 'keypress', tableKeyPressListener, null, null, -1 );
+			editable.attachListener( editable, 'keyup', getTableKeyUpListener( editor ), null, null, -1 );
 		}
 	};
 
diff --git a/plugins/tabletools/dialogs/tableCell.js b/plugins/tabletools/dialogs/tableCell.js
index c7f3afbf..969237bd 100644
--- a/plugins/tabletools/dialogs/tableCell.js
+++ b/plugins/tabletools/dialogs/tableCell.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -119,18 +119,53 @@ CKEDITOR.dialog.add( 'cellProperties', function( editor ) {
 			{
 				type: 'select',
 				id: 'cellType',
-				requiredContent: 'th',
+				requiredContent: 'th[scope]',
 				label: langCell.cellType,
 				'default': 'td',
-				items: [
-					[ langCell.data, 'td' ],
-					[ langCell.header, 'th' ]
-				],
+				items: getAvailableCellTypes( editor ),
 				setup: setupCells( function( selectedCell ) {
-					return selectedCell.getName();
+					var cellName = selectedCell.getName(),
+						scope = selectedCell.getAttribute( 'scope' );
+
+					if ( cellName === 'td' ) {
+						return 'td';
+					}
+
+					switch ( scope ) {
+						case 'row':
+							return 'thr';
+						case 'col':
+							return 'thc';
+						default:
+							return 'th';
+					}
 				} ),
 				commit: function( selectedCell ) {
-					selectedCell.renameNode( this.getValue() );
+					var nameToProps = {
+						'td': {
+							name: 'td'
+						},
+						'th': {
+							name: 'th'
+						},
+						'thc': {
+							name: 'th',
+							scope: 'col'
+						},
+						'thr': {
+							name: 'th',
+							scope: 'row'
+						}
+					},
+					selectedProps = nameToProps[ this.getValue() ];
+
+					selectedCell.renameNode( selectedProps.name );
+
+					if ( selectedProps.scope ) {
+						selectedCell.setAttribute( 'scope', selectedProps.scope );
+					} else {
+						selectedCell.removeAttribute( 'scope' );
+					}
 				}
 			},
 			createSpacer( 'th' ),
@@ -538,4 +573,19 @@ CKEDITOR.dialog.add( 'cellProperties', function( editor ) {
 			selectedCell.removeAttribute( 'borderColor' );
 		}
 	}
+
+	function getAvailableCellTypes( editor ) {
+		if ( editor.config.tabletools_scopedHeaders ) {
+			return [
+				[ langCell.data, 'td' ],
+				[ langCell.columnHeader, 'thc' ],
+				[ langCell.rowHeader, 'thr' ]
+			];
+		}
+
+		return [
+			[ langCell.data, 'td' ],
+			[ langCell.header, 'th' ]
+		];
+	}
 } );
diff --git a/plugins/tabletools/plugin.js b/plugins/tabletools/plugin.js
index 49307577..8ec49562 100644
--- a/plugins/tabletools/plugin.js
+++ b/plugins/tabletools/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -334,7 +334,7 @@
 				return selection;
 			}
 
-			range = ranges[0];
+			range = ranges[ 0 ];
 			if ( range.collapsed || range.endOffset !== 0 ) {
 				return selection;
 			}
@@ -1269,3 +1269,54 @@ CKEDITOR.tools.buildTableMap = function( table, startRow, startCell, endRow, end
 	}
 	return aMap;
 };
+
+/**
+ * Changes the available values of the "Cell Type" field inside the
+ * "Cell Properties" dialog. If it's set to `false` (the default value), the "Cell Type" field
+ * will contain two options:
+ *
+ * * "Data",
+ * * "Header".
+ *
+ * If the option is set to `true`, the "Cell Type" field in the "Cell Properties" dialog
+ * will contain three possible values:
+ *
+ * * "Data",
+ * * "Column Header",
+ * * "Row Header".
+ *
+ * Column and row header options updates table headers (`th`) with the
+ * [`scope` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th#attr-scope)
+ * that may improve accessibility experience in more complex tables. Read the
+ * [w3.org guide about using the scope attribute to associate header cells
+ * and data cells in data tables](https://www.w3.org/WAI/WCAG21/Techniques/html/H63)
+ * to learn more.
+ *
+ * If this config variable is set to `true` and there is a `th` element without the
+ * `scope` attribute in the editor's content, its "Cell Type" value will be set to an empty value.
+ * To avoid that issue, tables with `th` elements need to be migrated.
+ * The sample transformation that adds `[scope=col]` to all scopeless `th` elements is presented below:
+ *
+ * ```javascript
+ * editor.filter.addTransformations( [
+ * 	[
+ * 		{
+ * 			element: 'th',
+ * 			left: function( el ) {
+ * 				return !el.attributes.scope;
+ * 			},
+ * 			right: function( el ) {
+ * 				el.attributes.scope = 'col';
+ * 			}
+ * 		}
+ * 	]
+ * ] );
+ * ```
+ *
+ * The transformation is added to the editor using {@link CKEDITOR.filter#addTransformations}.
+ *
+ * @since 4.20.0
+ * @cfg [tabletools_scopedHeaders=false]
+ * @member CKEDITOR.config
+ */
+CKEDITOR.config.tabletools_scopedHeaders = false;
diff --git a/plugins/templates/dialogs/templates.css b/plugins/templates/dialogs/templates.css
index 2a442da4..f3ef3253 100644
--- a/plugins/templates/dialogs/templates.css
+++ b/plugins/templates/dialogs/templates.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/plugins/templates/dialogs/templates.js b/plugins/templates/dialogs/templates.js
index a0695bd6..fc5ef812 100644
--- a/plugins/templates/dialogs/templates.js
+++ b/plugins/templates/dialogs/templates.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/templates/lang/af.js b/plugins/templates/lang/af.js
index c971b201..6414bc58 100644
--- a/plugins/templates/lang/af.js
+++ b/plugins/templates/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'af', {
diff --git a/plugins/templates/lang/ar.js b/plugins/templates/lang/ar.js
index 634ea146..136202c5 100644
--- a/plugins/templates/lang/ar.js
+++ b/plugins/templates/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'ar', {
diff --git a/plugins/templates/lang/az.js b/plugins/templates/lang/az.js
index 3da7f173..5608cc64 100644
--- a/plugins/templates/lang/az.js
+++ b/plugins/templates/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'az', {
diff --git a/plugins/templates/lang/bg.js b/plugins/templates/lang/bg.js
index c7e62c71..5f0e5211 100644
--- a/plugins/templates/lang/bg.js
+++ b/plugins/templates/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'bg', {
diff --git a/plugins/templates/lang/bn.js b/plugins/templates/lang/bn.js
index 2198d5d5..56b1189d 100644
--- a/plugins/templates/lang/bn.js
+++ b/plugins/templates/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'bn', {
diff --git a/plugins/templates/lang/bs.js b/plugins/templates/lang/bs.js
index 7aa1a524..a31a4dac 100644
--- a/plugins/templates/lang/bs.js
+++ b/plugins/templates/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'bs', {
diff --git a/plugins/templates/lang/ca.js b/plugins/templates/lang/ca.js
index 2f094800..79af6868 100644
--- a/plugins/templates/lang/ca.js
+++ b/plugins/templates/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'ca', {
diff --git a/plugins/templates/lang/cs.js b/plugins/templates/lang/cs.js
index a3922cfe..88c877fc 100644
--- a/plugins/templates/lang/cs.js
+++ b/plugins/templates/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'cs', {
diff --git a/plugins/templates/lang/cy.js b/plugins/templates/lang/cy.js
index dfe1f16d..f50dad10 100644
--- a/plugins/templates/lang/cy.js
+++ b/plugins/templates/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'cy', {
diff --git a/plugins/templates/lang/da.js b/plugins/templates/lang/da.js
index 933ea341..efc78ac3 100644
--- a/plugins/templates/lang/da.js
+++ b/plugins/templates/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'da', {
diff --git a/plugins/templates/lang/de-ch.js b/plugins/templates/lang/de-ch.js
index 1570bb7c..7da52edd 100644
--- a/plugins/templates/lang/de-ch.js
+++ b/plugins/templates/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'de-ch', {
diff --git a/plugins/templates/lang/de.js b/plugins/templates/lang/de.js
index 18cbe042..2c286272 100644
--- a/plugins/templates/lang/de.js
+++ b/plugins/templates/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'de', {
diff --git a/plugins/templates/lang/el.js b/plugins/templates/lang/el.js
index 596c5d8f..bc49498a 100644
--- a/plugins/templates/lang/el.js
+++ b/plugins/templates/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'el', {
diff --git a/plugins/templates/lang/en-au.js b/plugins/templates/lang/en-au.js
index 5eaeb9ed..5b478e52 100644
--- a/plugins/templates/lang/en-au.js
+++ b/plugins/templates/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'en-au', {
diff --git a/plugins/templates/lang/en-ca.js b/plugins/templates/lang/en-ca.js
index 5ab6ad7b..f4d399e0 100644
--- a/plugins/templates/lang/en-ca.js
+++ b/plugins/templates/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'en-ca', {
diff --git a/plugins/templates/lang/en-gb.js b/plugins/templates/lang/en-gb.js
index 3f79e7ac..08d01697 100644
--- a/plugins/templates/lang/en-gb.js
+++ b/plugins/templates/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'en-gb', {
diff --git a/plugins/templates/lang/en.js b/plugins/templates/lang/en.js
index 81e57ff7..ed4c9b60 100644
--- a/plugins/templates/lang/en.js
+++ b/plugins/templates/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'en', {
diff --git a/plugins/templates/lang/eo.js b/plugins/templates/lang/eo.js
index fe2c04e7..d2b4212c 100644
--- a/plugins/templates/lang/eo.js
+++ b/plugins/templates/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'eo', {
diff --git a/plugins/templates/lang/es-mx.js b/plugins/templates/lang/es-mx.js
index 9bbc9376..d6889ed2 100644
--- a/plugins/templates/lang/es-mx.js
+++ b/plugins/templates/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'es-mx', {
diff --git a/plugins/templates/lang/es.js b/plugins/templates/lang/es.js
index 93c1b6e8..c816f6d9 100644
--- a/plugins/templates/lang/es.js
+++ b/plugins/templates/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'es', {
diff --git a/plugins/templates/lang/et.js b/plugins/templates/lang/et.js
index fed7cf2a..dfb57e95 100644
--- a/plugins/templates/lang/et.js
+++ b/plugins/templates/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'et', {
diff --git a/plugins/templates/lang/eu.js b/plugins/templates/lang/eu.js
index db5b555a..ace37e71 100644
--- a/plugins/templates/lang/eu.js
+++ b/plugins/templates/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'eu', {
diff --git a/plugins/templates/lang/fa.js b/plugins/templates/lang/fa.js
index bb15b7e0..c95abf2e 100644
--- a/plugins/templates/lang/fa.js
+++ b/plugins/templates/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'fa', {
diff --git a/plugins/templates/lang/fi.js b/plugins/templates/lang/fi.js
index e94ecf17..9ea0abd4 100644
--- a/plugins/templates/lang/fi.js
+++ b/plugins/templates/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'fi', {
diff --git a/plugins/templates/lang/fo.js b/plugins/templates/lang/fo.js
index a8ccefce..8e65158f 100644
--- a/plugins/templates/lang/fo.js
+++ b/plugins/templates/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'fo', {
diff --git a/plugins/templates/lang/fr-ca.js b/plugins/templates/lang/fr-ca.js
index 0c3e440f..91dada06 100644
--- a/plugins/templates/lang/fr-ca.js
+++ b/plugins/templates/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'fr-ca', {
diff --git a/plugins/templates/lang/fr.js b/plugins/templates/lang/fr.js
index 604fc149..534dea91 100644
--- a/plugins/templates/lang/fr.js
+++ b/plugins/templates/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'fr', {
diff --git a/plugins/templates/lang/gl.js b/plugins/templates/lang/gl.js
index 1354c7bd..e7fef690 100644
--- a/plugins/templates/lang/gl.js
+++ b/plugins/templates/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'gl', {
diff --git a/plugins/templates/lang/gu.js b/plugins/templates/lang/gu.js
index ebb312d3..09cbe0a1 100644
--- a/plugins/templates/lang/gu.js
+++ b/plugins/templates/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'gu', {
diff --git a/plugins/templates/lang/he.js b/plugins/templates/lang/he.js
index d03e39fc..a6ae7c9f 100644
--- a/plugins/templates/lang/he.js
+++ b/plugins/templates/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'he', {
diff --git a/plugins/templates/lang/hi.js b/plugins/templates/lang/hi.js
index 1e391ce8..6a181656 100644
--- a/plugins/templates/lang/hi.js
+++ b/plugins/templates/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'hi', {
diff --git a/plugins/templates/lang/hr.js b/plugins/templates/lang/hr.js
index ca2dbe76..464d3531 100644
--- a/plugins/templates/lang/hr.js
+++ b/plugins/templates/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'hr', {
diff --git a/plugins/templates/lang/hu.js b/plugins/templates/lang/hu.js
index 820bc30c..09d95b01 100644
--- a/plugins/templates/lang/hu.js
+++ b/plugins/templates/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'hu', {
diff --git a/plugins/templates/lang/id.js b/plugins/templates/lang/id.js
index a4112061..13388c67 100644
--- a/plugins/templates/lang/id.js
+++ b/plugins/templates/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'id', {
diff --git a/plugins/templates/lang/is.js b/plugins/templates/lang/is.js
index f8c31550..c76cd2a8 100644
--- a/plugins/templates/lang/is.js
+++ b/plugins/templates/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'is', {
diff --git a/plugins/templates/lang/it.js b/plugins/templates/lang/it.js
index 97c8ca81..a0a3a724 100644
--- a/plugins/templates/lang/it.js
+++ b/plugins/templates/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'it', {
diff --git a/plugins/templates/lang/ja.js b/plugins/templates/lang/ja.js
index 322fa349..f320a7be 100644
--- a/plugins/templates/lang/ja.js
+++ b/plugins/templates/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'ja', {
diff --git a/plugins/templates/lang/ka.js b/plugins/templates/lang/ka.js
index 4fb178cb..1a46095c 100644
--- a/plugins/templates/lang/ka.js
+++ b/plugins/templates/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'ka', {
diff --git a/plugins/templates/lang/km.js b/plugins/templates/lang/km.js
index 468de94e..502a37c9 100644
--- a/plugins/templates/lang/km.js
+++ b/plugins/templates/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'km', {
diff --git a/plugins/templates/lang/ko.js b/plugins/templates/lang/ko.js
index 3e883df2..ff8b19cb 100644
--- a/plugins/templates/lang/ko.js
+++ b/plugins/templates/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'ko', {
diff --git a/plugins/templates/lang/ku.js b/plugins/templates/lang/ku.js
index 3da6e324..75f5eac9 100644
--- a/plugins/templates/lang/ku.js
+++ b/plugins/templates/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'ku', {
diff --git a/plugins/templates/lang/lt.js b/plugins/templates/lang/lt.js
index 6f02aa20..989be3c5 100644
--- a/plugins/templates/lang/lt.js
+++ b/plugins/templates/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'lt', {
diff --git a/plugins/templates/lang/lv.js b/plugins/templates/lang/lv.js
index 74dccf33..130a2e2e 100644
--- a/plugins/templates/lang/lv.js
+++ b/plugins/templates/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'lv', {
diff --git a/plugins/templates/lang/mk.js b/plugins/templates/lang/mk.js
index 35be23ac..84780d74 100644
--- a/plugins/templates/lang/mk.js
+++ b/plugins/templates/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'mk', {
diff --git a/plugins/templates/lang/mn.js b/plugins/templates/lang/mn.js
index 134e94ed..278b8b13 100644
--- a/plugins/templates/lang/mn.js
+++ b/plugins/templates/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'mn', {
diff --git a/plugins/templates/lang/ms.js b/plugins/templates/lang/ms.js
index 0295a161..27fcf58e 100644
--- a/plugins/templates/lang/ms.js
+++ b/plugins/templates/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'ms', {
diff --git a/plugins/templates/lang/nb.js b/plugins/templates/lang/nb.js
index 8e482452..9838e4d2 100644
--- a/plugins/templates/lang/nb.js
+++ b/plugins/templates/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'nb', {
diff --git a/plugins/templates/lang/nl.js b/plugins/templates/lang/nl.js
index dc963981..5dca4ecd 100644
--- a/plugins/templates/lang/nl.js
+++ b/plugins/templates/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'nl', {
diff --git a/plugins/templates/lang/no.js b/plugins/templates/lang/no.js
index adfdddad..36ee7784 100644
--- a/plugins/templates/lang/no.js
+++ b/plugins/templates/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'no', {
diff --git a/plugins/templates/lang/oc.js b/plugins/templates/lang/oc.js
index c9e0456b..339a5cf5 100644
--- a/plugins/templates/lang/oc.js
+++ b/plugins/templates/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'oc', {
diff --git a/plugins/templates/lang/pl.js b/plugins/templates/lang/pl.js
index 615ec8e4..3ced931c 100644
--- a/plugins/templates/lang/pl.js
+++ b/plugins/templates/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'pl', {
diff --git a/plugins/templates/lang/pt-br.js b/plugins/templates/lang/pt-br.js
index 0b26d01c..e3f904f5 100644
--- a/plugins/templates/lang/pt-br.js
+++ b/plugins/templates/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'pt-br', {
diff --git a/plugins/templates/lang/pt.js b/plugins/templates/lang/pt.js
index d8104571..1214cbaf 100644
--- a/plugins/templates/lang/pt.js
+++ b/plugins/templates/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'pt', {
diff --git a/plugins/templates/lang/ro.js b/plugins/templates/lang/ro.js
index 2a43c86b..f9a1c63d 100644
--- a/plugins/templates/lang/ro.js
+++ b/plugins/templates/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'ro', {
diff --git a/plugins/templates/lang/ru.js b/plugins/templates/lang/ru.js
index e5895669..bccc7954 100644
--- a/plugins/templates/lang/ru.js
+++ b/plugins/templates/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'ru', {
diff --git a/plugins/templates/lang/si.js b/plugins/templates/lang/si.js
index 9c20589e..a39d2411 100644
--- a/plugins/templates/lang/si.js
+++ b/plugins/templates/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'si', {
diff --git a/plugins/templates/lang/sk.js b/plugins/templates/lang/sk.js
index fe3acb12..bb550924 100644
--- a/plugins/templates/lang/sk.js
+++ b/plugins/templates/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'sk', {
diff --git a/plugins/templates/lang/sl.js b/plugins/templates/lang/sl.js
index 4d224a25..c54d1c71 100644
--- a/plugins/templates/lang/sl.js
+++ b/plugins/templates/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'sl', {
diff --git a/plugins/templates/lang/sq.js b/plugins/templates/lang/sq.js
index e2b3bc06..b9fa84bb 100644
--- a/plugins/templates/lang/sq.js
+++ b/plugins/templates/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'sq', {
diff --git a/plugins/templates/lang/sr-latn.js b/plugins/templates/lang/sr-latn.js
index f20a61be..0f2b90ca 100644
--- a/plugins/templates/lang/sr-latn.js
+++ b/plugins/templates/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'sr-latn', {
diff --git a/plugins/templates/lang/sr.js b/plugins/templates/lang/sr.js
index b5b6331a..97d1162c 100644
--- a/plugins/templates/lang/sr.js
+++ b/plugins/templates/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'sr', {
diff --git a/plugins/templates/lang/sv.js b/plugins/templates/lang/sv.js
index c33d2f6f..c4b74520 100644
--- a/plugins/templates/lang/sv.js
+++ b/plugins/templates/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'sv', {
diff --git a/plugins/templates/lang/th.js b/plugins/templates/lang/th.js
index b261ac7c..2d3b08bd 100644
--- a/plugins/templates/lang/th.js
+++ b/plugins/templates/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'th', {
diff --git a/plugins/templates/lang/tr.js b/plugins/templates/lang/tr.js
index 8c6b094c..fcde6e06 100644
--- a/plugins/templates/lang/tr.js
+++ b/plugins/templates/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'tr', {
diff --git a/plugins/templates/lang/tt.js b/plugins/templates/lang/tt.js
index 715cd911..51260003 100644
--- a/plugins/templates/lang/tt.js
+++ b/plugins/templates/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'tt', {
diff --git a/plugins/templates/lang/ug.js b/plugins/templates/lang/ug.js
index 9271b9ed..168f0e61 100644
--- a/plugins/templates/lang/ug.js
+++ b/plugins/templates/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'ug', {
diff --git a/plugins/templates/lang/uk.js b/plugins/templates/lang/uk.js
index 0a466ab3..5c76b458 100644
--- a/plugins/templates/lang/uk.js
+++ b/plugins/templates/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'uk', {
diff --git a/plugins/templates/lang/vi.js b/plugins/templates/lang/vi.js
index b31244b0..670782e0 100644
--- a/plugins/templates/lang/vi.js
+++ b/plugins/templates/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'vi', {
diff --git a/plugins/templates/lang/zh-cn.js b/plugins/templates/lang/zh-cn.js
index edffec7e..9cb76a59 100644
--- a/plugins/templates/lang/zh-cn.js
+++ b/plugins/templates/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'zh-cn', {
diff --git a/plugins/templates/lang/zh.js b/plugins/templates/lang/zh.js
index f3b08503..1bc5bdef 100644
--- a/plugins/templates/lang/zh.js
+++ b/plugins/templates/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'templates', 'zh', {
diff --git a/plugins/templates/plugin.js b/plugins/templates/plugin.js
index 9a3c4408..5c0774c1 100644
--- a/plugins/templates/plugin.js
+++ b/plugins/templates/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/templates/templatedefinition.js b/plugins/templates/templatedefinition.js
index 34da6a02..ab8e68f2 100644
--- a/plugins/templates/templatedefinition.js
+++ b/plugins/templates/templatedefinition.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/templates/templates/default.js b/plugins/templates/templates/default.js
index 879ea3bd..7247ef55 100644
--- a/plugins/templates/templates/default.js
+++ b/plugins/templates/templates/default.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/textmatch/plugin.js b/plugins/textmatch/plugin.js
index 039762e2..434f4cfc 100644
--- a/plugins/textmatch/plugin.js
+++ b/plugins/textmatch/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/textwatcher/plugin.js b/plugins/textwatcher/plugin.js
index bc461381..bb3ce37a 100644
--- a/plugins/textwatcher/plugin.js
+++ b/plugins/textwatcher/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/toolbar/lang/af.js b/plugins/toolbar/lang/af.js
index 6e02bcc2..368f820b 100644
--- a/plugins/toolbar/lang/af.js
+++ b/plugins/toolbar/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'af', {
diff --git a/plugins/toolbar/lang/ar.js b/plugins/toolbar/lang/ar.js
index 61fb6cfd..b843f0b4 100644
--- a/plugins/toolbar/lang/ar.js
+++ b/plugins/toolbar/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'ar', {
diff --git a/plugins/toolbar/lang/az.js b/plugins/toolbar/lang/az.js
index dfd8485d..a320bc08 100644
--- a/plugins/toolbar/lang/az.js
+++ b/plugins/toolbar/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'az', {
diff --git a/plugins/toolbar/lang/bg.js b/plugins/toolbar/lang/bg.js
index b921f9c2..113753a3 100644
--- a/plugins/toolbar/lang/bg.js
+++ b/plugins/toolbar/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'bg', {
diff --git a/plugins/toolbar/lang/bn.js b/plugins/toolbar/lang/bn.js
index 243ae0d1..2dab0e85 100644
--- a/plugins/toolbar/lang/bn.js
+++ b/plugins/toolbar/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'bn', {
diff --git a/plugins/toolbar/lang/bs.js b/plugins/toolbar/lang/bs.js
index c517e934..7bbeb81f 100644
--- a/plugins/toolbar/lang/bs.js
+++ b/plugins/toolbar/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'bs', {
diff --git a/plugins/toolbar/lang/ca.js b/plugins/toolbar/lang/ca.js
index 3611add8..3a5301e9 100644
--- a/plugins/toolbar/lang/ca.js
+++ b/plugins/toolbar/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'ca', {
diff --git a/plugins/toolbar/lang/cs.js b/plugins/toolbar/lang/cs.js
index 082d1936..836c386f 100644
--- a/plugins/toolbar/lang/cs.js
+++ b/plugins/toolbar/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'cs', {
diff --git a/plugins/toolbar/lang/cy.js b/plugins/toolbar/lang/cy.js
index 2f92f6e9..3b44c151 100644
--- a/plugins/toolbar/lang/cy.js
+++ b/plugins/toolbar/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'cy', {
diff --git a/plugins/toolbar/lang/da.js b/plugins/toolbar/lang/da.js
index 5ee98620..70ec2804 100644
--- a/plugins/toolbar/lang/da.js
+++ b/plugins/toolbar/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'da', {
diff --git a/plugins/toolbar/lang/de-ch.js b/plugins/toolbar/lang/de-ch.js
index 0b3e99b0..7686dc11 100644
--- a/plugins/toolbar/lang/de-ch.js
+++ b/plugins/toolbar/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'de-ch', {
diff --git a/plugins/toolbar/lang/de.js b/plugins/toolbar/lang/de.js
index 9303b2e3..e8c1d7e3 100644
--- a/plugins/toolbar/lang/de.js
+++ b/plugins/toolbar/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'de', {
diff --git a/plugins/toolbar/lang/el.js b/plugins/toolbar/lang/el.js
index e5828f94..9447f079 100644
--- a/plugins/toolbar/lang/el.js
+++ b/plugins/toolbar/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'el', {
diff --git a/plugins/toolbar/lang/en-au.js b/plugins/toolbar/lang/en-au.js
index f91ba433..1e7fef1a 100644
--- a/plugins/toolbar/lang/en-au.js
+++ b/plugins/toolbar/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'en-au', {
diff --git a/plugins/toolbar/lang/en-ca.js b/plugins/toolbar/lang/en-ca.js
index 6d36b6b9..4bd34eab 100644
--- a/plugins/toolbar/lang/en-ca.js
+++ b/plugins/toolbar/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'en-ca', {
diff --git a/plugins/toolbar/lang/en-gb.js b/plugins/toolbar/lang/en-gb.js
index 65aa163a..5127acea 100644
--- a/plugins/toolbar/lang/en-gb.js
+++ b/plugins/toolbar/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'en-gb', {
diff --git a/plugins/toolbar/lang/en.js b/plugins/toolbar/lang/en.js
index 797989eb..2e4e4210 100644
--- a/plugins/toolbar/lang/en.js
+++ b/plugins/toolbar/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'en', {
diff --git a/plugins/toolbar/lang/eo.js b/plugins/toolbar/lang/eo.js
index 69067e9d..b8c0106e 100644
--- a/plugins/toolbar/lang/eo.js
+++ b/plugins/toolbar/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'eo', {
diff --git a/plugins/toolbar/lang/es-mx.js b/plugins/toolbar/lang/es-mx.js
index 272f177f..4d832d80 100644
--- a/plugins/toolbar/lang/es-mx.js
+++ b/plugins/toolbar/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'es-mx', {
diff --git a/plugins/toolbar/lang/es.js b/plugins/toolbar/lang/es.js
index 48b30d05..b2b4e262 100644
--- a/plugins/toolbar/lang/es.js
+++ b/plugins/toolbar/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'es', {
diff --git a/plugins/toolbar/lang/et.js b/plugins/toolbar/lang/et.js
index 65f6e14c..77a17aea 100644
--- a/plugins/toolbar/lang/et.js
+++ b/plugins/toolbar/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'et', {
diff --git a/plugins/toolbar/lang/eu.js b/plugins/toolbar/lang/eu.js
index df179aa2..c58bbf39 100644
--- a/plugins/toolbar/lang/eu.js
+++ b/plugins/toolbar/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'eu', {
diff --git a/plugins/toolbar/lang/fa.js b/plugins/toolbar/lang/fa.js
index 81604e28..aea5ce07 100644
--- a/plugins/toolbar/lang/fa.js
+++ b/plugins/toolbar/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'fa', {
diff --git a/plugins/toolbar/lang/fi.js b/plugins/toolbar/lang/fi.js
index aad16933..42769d61 100644
--- a/plugins/toolbar/lang/fi.js
+++ b/plugins/toolbar/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'fi', {
diff --git a/plugins/toolbar/lang/fo.js b/plugins/toolbar/lang/fo.js
index 5a64f232..9a9092e0 100644
--- a/plugins/toolbar/lang/fo.js
+++ b/plugins/toolbar/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'fo', {
diff --git a/plugins/toolbar/lang/fr-ca.js b/plugins/toolbar/lang/fr-ca.js
index b7b266a6..6700ee06 100644
--- a/plugins/toolbar/lang/fr-ca.js
+++ b/plugins/toolbar/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'fr-ca', {
diff --git a/plugins/toolbar/lang/fr.js b/plugins/toolbar/lang/fr.js
index 9fa33cb5..d7ad8a8d 100644
--- a/plugins/toolbar/lang/fr.js
+++ b/plugins/toolbar/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'fr', {
diff --git a/plugins/toolbar/lang/gl.js b/plugins/toolbar/lang/gl.js
index 2e6fa8e7..10c53b22 100644
--- a/plugins/toolbar/lang/gl.js
+++ b/plugins/toolbar/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'gl', {
diff --git a/plugins/toolbar/lang/gu.js b/plugins/toolbar/lang/gu.js
index 44f22a74..91039c89 100644
--- a/plugins/toolbar/lang/gu.js
+++ b/plugins/toolbar/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'gu', {
diff --git a/plugins/toolbar/lang/he.js b/plugins/toolbar/lang/he.js
index 4799466b..6c30ef0f 100644
--- a/plugins/toolbar/lang/he.js
+++ b/plugins/toolbar/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'he', {
diff --git a/plugins/toolbar/lang/hi.js b/plugins/toolbar/lang/hi.js
index f45f7874..cfcb089e 100644
--- a/plugins/toolbar/lang/hi.js
+++ b/plugins/toolbar/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'hi', {
diff --git a/plugins/toolbar/lang/hr.js b/plugins/toolbar/lang/hr.js
index c4f81d54..dd185106 100644
--- a/plugins/toolbar/lang/hr.js
+++ b/plugins/toolbar/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'hr', {
diff --git a/plugins/toolbar/lang/hu.js b/plugins/toolbar/lang/hu.js
index 21fa3f25..1df24c96 100644
--- a/plugins/toolbar/lang/hu.js
+++ b/plugins/toolbar/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'hu', {
diff --git a/plugins/toolbar/lang/id.js b/plugins/toolbar/lang/id.js
index 9026ab9c..3c239c4f 100644
--- a/plugins/toolbar/lang/id.js
+++ b/plugins/toolbar/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'id', {
diff --git a/plugins/toolbar/lang/is.js b/plugins/toolbar/lang/is.js
index c01a1276..616ba2ca 100644
--- a/plugins/toolbar/lang/is.js
+++ b/plugins/toolbar/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'is', {
diff --git a/plugins/toolbar/lang/it.js b/plugins/toolbar/lang/it.js
index dfd747ee..6ded5635 100644
--- a/plugins/toolbar/lang/it.js
+++ b/plugins/toolbar/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'it', {
diff --git a/plugins/toolbar/lang/ja.js b/plugins/toolbar/lang/ja.js
index 5dd9a195..1d24da5c 100644
--- a/plugins/toolbar/lang/ja.js
+++ b/plugins/toolbar/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'ja', {
diff --git a/plugins/toolbar/lang/ka.js b/plugins/toolbar/lang/ka.js
index 1e368ec5..5ccae72a 100644
--- a/plugins/toolbar/lang/ka.js
+++ b/plugins/toolbar/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'ka', {
diff --git a/plugins/toolbar/lang/km.js b/plugins/toolbar/lang/km.js
index 59f64145..9114e6b0 100644
--- a/plugins/toolbar/lang/km.js
+++ b/plugins/toolbar/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'km', {
diff --git a/plugins/toolbar/lang/ko.js b/plugins/toolbar/lang/ko.js
index 1dc86fdb..fdc93638 100644
--- a/plugins/toolbar/lang/ko.js
+++ b/plugins/toolbar/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'ko', {
diff --git a/plugins/toolbar/lang/ku.js b/plugins/toolbar/lang/ku.js
index d0d42fb0..a8875abf 100644
--- a/plugins/toolbar/lang/ku.js
+++ b/plugins/toolbar/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'ku', {
diff --git a/plugins/toolbar/lang/lt.js b/plugins/toolbar/lang/lt.js
index f8edbd57..dc5a5883 100644
--- a/plugins/toolbar/lang/lt.js
+++ b/plugins/toolbar/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'lt', {
diff --git a/plugins/toolbar/lang/lv.js b/plugins/toolbar/lang/lv.js
index 45da2292..0380131c 100644
--- a/plugins/toolbar/lang/lv.js
+++ b/plugins/toolbar/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'lv', {
diff --git a/plugins/toolbar/lang/mk.js b/plugins/toolbar/lang/mk.js
index d83aa5af..ca18861e 100644
--- a/plugins/toolbar/lang/mk.js
+++ b/plugins/toolbar/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'mk', {
diff --git a/plugins/toolbar/lang/mn.js b/plugins/toolbar/lang/mn.js
index 3a3042b9..1cf72fb2 100644
--- a/plugins/toolbar/lang/mn.js
+++ b/plugins/toolbar/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'mn', {
diff --git a/plugins/toolbar/lang/ms.js b/plugins/toolbar/lang/ms.js
index e91c187f..6cacaa29 100644
--- a/plugins/toolbar/lang/ms.js
+++ b/plugins/toolbar/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'ms', {
diff --git a/plugins/toolbar/lang/nb.js b/plugins/toolbar/lang/nb.js
index 878c9814..9ccf03be 100644
--- a/plugins/toolbar/lang/nb.js
+++ b/plugins/toolbar/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'nb', {
diff --git a/plugins/toolbar/lang/nl.js b/plugins/toolbar/lang/nl.js
index 68ece164..c8300e21 100644
--- a/plugins/toolbar/lang/nl.js
+++ b/plugins/toolbar/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'nl', {
diff --git a/plugins/toolbar/lang/no.js b/plugins/toolbar/lang/no.js
index bd7b4d33..59fbfc20 100644
--- a/plugins/toolbar/lang/no.js
+++ b/plugins/toolbar/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'no', {
diff --git a/plugins/toolbar/lang/oc.js b/plugins/toolbar/lang/oc.js
index e9f2d45f..4523b31a 100644
--- a/plugins/toolbar/lang/oc.js
+++ b/plugins/toolbar/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'oc', {
diff --git a/plugins/toolbar/lang/pl.js b/plugins/toolbar/lang/pl.js
index 8ad695b9..26cc4d25 100644
--- a/plugins/toolbar/lang/pl.js
+++ b/plugins/toolbar/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'pl', {
diff --git a/plugins/toolbar/lang/pt-br.js b/plugins/toolbar/lang/pt-br.js
index 0c02937b..a8decfdd 100644
--- a/plugins/toolbar/lang/pt-br.js
+++ b/plugins/toolbar/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'pt-br', {
diff --git a/plugins/toolbar/lang/pt.js b/plugins/toolbar/lang/pt.js
index a6ea4d79..2d2e5e70 100644
--- a/plugins/toolbar/lang/pt.js
+++ b/plugins/toolbar/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'pt', {
diff --git a/plugins/toolbar/lang/ro.js b/plugins/toolbar/lang/ro.js
index 9a0dd6ce..67a98913 100644
--- a/plugins/toolbar/lang/ro.js
+++ b/plugins/toolbar/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'ro', {
diff --git a/plugins/toolbar/lang/ru.js b/plugins/toolbar/lang/ru.js
index a3ee17f3..7a27dd57 100644
--- a/plugins/toolbar/lang/ru.js
+++ b/plugins/toolbar/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'ru', {
diff --git a/plugins/toolbar/lang/si.js b/plugins/toolbar/lang/si.js
index ff35a096..e44755b3 100644
--- a/plugins/toolbar/lang/si.js
+++ b/plugins/toolbar/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'si', {
diff --git a/plugins/toolbar/lang/sk.js b/plugins/toolbar/lang/sk.js
index 4c2bd32f..8fa7e766 100644
--- a/plugins/toolbar/lang/sk.js
+++ b/plugins/toolbar/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'sk', {
diff --git a/plugins/toolbar/lang/sl.js b/plugins/toolbar/lang/sl.js
index dbae0b4d..7ef22264 100644
--- a/plugins/toolbar/lang/sl.js
+++ b/plugins/toolbar/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'sl', {
diff --git a/plugins/toolbar/lang/sq.js b/plugins/toolbar/lang/sq.js
index 4d49d480..e0a9a401 100644
--- a/plugins/toolbar/lang/sq.js
+++ b/plugins/toolbar/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'sq', {
diff --git a/plugins/toolbar/lang/sr-latn.js b/plugins/toolbar/lang/sr-latn.js
index a19d3c27..c339589e 100644
--- a/plugins/toolbar/lang/sr-latn.js
+++ b/plugins/toolbar/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'sr-latn', {
diff --git a/plugins/toolbar/lang/sr.js b/plugins/toolbar/lang/sr.js
index 4919336d..02e305da 100644
--- a/plugins/toolbar/lang/sr.js
+++ b/plugins/toolbar/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'sr', {
diff --git a/plugins/toolbar/lang/sv.js b/plugins/toolbar/lang/sv.js
index 4e122a51..659f1c07 100644
--- a/plugins/toolbar/lang/sv.js
+++ b/plugins/toolbar/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'sv', {
diff --git a/plugins/toolbar/lang/th.js b/plugins/toolbar/lang/th.js
index 24d9a94e..574e8e29 100644
--- a/plugins/toolbar/lang/th.js
+++ b/plugins/toolbar/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'th', {
diff --git a/plugins/toolbar/lang/tr.js b/plugins/toolbar/lang/tr.js
index 63ebf020..6297260b 100644
--- a/plugins/toolbar/lang/tr.js
+++ b/plugins/toolbar/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'tr', {
diff --git a/plugins/toolbar/lang/tt.js b/plugins/toolbar/lang/tt.js
index a5eee190..1270bf1c 100644
--- a/plugins/toolbar/lang/tt.js
+++ b/plugins/toolbar/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'tt', {
diff --git a/plugins/toolbar/lang/ug.js b/plugins/toolbar/lang/ug.js
index a2f570f5..3a8865bb 100644
--- a/plugins/toolbar/lang/ug.js
+++ b/plugins/toolbar/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'ug', {
diff --git a/plugins/toolbar/lang/uk.js b/plugins/toolbar/lang/uk.js
index 7a37a5f3..3e67b339 100644
--- a/plugins/toolbar/lang/uk.js
+++ b/plugins/toolbar/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'uk', {
diff --git a/plugins/toolbar/lang/vi.js b/plugins/toolbar/lang/vi.js
index aeee713e..a0aa2d71 100644
--- a/plugins/toolbar/lang/vi.js
+++ b/plugins/toolbar/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'vi', {
diff --git a/plugins/toolbar/lang/zh-cn.js b/plugins/toolbar/lang/zh-cn.js
index 2b8ac951..d890b55b 100644
--- a/plugins/toolbar/lang/zh-cn.js
+++ b/plugins/toolbar/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'zh-cn', {
diff --git a/plugins/toolbar/lang/zh.js b/plugins/toolbar/lang/zh.js
index 0fa1c6fb..713c3696 100644
--- a/plugins/toolbar/lang/zh.js
+++ b/plugins/toolbar/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'toolbar', 'zh', {
diff --git a/plugins/toolbar/plugin.js b/plugins/toolbar/plugin.js
index 00dabc70..833dd84d 100644
--- a/plugins/toolbar/plugin.js
+++ b/plugins/toolbar/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -415,9 +415,16 @@
 	} );
 
 	function getToolbarConfig( editor ) {
-		var removeButtons = editor.config.removeButtons;
+		var removeButtons = getRemoveButtons( editor.config.removeButtons );
 
-		removeButtons = removeButtons && removeButtons.split( ',' );
+		// (#5122)
+		function getRemoveButtons( config ) {
+			if ( config && typeof config === 'string' ) {
+				return config.split( ',' );
+			}
+
+			return config;
+		}
 
 		function buildToolbarConfig() {
 
@@ -771,7 +778,15 @@ CKEDITOR.config.toolbarLocation = 'top';
  * List of toolbar button names that must not be rendered. This will also work
  * for non-button toolbar items, like the Font drop-down list.
  *
- *		config.removeButtons = 'Underline,JustifyCenter';
+ * ```javascript
+ * config.removeButtons = 'Underline,JustifyCenter';
+ * ```
+ *
+ * Since version 4.20.0 you can also pass an array of button names:
+ *
+ * ```javascript
+ * config.removeButtons = [ 'Underline', 'JustifyCenter' ];
+ * ```
  *
  * This configuration option should not be overused. The recommended way is to use the
  * {@link CKEDITOR.config#removePlugins} setting to remove features from the editor
@@ -780,7 +795,7 @@ CKEDITOR.config.toolbarLocation = 'top';
  * In some cases though, a single plugin may define a set of toolbar buttons and
  * `removeButtons` may be useful when just a few of them are to be removed.
  *
- * @cfg {String} [removeButtons]
+ * @cfg {String/String[]} [removeButtons]
  * @member CKEDITOR.config
  */
 
diff --git a/plugins/toolbar/samples/toolbar.html b/plugins/toolbar/samples/toolbar.html
index 3f3ef04e..2f243e26 100644
--- a/plugins/toolbar/samples/toolbar.html
+++ b/plugins/toolbar/samples/toolbar.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -228,7 +228,7 @@ CKEDITOR.replace( <em>'textarea_id'</em>, {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/undo/dev/snapshot.html b/plugins/undo/dev/snapshot.html
index 8f3d1e5f..7d9e9da1 100644
--- a/plugins/undo/dev/snapshot.html
+++ b/plugins/undo/dev/snapshot.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
@@ -37,7 +37,7 @@ CKEDITOR.replace( '<em>textarea_id</em>' )
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 	<div id="debugConsole">
diff --git a/plugins/undo/lang/af.js b/plugins/undo/lang/af.js
index f68a05d7..14aa8bdd 100644
--- a/plugins/undo/lang/af.js
+++ b/plugins/undo/lang/af.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'af', {
diff --git a/plugins/undo/lang/ar.js b/plugins/undo/lang/ar.js
index a4ad7e44..271dbd0c 100644
--- a/plugins/undo/lang/ar.js
+++ b/plugins/undo/lang/ar.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'ar', {
diff --git a/plugins/undo/lang/az.js b/plugins/undo/lang/az.js
index 2b1503dc..4bcf9fd0 100644
--- a/plugins/undo/lang/az.js
+++ b/plugins/undo/lang/az.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'az', {
diff --git a/plugins/undo/lang/bg.js b/plugins/undo/lang/bg.js
index 6410acd9..05e95fea 100644
--- a/plugins/undo/lang/bg.js
+++ b/plugins/undo/lang/bg.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'bg', {
diff --git a/plugins/undo/lang/bn.js b/plugins/undo/lang/bn.js
index 00ed540c..c063ae8c 100644
--- a/plugins/undo/lang/bn.js
+++ b/plugins/undo/lang/bn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'bn', {
diff --git a/plugins/undo/lang/bs.js b/plugins/undo/lang/bs.js
index 8e21b53f..6fc958f6 100644
--- a/plugins/undo/lang/bs.js
+++ b/plugins/undo/lang/bs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'bs', {
diff --git a/plugins/undo/lang/ca.js b/plugins/undo/lang/ca.js
index 78c38908..496fbcbd 100644
--- a/plugins/undo/lang/ca.js
+++ b/plugins/undo/lang/ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'ca', {
diff --git a/plugins/undo/lang/cs.js b/plugins/undo/lang/cs.js
index 04ead30a..556eb202 100644
--- a/plugins/undo/lang/cs.js
+++ b/plugins/undo/lang/cs.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'cs', {
diff --git a/plugins/undo/lang/cy.js b/plugins/undo/lang/cy.js
index 22def383..9f292ad8 100644
--- a/plugins/undo/lang/cy.js
+++ b/plugins/undo/lang/cy.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'cy', {
diff --git a/plugins/undo/lang/da.js b/plugins/undo/lang/da.js
index a186bd32..594692a5 100644
--- a/plugins/undo/lang/da.js
+++ b/plugins/undo/lang/da.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'da', {
diff --git a/plugins/undo/lang/de-ch.js b/plugins/undo/lang/de-ch.js
index a883e216..ba872fb0 100644
--- a/plugins/undo/lang/de-ch.js
+++ b/plugins/undo/lang/de-ch.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'de-ch', {
diff --git a/plugins/undo/lang/de.js b/plugins/undo/lang/de.js
index a2455c21..a40dc7f7 100644
--- a/plugins/undo/lang/de.js
+++ b/plugins/undo/lang/de.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'de', {
diff --git a/plugins/undo/lang/el.js b/plugins/undo/lang/el.js
index 567e4558..ddaf9609 100644
--- a/plugins/undo/lang/el.js
+++ b/plugins/undo/lang/el.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'el', {
diff --git a/plugins/undo/lang/en-au.js b/plugins/undo/lang/en-au.js
index 6a819ce7..73e8f97d 100644
--- a/plugins/undo/lang/en-au.js
+++ b/plugins/undo/lang/en-au.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'en-au', {
diff --git a/plugins/undo/lang/en-ca.js b/plugins/undo/lang/en-ca.js
index ffd751b3..d0a3971a 100644
--- a/plugins/undo/lang/en-ca.js
+++ b/plugins/undo/lang/en-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'en-ca', {
diff --git a/plugins/undo/lang/en-gb.js b/plugins/undo/lang/en-gb.js
index 17a47fc1..be174133 100644
--- a/plugins/undo/lang/en-gb.js
+++ b/plugins/undo/lang/en-gb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'en-gb', {
diff --git a/plugins/undo/lang/en.js b/plugins/undo/lang/en.js
index 95619dda..8a00b1ba 100644
--- a/plugins/undo/lang/en.js
+++ b/plugins/undo/lang/en.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'en', {
diff --git a/plugins/undo/lang/eo.js b/plugins/undo/lang/eo.js
index 767c3612..96816dc0 100644
--- a/plugins/undo/lang/eo.js
+++ b/plugins/undo/lang/eo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'eo', {
diff --git a/plugins/undo/lang/es-mx.js b/plugins/undo/lang/es-mx.js
index 98a4e41e..48a82d05 100644
--- a/plugins/undo/lang/es-mx.js
+++ b/plugins/undo/lang/es-mx.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'es-mx', {
diff --git a/plugins/undo/lang/es.js b/plugins/undo/lang/es.js
index 3cc3dc3c..75822c86 100644
--- a/plugins/undo/lang/es.js
+++ b/plugins/undo/lang/es.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'es', {
diff --git a/plugins/undo/lang/et.js b/plugins/undo/lang/et.js
index f1723061..06b2c314 100644
--- a/plugins/undo/lang/et.js
+++ b/plugins/undo/lang/et.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'et', {
diff --git a/plugins/undo/lang/eu.js b/plugins/undo/lang/eu.js
index f5c6305b..cea64df8 100644
--- a/plugins/undo/lang/eu.js
+++ b/plugins/undo/lang/eu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'eu', {
diff --git a/plugins/undo/lang/fa.js b/plugins/undo/lang/fa.js
index 494c2961..0b601b18 100644
--- a/plugins/undo/lang/fa.js
+++ b/plugins/undo/lang/fa.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'fa', {
diff --git a/plugins/undo/lang/fi.js b/plugins/undo/lang/fi.js
index 09a84a17..140b2b1b 100644
--- a/plugins/undo/lang/fi.js
+++ b/plugins/undo/lang/fi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'fi', {
diff --git a/plugins/undo/lang/fo.js b/plugins/undo/lang/fo.js
index 121916af..97c99b43 100644
--- a/plugins/undo/lang/fo.js
+++ b/plugins/undo/lang/fo.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'fo', {
diff --git a/plugins/undo/lang/fr-ca.js b/plugins/undo/lang/fr-ca.js
index ec73b926..d4308ebf 100644
--- a/plugins/undo/lang/fr-ca.js
+++ b/plugins/undo/lang/fr-ca.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'fr-ca', {
diff --git a/plugins/undo/lang/fr.js b/plugins/undo/lang/fr.js
index c345959a..2f01a4d0 100644
--- a/plugins/undo/lang/fr.js
+++ b/plugins/undo/lang/fr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'fr', {
diff --git a/plugins/undo/lang/gl.js b/plugins/undo/lang/gl.js
index dafb2a00..01f64ee5 100644
--- a/plugins/undo/lang/gl.js
+++ b/plugins/undo/lang/gl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'gl', {
diff --git a/plugins/undo/lang/gu.js b/plugins/undo/lang/gu.js
index be4dedae..fe5c4e76 100644
--- a/plugins/undo/lang/gu.js
+++ b/plugins/undo/lang/gu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'gu', {
diff --git a/plugins/undo/lang/he.js b/plugins/undo/lang/he.js
index 5809cf5f..5c0712a3 100644
--- a/plugins/undo/lang/he.js
+++ b/plugins/undo/lang/he.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'he', {
diff --git a/plugins/undo/lang/hi.js b/plugins/undo/lang/hi.js
index ff881008..5ffbfa9c 100644
--- a/plugins/undo/lang/hi.js
+++ b/plugins/undo/lang/hi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'hi', {
diff --git a/plugins/undo/lang/hr.js b/plugins/undo/lang/hr.js
index d6eaf2bb..3f21d144 100644
--- a/plugins/undo/lang/hr.js
+++ b/plugins/undo/lang/hr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'hr', {
diff --git a/plugins/undo/lang/hu.js b/plugins/undo/lang/hu.js
index 47f88572..907e9282 100644
--- a/plugins/undo/lang/hu.js
+++ b/plugins/undo/lang/hu.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'hu', {
diff --git a/plugins/undo/lang/id.js b/plugins/undo/lang/id.js
index 88f19ead..1497df1d 100644
--- a/plugins/undo/lang/id.js
+++ b/plugins/undo/lang/id.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'id', {
diff --git a/plugins/undo/lang/is.js b/plugins/undo/lang/is.js
index aeee288f..97331a55 100644
--- a/plugins/undo/lang/is.js
+++ b/plugins/undo/lang/is.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'is', {
diff --git a/plugins/undo/lang/it.js b/plugins/undo/lang/it.js
index 3ea4aa99..e418c70a 100644
--- a/plugins/undo/lang/it.js
+++ b/plugins/undo/lang/it.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'it', {
diff --git a/plugins/undo/lang/ja.js b/plugins/undo/lang/ja.js
index 18e8d9fa..6ea4afab 100644
--- a/plugins/undo/lang/ja.js
+++ b/plugins/undo/lang/ja.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'ja', {
diff --git a/plugins/undo/lang/ka.js b/plugins/undo/lang/ka.js
index d3077ea9..ec9f3394 100644
--- a/plugins/undo/lang/ka.js
+++ b/plugins/undo/lang/ka.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'ka', {
diff --git a/plugins/undo/lang/km.js b/plugins/undo/lang/km.js
index e3b01ad0..985d3386 100644
--- a/plugins/undo/lang/km.js
+++ b/plugins/undo/lang/km.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'km', {
diff --git a/plugins/undo/lang/ko.js b/plugins/undo/lang/ko.js
index ac508a58..7f37b347 100644
--- a/plugins/undo/lang/ko.js
+++ b/plugins/undo/lang/ko.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'ko', {
diff --git a/plugins/undo/lang/ku.js b/plugins/undo/lang/ku.js
index e5b07967..40124f15 100644
--- a/plugins/undo/lang/ku.js
+++ b/plugins/undo/lang/ku.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'ku', {
diff --git a/plugins/undo/lang/lt.js b/plugins/undo/lang/lt.js
index 5a15bdd5..191b1a50 100644
--- a/plugins/undo/lang/lt.js
+++ b/plugins/undo/lang/lt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'lt', {
diff --git a/plugins/undo/lang/lv.js b/plugins/undo/lang/lv.js
index 1006c524..673ab379 100644
--- a/plugins/undo/lang/lv.js
+++ b/plugins/undo/lang/lv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'lv', {
diff --git a/plugins/undo/lang/mk.js b/plugins/undo/lang/mk.js
index 094e7362..011f6503 100644
--- a/plugins/undo/lang/mk.js
+++ b/plugins/undo/lang/mk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'mk', {
diff --git a/plugins/undo/lang/mn.js b/plugins/undo/lang/mn.js
index ffcf13a3..e7f1f1e6 100644
--- a/plugins/undo/lang/mn.js
+++ b/plugins/undo/lang/mn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'mn', {
diff --git a/plugins/undo/lang/ms.js b/plugins/undo/lang/ms.js
index a7f4e3f4..8a952b4a 100644
--- a/plugins/undo/lang/ms.js
+++ b/plugins/undo/lang/ms.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'ms', {
diff --git a/plugins/undo/lang/nb.js b/plugins/undo/lang/nb.js
index 828bd9c3..cd180e3a 100644
--- a/plugins/undo/lang/nb.js
+++ b/plugins/undo/lang/nb.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'nb', {
diff --git a/plugins/undo/lang/nl.js b/plugins/undo/lang/nl.js
index 905c73e9..016efb1c 100644
--- a/plugins/undo/lang/nl.js
+++ b/plugins/undo/lang/nl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'nl', {
diff --git a/plugins/undo/lang/no.js b/plugins/undo/lang/no.js
index 5153b5ed..8f9d72d9 100644
--- a/plugins/undo/lang/no.js
+++ b/plugins/undo/lang/no.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'no', {
diff --git a/plugins/undo/lang/oc.js b/plugins/undo/lang/oc.js
index b731f81f..905e979f 100644
--- a/plugins/undo/lang/oc.js
+++ b/plugins/undo/lang/oc.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'oc', {
diff --git a/plugins/undo/lang/pl.js b/plugins/undo/lang/pl.js
index 001fc978..9e1605db 100644
--- a/plugins/undo/lang/pl.js
+++ b/plugins/undo/lang/pl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'pl', {
diff --git a/plugins/undo/lang/pt-br.js b/plugins/undo/lang/pt-br.js
index e8ba93d6..c5df597f 100644
--- a/plugins/undo/lang/pt-br.js
+++ b/plugins/undo/lang/pt-br.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'pt-br', {
diff --git a/plugins/undo/lang/pt.js b/plugins/undo/lang/pt.js
index 8b026559..ed4ff45d 100644
--- a/plugins/undo/lang/pt.js
+++ b/plugins/undo/lang/pt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'pt', {
diff --git a/plugins/undo/lang/ro.js b/plugins/undo/lang/ro.js
index 36dc4bb7..7c19d547 100644
--- a/plugins/undo/lang/ro.js
+++ b/plugins/undo/lang/ro.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'ro', {
diff --git a/plugins/undo/lang/ru.js b/plugins/undo/lang/ru.js
index d3ba3b32..836d9286 100644
--- a/plugins/undo/lang/ru.js
+++ b/plugins/undo/lang/ru.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'ru', {
diff --git a/plugins/undo/lang/si.js b/plugins/undo/lang/si.js
index 89f2e75e..528e13e7 100644
--- a/plugins/undo/lang/si.js
+++ b/plugins/undo/lang/si.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'si', {
diff --git a/plugins/undo/lang/sk.js b/plugins/undo/lang/sk.js
index a8a56f2c..fbd0e0c6 100644
--- a/plugins/undo/lang/sk.js
+++ b/plugins/undo/lang/sk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'sk', {
diff --git a/plugins/undo/lang/sl.js b/plugins/undo/lang/sl.js
index 28f11677..4b8e5695 100644
--- a/plugins/undo/lang/sl.js
+++ b/plugins/undo/lang/sl.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'sl', {
diff --git a/plugins/undo/lang/sq.js b/plugins/undo/lang/sq.js
index dc347c17..f83d502b 100644
--- a/plugins/undo/lang/sq.js
+++ b/plugins/undo/lang/sq.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'sq', {
diff --git a/plugins/undo/lang/sr-latn.js b/plugins/undo/lang/sr-latn.js
index 6e3a143d..b23b9702 100644
--- a/plugins/undo/lang/sr-latn.js
+++ b/plugins/undo/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'sr-latn', {
diff --git a/plugins/undo/lang/sr.js b/plugins/undo/lang/sr.js
index a0f5e2a7..e7cdc85d 100644
--- a/plugins/undo/lang/sr.js
+++ b/plugins/undo/lang/sr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'sr', {
diff --git a/plugins/undo/lang/sv.js b/plugins/undo/lang/sv.js
index 706335f9..4c475916 100644
--- a/plugins/undo/lang/sv.js
+++ b/plugins/undo/lang/sv.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'sv', {
diff --git a/plugins/undo/lang/th.js b/plugins/undo/lang/th.js
index 5e864996..c40702ab 100644
--- a/plugins/undo/lang/th.js
+++ b/plugins/undo/lang/th.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'th', {
diff --git a/plugins/undo/lang/tr.js b/plugins/undo/lang/tr.js
index 27206e6a..89bb4b0a 100644
--- a/plugins/undo/lang/tr.js
+++ b/plugins/undo/lang/tr.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'tr', {
diff --git a/plugins/undo/lang/tt.js b/plugins/undo/lang/tt.js
index 982a633f..e6ba7bc4 100644
--- a/plugins/undo/lang/tt.js
+++ b/plugins/undo/lang/tt.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'tt', {
diff --git a/plugins/undo/lang/ug.js b/plugins/undo/lang/ug.js
index 7fb398c2..62457227 100644
--- a/plugins/undo/lang/ug.js
+++ b/plugins/undo/lang/ug.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'ug', {
diff --git a/plugins/undo/lang/uk.js b/plugins/undo/lang/uk.js
index 80345c42..eab8855c 100644
--- a/plugins/undo/lang/uk.js
+++ b/plugins/undo/lang/uk.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'uk', {
diff --git a/plugins/undo/lang/vi.js b/plugins/undo/lang/vi.js
index 375675f5..d23c6547 100644
--- a/plugins/undo/lang/vi.js
+++ b/plugins/undo/lang/vi.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'vi', {
diff --git a/plugins/undo/lang/zh-cn.js b/plugins/undo/lang/zh-cn.js
index cdffea19..edb14161 100644
--- a/plugins/undo/lang/zh-cn.js
+++ b/plugins/undo/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'zh-cn', {
diff --git a/plugins/undo/lang/zh.js b/plugins/undo/lang/zh.js
index 85475d60..d9ed0de6 100644
--- a/plugins/undo/lang/zh.js
+++ b/plugins/undo/lang/zh.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 CKEDITOR.plugins.setLang( 'undo', 'zh', {
diff --git a/plugins/undo/plugin.js b/plugins/undo/plugin.js
index 629c409b..778f1139 100644
--- a/plugins/undo/plugin.js
+++ b/plugins/undo/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadfile/plugin.js b/plugins/uploadfile/plugin.js
index 7a81e82e..afff7621 100644
--- a/plugins/uploadfile/plugin.js
+++ b/plugins/uploadfile/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadimage/plugin.js b/plugins/uploadimage/plugin.js
index f56274d3..33034525 100644
--- a/plugins/uploadimage/plugin.js
+++ b/plugins/uploadimage/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -57,6 +57,13 @@
 				return;
 			}
 
+			// (#5333)
+			if ( editor.config.clipboard_handleImages ) {
+				editor.config.clipboard_handleImages = false;
+
+				CKEDITOR.warn( 'clipboard-image-handling-disabled', { editor: editor.name, plugin: 'uploadimage' } );
+			}
+
 			// Handle images which are available in the dataTransfer.
 			fileTools.addUploadWidget( editor, 'uploadimage', {
 				supportedTypes: /image\/(jpeg|png|gif|bmp)/,
diff --git a/plugins/uploadwidget/dev/cors.html b/plugins/uploadwidget/dev/cors.html
index 35adbd2e..6ee842b9 100644
--- a/plugins/uploadwidget/dev/cors.html
+++ b/plugins/uploadwidget/dev/cors.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
diff --git a/plugins/uploadwidget/dev/filereaderplugin.js b/plugins/uploadwidget/dev/filereaderplugin.js
index c488e422..1f73bd61 100644
--- a/plugins/uploadwidget/dev/filereaderplugin.js
+++ b/plugins/uploadwidget/dev/filereaderplugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 'use strict';
diff --git a/plugins/uploadwidget/dev/upload.html b/plugins/uploadwidget/dev/upload.html
index 16d75186..256554a2 100644
--- a/plugins/uploadwidget/dev/upload.html
+++ b/plugins/uploadwidget/dev/upload.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
diff --git a/plugins/uploadwidget/lang/az.js b/plugins/uploadwidget/lang/az.js
index c3c56875..31d24638 100644
--- a/plugins/uploadwidget/lang/az.js
+++ b/plugins/uploadwidget/lang/az.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/bg.js b/plugins/uploadwidget/lang/bg.js
index ff3153f7..11ed8b1f 100644
--- a/plugins/uploadwidget/lang/bg.js
+++ b/plugins/uploadwidget/lang/bg.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/ca.js b/plugins/uploadwidget/lang/ca.js
index f47e5643..9b01b45b 100644
--- a/plugins/uploadwidget/lang/ca.js
+++ b/plugins/uploadwidget/lang/ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/cs.js b/plugins/uploadwidget/lang/cs.js
index 72d6cd61..18973d67 100644
--- a/plugins/uploadwidget/lang/cs.js
+++ b/plugins/uploadwidget/lang/cs.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/da.js b/plugins/uploadwidget/lang/da.js
index 5c611917..c3bd9370 100644
--- a/plugins/uploadwidget/lang/da.js
+++ b/plugins/uploadwidget/lang/da.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/de-ch.js b/plugins/uploadwidget/lang/de-ch.js
index b361e3ba..1221a0a0 100644
--- a/plugins/uploadwidget/lang/de-ch.js
+++ b/plugins/uploadwidget/lang/de-ch.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/de.js b/plugins/uploadwidget/lang/de.js
index 7c9187e1..75d21099 100644
--- a/plugins/uploadwidget/lang/de.js
+++ b/plugins/uploadwidget/lang/de.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/el.js b/plugins/uploadwidget/lang/el.js
index 986ec5d4..e8f252fd 100644
--- a/plugins/uploadwidget/lang/el.js
+++ b/plugins/uploadwidget/lang/el.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/en-au.js b/plugins/uploadwidget/lang/en-au.js
index 6520080b..c0218bf6 100644
--- a/plugins/uploadwidget/lang/en-au.js
+++ b/plugins/uploadwidget/lang/en-au.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/en.js b/plugins/uploadwidget/lang/en.js
index 33fbd6bd..9e3d5272 100644
--- a/plugins/uploadwidget/lang/en.js
+++ b/plugins/uploadwidget/lang/en.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/eo.js b/plugins/uploadwidget/lang/eo.js
index 3fa63be3..41c82139 100644
--- a/plugins/uploadwidget/lang/eo.js
+++ b/plugins/uploadwidget/lang/eo.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/es-mx.js b/plugins/uploadwidget/lang/es-mx.js
index f2a2a2cf..3245ac73 100644
--- a/plugins/uploadwidget/lang/es-mx.js
+++ b/plugins/uploadwidget/lang/es-mx.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/es.js b/plugins/uploadwidget/lang/es.js
index e1a98eeb..081c1d3c 100644
--- a/plugins/uploadwidget/lang/es.js
+++ b/plugins/uploadwidget/lang/es.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/et.js b/plugins/uploadwidget/lang/et.js
index 03d842b2..bd0e3d89 100644
--- a/plugins/uploadwidget/lang/et.js
+++ b/plugins/uploadwidget/lang/et.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/eu.js b/plugins/uploadwidget/lang/eu.js
index 6b233e16..cb17a9b4 100644
--- a/plugins/uploadwidget/lang/eu.js
+++ b/plugins/uploadwidget/lang/eu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/fa.js b/plugins/uploadwidget/lang/fa.js
index 83b77360..fe7ba612 100644
--- a/plugins/uploadwidget/lang/fa.js
+++ b/plugins/uploadwidget/lang/fa.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/fr.js b/plugins/uploadwidget/lang/fr.js
index e569bcd0..304a7266 100644
--- a/plugins/uploadwidget/lang/fr.js
+++ b/plugins/uploadwidget/lang/fr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/gl.js b/plugins/uploadwidget/lang/gl.js
index f0266caa..1cbaf88d 100644
--- a/plugins/uploadwidget/lang/gl.js
+++ b/plugins/uploadwidget/lang/gl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/hr.js b/plugins/uploadwidget/lang/hr.js
index 4874dfc9..689eba36 100644
--- a/plugins/uploadwidget/lang/hr.js
+++ b/plugins/uploadwidget/lang/hr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/hu.js b/plugins/uploadwidget/lang/hu.js
index ca02987c..2ae674a2 100644
--- a/plugins/uploadwidget/lang/hu.js
+++ b/plugins/uploadwidget/lang/hu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/id.js b/plugins/uploadwidget/lang/id.js
index f339e314..222c1204 100644
--- a/plugins/uploadwidget/lang/id.js
+++ b/plugins/uploadwidget/lang/id.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/it.js b/plugins/uploadwidget/lang/it.js
index 597898e5..42ca0e15 100644
--- a/plugins/uploadwidget/lang/it.js
+++ b/plugins/uploadwidget/lang/it.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/ja.js b/plugins/uploadwidget/lang/ja.js
index 834eb37c..38beb765 100644
--- a/plugins/uploadwidget/lang/ja.js
+++ b/plugins/uploadwidget/lang/ja.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/km.js b/plugins/uploadwidget/lang/km.js
index d813b69d..3879123f 100644
--- a/plugins/uploadwidget/lang/km.js
+++ b/plugins/uploadwidget/lang/km.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/ko.js b/plugins/uploadwidget/lang/ko.js
index abe86340..502fec0c 100644
--- a/plugins/uploadwidget/lang/ko.js
+++ b/plugins/uploadwidget/lang/ko.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/ku.js b/plugins/uploadwidget/lang/ku.js
index 1db83162..396388fb 100644
--- a/plugins/uploadwidget/lang/ku.js
+++ b/plugins/uploadwidget/lang/ku.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/lv.js b/plugins/uploadwidget/lang/lv.js
index 6fb14aa1..1c3ba8d5 100644
--- a/plugins/uploadwidget/lang/lv.js
+++ b/plugins/uploadwidget/lang/lv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/nb.js b/plugins/uploadwidget/lang/nb.js
index 9834cea3..c3bca9fe 100644
--- a/plugins/uploadwidget/lang/nb.js
+++ b/plugins/uploadwidget/lang/nb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/nl.js b/plugins/uploadwidget/lang/nl.js
index f32c3439..255d0310 100644
--- a/plugins/uploadwidget/lang/nl.js
+++ b/plugins/uploadwidget/lang/nl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/no.js b/plugins/uploadwidget/lang/no.js
index b4aabbb8..e5ad1aea 100644
--- a/plugins/uploadwidget/lang/no.js
+++ b/plugins/uploadwidget/lang/no.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/oc.js b/plugins/uploadwidget/lang/oc.js
index 2ba6d207..78b913aa 100644
--- a/plugins/uploadwidget/lang/oc.js
+++ b/plugins/uploadwidget/lang/oc.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/pl.js b/plugins/uploadwidget/lang/pl.js
index 4aac6796..15cc0178 100644
--- a/plugins/uploadwidget/lang/pl.js
+++ b/plugins/uploadwidget/lang/pl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/pt-br.js b/plugins/uploadwidget/lang/pt-br.js
index 78b186ec..48e9cad7 100644
--- a/plugins/uploadwidget/lang/pt-br.js
+++ b/plugins/uploadwidget/lang/pt-br.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/pt.js b/plugins/uploadwidget/lang/pt.js
index aa04f035..7a2995a0 100644
--- a/plugins/uploadwidget/lang/pt.js
+++ b/plugins/uploadwidget/lang/pt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/ro.js b/plugins/uploadwidget/lang/ro.js
index b268f7d0..14a5d982 100644
--- a/plugins/uploadwidget/lang/ro.js
+++ b/plugins/uploadwidget/lang/ro.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/ru.js b/plugins/uploadwidget/lang/ru.js
index 4d5973ce..d7da120d 100644
--- a/plugins/uploadwidget/lang/ru.js
+++ b/plugins/uploadwidget/lang/ru.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/sk.js b/plugins/uploadwidget/lang/sk.js
index 6add4552..36a91379 100644
--- a/plugins/uploadwidget/lang/sk.js
+++ b/plugins/uploadwidget/lang/sk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/sq.js b/plugins/uploadwidget/lang/sq.js
index 6a032c46..ed7f140b 100644
--- a/plugins/uploadwidget/lang/sq.js
+++ b/plugins/uploadwidget/lang/sq.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/sr-latn.js b/plugins/uploadwidget/lang/sr-latn.js
index dfda7d2e..b7937668 100644
--- a/plugins/uploadwidget/lang/sr-latn.js
+++ b/plugins/uploadwidget/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/sr.js b/plugins/uploadwidget/lang/sr.js
index 95f1c312..196b8e9d 100644
--- a/plugins/uploadwidget/lang/sr.js
+++ b/plugins/uploadwidget/lang/sr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/sv.js b/plugins/uploadwidget/lang/sv.js
index 20affec8..1662d4c1 100644
--- a/plugins/uploadwidget/lang/sv.js
+++ b/plugins/uploadwidget/lang/sv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/tr.js b/plugins/uploadwidget/lang/tr.js
index bb5182d6..feeab1fc 100644
--- a/plugins/uploadwidget/lang/tr.js
+++ b/plugins/uploadwidget/lang/tr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/ug.js b/plugins/uploadwidget/lang/ug.js
index c3fef6ec..a81aadc8 100644
--- a/plugins/uploadwidget/lang/ug.js
+++ b/plugins/uploadwidget/lang/ug.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/uk.js b/plugins/uploadwidget/lang/uk.js
index ac040928..a1dded5b 100644
--- a/plugins/uploadwidget/lang/uk.js
+++ b/plugins/uploadwidget/lang/uk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/zh-cn.js b/plugins/uploadwidget/lang/zh-cn.js
index 9a54233c..8a3ba748 100644
--- a/plugins/uploadwidget/lang/zh-cn.js
+++ b/plugins/uploadwidget/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/lang/zh.js b/plugins/uploadwidget/lang/zh.js
index 8531bf66..c424a86f 100644
--- a/plugins/uploadwidget/lang/zh.js
+++ b/plugins/uploadwidget/lang/zh.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/uploadwidget/plugin.js b/plugins/uploadwidget/plugin.js
index 2209ff49..13790d80 100644
--- a/plugins/uploadwidget/plugin.js
+++ b/plugins/uploadwidget/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -359,6 +359,10 @@
 				} else {
 					editor.getSelection().selectBookmarks( bookmarks );
 				}
+
+				// Ensure that replacing the upload placeholder with the final
+				// uploaded element is considered a content change (#5414).
+				editor.fire( 'change' );
 			},
 
 			/**
diff --git a/plugins/widget/dev/console.js b/plugins/widget/dev/console.js
index 05ce8d95..0fa40c3a 100644
--- a/plugins/widget/dev/console.js
+++ b/plugins/widget/dev/console.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/widget/dev/nestedwidgets.html b/plugins/widget/dev/nestedwidgets.html
index f882e050..76887b3c 100644
--- a/plugins/widget/dev/nestedwidgets.html
+++ b/plugins/widget/dev/nestedwidgets.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
diff --git a/plugins/widget/dev/widgetstyles.html b/plugins/widget/dev/widgetstyles.html
index 61d62e48..46b61823 100644
--- a/plugins/widget/dev/widgetstyles.html
+++ b/plugins/widget/dev/widgetstyles.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html>
diff --git a/plugins/widget/lang/af.js b/plugins/widget/lang/af.js
index bbd04076..fdfee0b1 100644
--- a/plugins/widget/lang/af.js
+++ b/plugins/widget/lang/af.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'af', {
diff --git a/plugins/widget/lang/ar.js b/plugins/widget/lang/ar.js
index cda6baaa..74493cb5 100644
--- a/plugins/widget/lang/ar.js
+++ b/plugins/widget/lang/ar.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'ar', {
diff --git a/plugins/widget/lang/az.js b/plugins/widget/lang/az.js
index e189844a..73b9ac8e 100644
--- a/plugins/widget/lang/az.js
+++ b/plugins/widget/lang/az.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'az', {
diff --git a/plugins/widget/lang/bg.js b/plugins/widget/lang/bg.js
index 593d54cf..08387500 100644
--- a/plugins/widget/lang/bg.js
+++ b/plugins/widget/lang/bg.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'bg', {
diff --git a/plugins/widget/lang/ca.js b/plugins/widget/lang/ca.js
index 52d45563..4db73b2b 100644
--- a/plugins/widget/lang/ca.js
+++ b/plugins/widget/lang/ca.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'ca', {
diff --git a/plugins/widget/lang/cs.js b/plugins/widget/lang/cs.js
index 36ac4fde..faa3dc38 100644
--- a/plugins/widget/lang/cs.js
+++ b/plugins/widget/lang/cs.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'cs', {
diff --git a/plugins/widget/lang/cy.js b/plugins/widget/lang/cy.js
index 15147c71..59c6582c 100644
--- a/plugins/widget/lang/cy.js
+++ b/plugins/widget/lang/cy.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'cy', {
diff --git a/plugins/widget/lang/da.js b/plugins/widget/lang/da.js
index a1368d6c..2b2237e5 100644
--- a/plugins/widget/lang/da.js
+++ b/plugins/widget/lang/da.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'da', {
diff --git a/plugins/widget/lang/de-ch.js b/plugins/widget/lang/de-ch.js
index 16caccb1..e864c9d0 100644
--- a/plugins/widget/lang/de-ch.js
+++ b/plugins/widget/lang/de-ch.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'de-ch', {
diff --git a/plugins/widget/lang/de.js b/plugins/widget/lang/de.js
index 900999e1..968b63f1 100644
--- a/plugins/widget/lang/de.js
+++ b/plugins/widget/lang/de.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'de', {
diff --git a/plugins/widget/lang/el.js b/plugins/widget/lang/el.js
index 5c474441..e1c1dd6c 100644
--- a/plugins/widget/lang/el.js
+++ b/plugins/widget/lang/el.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'el', {
diff --git a/plugins/widget/lang/en-au.js b/plugins/widget/lang/en-au.js
index 7bde5266..da5498e6 100644
--- a/plugins/widget/lang/en-au.js
+++ b/plugins/widget/lang/en-au.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'en-au', {
diff --git a/plugins/widget/lang/en-gb.js b/plugins/widget/lang/en-gb.js
index ccf4508a..e3ebcd8a 100644
--- a/plugins/widget/lang/en-gb.js
+++ b/plugins/widget/lang/en-gb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'en-gb', {
diff --git a/plugins/widget/lang/en.js b/plugins/widget/lang/en.js
index 1dd03d92..244813fe 100644
--- a/plugins/widget/lang/en.js
+++ b/plugins/widget/lang/en.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'en', {
diff --git a/plugins/widget/lang/eo.js b/plugins/widget/lang/eo.js
index f2186b21..66483f15 100644
--- a/plugins/widget/lang/eo.js
+++ b/plugins/widget/lang/eo.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'eo', {
diff --git a/plugins/widget/lang/es-mx.js b/plugins/widget/lang/es-mx.js
index 1ca3dd9c..d33e4fb7 100644
--- a/plugins/widget/lang/es-mx.js
+++ b/plugins/widget/lang/es-mx.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'es-mx', {
diff --git a/plugins/widget/lang/es.js b/plugins/widget/lang/es.js
index 7bcadea3..276a0142 100644
--- a/plugins/widget/lang/es.js
+++ b/plugins/widget/lang/es.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'es', {
diff --git a/plugins/widget/lang/et.js b/plugins/widget/lang/et.js
index 5cdf9410..c2008d7f 100644
--- a/plugins/widget/lang/et.js
+++ b/plugins/widget/lang/et.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'et', {
diff --git a/plugins/widget/lang/eu.js b/plugins/widget/lang/eu.js
index 3e4608a6..2a41cad8 100644
--- a/plugins/widget/lang/eu.js
+++ b/plugins/widget/lang/eu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'eu', {
diff --git a/plugins/widget/lang/fa.js b/plugins/widget/lang/fa.js
index ddd44ed1..6b974736 100644
--- a/plugins/widget/lang/fa.js
+++ b/plugins/widget/lang/fa.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'fa', {
diff --git a/plugins/widget/lang/fi.js b/plugins/widget/lang/fi.js
index 87d8fd64..914d3401 100644
--- a/plugins/widget/lang/fi.js
+++ b/plugins/widget/lang/fi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'fi', {
diff --git a/plugins/widget/lang/fr.js b/plugins/widget/lang/fr.js
index f66772ee..9872d549 100644
--- a/plugins/widget/lang/fr.js
+++ b/plugins/widget/lang/fr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'fr', {
diff --git a/plugins/widget/lang/gl.js b/plugins/widget/lang/gl.js
index 3f6efc30..f8ea4bf5 100644
--- a/plugins/widget/lang/gl.js
+++ b/plugins/widget/lang/gl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'gl', {
diff --git a/plugins/widget/lang/he.js b/plugins/widget/lang/he.js
index 6452979a..b6314d4c 100644
--- a/plugins/widget/lang/he.js
+++ b/plugins/widget/lang/he.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'he', {
diff --git a/plugins/widget/lang/hr.js b/plugins/widget/lang/hr.js
index ad598d1e..f4b05b34 100644
--- a/plugins/widget/lang/hr.js
+++ b/plugins/widget/lang/hr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'hr', {
diff --git a/plugins/widget/lang/hu.js b/plugins/widget/lang/hu.js
index eb42af92..06ebc8be 100644
--- a/plugins/widget/lang/hu.js
+++ b/plugins/widget/lang/hu.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'hu', {
diff --git a/plugins/widget/lang/id.js b/plugins/widget/lang/id.js
index 203c152d..93ba2cda 100644
--- a/plugins/widget/lang/id.js
+++ b/plugins/widget/lang/id.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'id', {
diff --git a/plugins/widget/lang/it.js b/plugins/widget/lang/it.js
index ab702920..230e6c5f 100644
--- a/plugins/widget/lang/it.js
+++ b/plugins/widget/lang/it.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'it', {
diff --git a/plugins/widget/lang/ja.js b/plugins/widget/lang/ja.js
index 44ccd8b9..0b6c0a85 100644
--- a/plugins/widget/lang/ja.js
+++ b/plugins/widget/lang/ja.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'ja', {
diff --git a/plugins/widget/lang/km.js b/plugins/widget/lang/km.js
index 4ffdfb67..d38ab6a2 100644
--- a/plugins/widget/lang/km.js
+++ b/plugins/widget/lang/km.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'km', {
diff --git a/plugins/widget/lang/ko.js b/plugins/widget/lang/ko.js
index 18f9b006..9c80fa4e 100644
--- a/plugins/widget/lang/ko.js
+++ b/plugins/widget/lang/ko.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'ko', {
diff --git a/plugins/widget/lang/ku.js b/plugins/widget/lang/ku.js
index c15cfe60..df5eab06 100644
--- a/plugins/widget/lang/ku.js
+++ b/plugins/widget/lang/ku.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'ku', {
diff --git a/plugins/widget/lang/lt.js b/plugins/widget/lang/lt.js
index 4df7eb56..c2cd0933 100644
--- a/plugins/widget/lang/lt.js
+++ b/plugins/widget/lang/lt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'lt', {
diff --git a/plugins/widget/lang/lv.js b/plugins/widget/lang/lv.js
index ddce63de..03b969b9 100644
--- a/plugins/widget/lang/lv.js
+++ b/plugins/widget/lang/lv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'lv', {
diff --git a/plugins/widget/lang/nb.js b/plugins/widget/lang/nb.js
index 0b28e120..38dd43e2 100644
--- a/plugins/widget/lang/nb.js
+++ b/plugins/widget/lang/nb.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'nb', {
diff --git a/plugins/widget/lang/nl.js b/plugins/widget/lang/nl.js
index c3dd29fa..537d64df 100644
--- a/plugins/widget/lang/nl.js
+++ b/plugins/widget/lang/nl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'nl', {
diff --git a/plugins/widget/lang/no.js b/plugins/widget/lang/no.js
index 92e77ca2..fdbd0929 100644
--- a/plugins/widget/lang/no.js
+++ b/plugins/widget/lang/no.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'no', {
diff --git a/plugins/widget/lang/oc.js b/plugins/widget/lang/oc.js
index 9c8b11a8..abe65d73 100644
--- a/plugins/widget/lang/oc.js
+++ b/plugins/widget/lang/oc.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'oc', {
diff --git a/plugins/widget/lang/pl.js b/plugins/widget/lang/pl.js
index 68404a33..4ce45e6f 100644
--- a/plugins/widget/lang/pl.js
+++ b/plugins/widget/lang/pl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'pl', {
diff --git a/plugins/widget/lang/pt-br.js b/plugins/widget/lang/pt-br.js
index 228ac1f8..30f4d0cf 100644
--- a/plugins/widget/lang/pt-br.js
+++ b/plugins/widget/lang/pt-br.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'pt-br', {
diff --git a/plugins/widget/lang/pt.js b/plugins/widget/lang/pt.js
index 3a244ce4..565ae342 100644
--- a/plugins/widget/lang/pt.js
+++ b/plugins/widget/lang/pt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'pt', {
diff --git a/plugins/widget/lang/ro.js b/plugins/widget/lang/ro.js
index 53b659e5..a787e499 100644
--- a/plugins/widget/lang/ro.js
+++ b/plugins/widget/lang/ro.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'ro', {
diff --git a/plugins/widget/lang/ru.js b/plugins/widget/lang/ru.js
index d4048bdf..3899ae80 100644
--- a/plugins/widget/lang/ru.js
+++ b/plugins/widget/lang/ru.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'ru', {
diff --git a/plugins/widget/lang/sk.js b/plugins/widget/lang/sk.js
index ee419907..ce55fb52 100644
--- a/plugins/widget/lang/sk.js
+++ b/plugins/widget/lang/sk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'sk', {
diff --git a/plugins/widget/lang/sl.js b/plugins/widget/lang/sl.js
index 7dedb19b..741c4c84 100644
--- a/plugins/widget/lang/sl.js
+++ b/plugins/widget/lang/sl.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'sl', {
diff --git a/plugins/widget/lang/sq.js b/plugins/widget/lang/sq.js
index cd053dc6..7807d394 100644
--- a/plugins/widget/lang/sq.js
+++ b/plugins/widget/lang/sq.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'sq', {
diff --git a/plugins/widget/lang/sr-latn.js b/plugins/widget/lang/sr-latn.js
index ba75ee90..cc38e6f0 100644
--- a/plugins/widget/lang/sr-latn.js
+++ b/plugins/widget/lang/sr-latn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'sr-latn', {
diff --git a/plugins/widget/lang/sr.js b/plugins/widget/lang/sr.js
index 00a36478..c5c365fe 100644
--- a/plugins/widget/lang/sr.js
+++ b/plugins/widget/lang/sr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'sr', {
diff --git a/plugins/widget/lang/sv.js b/plugins/widget/lang/sv.js
index 72960cf8..22df40bf 100644
--- a/plugins/widget/lang/sv.js
+++ b/plugins/widget/lang/sv.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'sv', {
diff --git a/plugins/widget/lang/tr.js b/plugins/widget/lang/tr.js
index c3c5b66c..28273dae 100644
--- a/plugins/widget/lang/tr.js
+++ b/plugins/widget/lang/tr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'tr', {
diff --git a/plugins/widget/lang/tt.js b/plugins/widget/lang/tt.js
index fd9e6843..fb1877e2 100644
--- a/plugins/widget/lang/tt.js
+++ b/plugins/widget/lang/tt.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'tt', {
diff --git a/plugins/widget/lang/ug.js b/plugins/widget/lang/ug.js
index 1e30c9e4..a0a36fb8 100644
--- a/plugins/widget/lang/ug.js
+++ b/plugins/widget/lang/ug.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'ug', {
diff --git a/plugins/widget/lang/uk.js b/plugins/widget/lang/uk.js
index 80c44558..2bacae11 100644
--- a/plugins/widget/lang/uk.js
+++ b/plugins/widget/lang/uk.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'uk', {
diff --git a/plugins/widget/lang/vi.js b/plugins/widget/lang/vi.js
index 526f3c1e..d71c26de 100644
--- a/plugins/widget/lang/vi.js
+++ b/plugins/widget/lang/vi.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'vi', {
diff --git a/plugins/widget/lang/zh-cn.js b/plugins/widget/lang/zh-cn.js
index 28b7e166..f8a83bc9 100644
--- a/plugins/widget/lang/zh-cn.js
+++ b/plugins/widget/lang/zh-cn.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'zh-cn', {
diff --git a/plugins/widget/lang/zh.js b/plugins/widget/lang/zh.js
index bd445e63..20611d33 100644
--- a/plugins/widget/lang/zh.js
+++ b/plugins/widget/lang/zh.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 CKEDITOR.plugins.setLang( 'widget', 'zh', {
diff --git a/plugins/widget/plugin.js b/plugins/widget/plugin.js
index b01103ad..54770a7d 100644
--- a/plugins/widget/plugin.js
+++ b/plugins/widget/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
@@ -2034,7 +2034,8 @@
 				} else if ( widgetDef.template ) {
 					// ... or create a brand-new widget from template.
 					var defaults = typeof widgetDef.defaults == 'function' ? widgetDef.defaults() : widgetDef.defaults,
-						element = CKEDITOR.dom.element.createFromHtml( widgetDef.template.output( defaults ), editor.document ),
+						templateData = CKEDITOR.tools.object.merge( defaults || {}, commandData && commandData.startupData || {} ),
+						element = CKEDITOR.dom.element.createFromHtml( widgetDef.template.output( templateData ), editor.document ),
 						instance,
 						wrapper = editor.widgets.wrapElement( element, widgetDef.name ),
 						temp = new CKEDITOR.dom.documentFragment( wrapper.getDocument() );
@@ -3059,8 +3060,9 @@
 						} );
 
 						// If widget did not have data-cke-widget attribute before upcasting remove it.
-						if ( widgetElement.attributes[ 'data-cke-widget-keep-attr' ] != '1' )
+						if ( widgetElement && widgetElement.attributes[ 'data-cke-widget-keep-attr' ] != '1' ) {
 							delete widgetElement.attributes[ 'data-widget' ];
+						}
 					}
 				}
 				// Nested editable.
@@ -3116,7 +3118,16 @@
 				if ( !retElement )
 					retElement = widgetElement;
 
-				toBe.wrapper.replaceWith( retElement );
+				// In some edge cases (especially applying formating
+				// at the boundary of the inline editable) the widget
+				// is going to be duplicated (split in half).
+				// In that case there won't be a retElement
+				// and we can safely remove such doppelganger widget (#698).
+				if ( retElement ) {
+					toBe.wrapper.replaceWith( retElement );
+				} else {
+					toBe.wrapper.remove();
+				}
 			}
 		}, null, null, 13 );
 
diff --git a/plugins/widgetselection/plugin.js b/plugins/widgetselection/plugin.js
index ab43a59d..89746ee7 100644
--- a/plugins/widgetselection/plugin.js
+++ b/plugins/widgetselection/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/wysiwygarea/plugin.js b/plugins/wysiwygarea/plugin.js
index 7f341fe1..4466b281 100644
--- a/plugins/wysiwygarea/plugin.js
+++ b/plugins/wysiwygarea/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/plugins/wysiwygarea/samples/fullpage.html b/plugins/wysiwygarea/samples/fullpage.html
index 8786bbc6..ebc315be 100644
--- a/plugins/wysiwygarea/samples/fullpage.html
+++ b/plugins/wysiwygarea/samples/fullpage.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -73,7 +73,7 @@ CKEDITOR.replace( '<em>textarea_id</em>', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/plugins/xml/plugin.js b/plugins/xml/plugin.js
index bfb39167..f9569efc 100644
--- a/plugins/xml/plugin.js
+++ b/plugins/xml/plugin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/samples/css/samples.css b/samples/css/samples.css
index 910f7818..b2c54b5a 100644
--- a/samples/css/samples.css
+++ b/samples/css/samples.css
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 @media (max-width: 900px) {
diff --git a/samples/index.html b/samples/index.html
index 1f621a48..e79e53c6 100644
--- a/samples/index.html
+++ b/samples/index.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -118,7 +118,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor &ndash; The text editor for the Internet &ndash; <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p class="grid-width-100" id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </footer>
diff --git a/samples/js/sample.js b/samples/js/sample.js
index 909f712c..9de85a54 100644
--- a/samples/js/sample.js
+++ b/samples/js/sample.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/samples/js/sf.js b/samples/js/sf.js
index 4ca0674b..5a223925 100644
--- a/samples/js/sf.js
+++ b/samples/js/sf.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 /* exported SF */
diff --git a/samples/old/ajax.html b/samples/old/ajax.html
index c2901bcf..5a99e89d 100644
--- a/samples/old/ajax.html
+++ b/samples/old/ajax.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -78,7 +78,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/old/api.html b/samples/old/api.html
index 6b4dbeb8..b08bf7f6 100644
--- a/samples/old/api.html
+++ b/samples/old/api.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -203,7 +203,7 @@ Second line of text preceded by two line breaks.</textarea>
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/old/appendto.html b/samples/old/appendto.html
index 0800b73f..47eb2f05 100644
--- a/samples/old/appendto.html
+++ b/samples/old/appendto.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -52,7 +52,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/old/assets/outputxhtml/outputxhtml.css b/samples/old/assets/outputxhtml/outputxhtml.css
index 5a151dee..53993061 100644
--- a/samples/old/assets/outputxhtml/outputxhtml.css
+++ b/samples/old/assets/outputxhtml/outputxhtml.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  *
  * Styles used by the XHTML 1.1 sample page (xhtml.html).
diff --git a/samples/old/assets/posteddata.php b/samples/old/assets/posteddata.php
index c560ffb9..4ae1b388 100644
--- a/samples/old/assets/posteddata.php
+++ b/samples/old/assets/posteddata.php
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <?php
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 ?>
@@ -53,7 +53,7 @@ if (!empty($_POST))
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/old/assets/uilanguages/languages.js b/samples/old/assets/uilanguages/languages.js
index 6455a810..1827e723 100644
--- a/samples/old/assets/uilanguages/languages.js
+++ b/samples/old/assets/uilanguages/languages.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/samples/old/datafiltering.html b/samples/old/datafiltering.html
index 53d10563..aa7a445f 100644
--- a/samples/old/datafiltering.html
+++ b/samples/old/datafiltering.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -501,7 +501,7 @@ CKEDITOR.replace( 'editor7', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/old/divreplace.html b/samples/old/divreplace.html
index adcfcebf..34b13e3a 100644
--- a/samples/old/divreplace.html
+++ b/samples/old/divreplace.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -137,7 +137,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/old/index.html b/samples/old/index.html
index 20620229..ee2012fb 100644
--- a/samples/old/index.html
+++ b/samples/old/index.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -170,7 +170,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/old/inlineall.html b/samples/old/inlineall.html
index 02099b58..3bd2a3e8 100644
--- a/samples/old/inlineall.html
+++ b/samples/old/inlineall.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -307,7 +307,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			https://ckeditor.com</a>
 	</p>
 	<p id="copy">
-		Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+		Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 	</p>
 </div>
 </body>
diff --git a/samples/old/inlinebycode.html b/samples/old/inlinebycode.html
index d63688ac..2952342b 100644
--- a/samples/old/inlinebycode.html
+++ b/samples/old/inlinebycode.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -117,7 +117,7 @@ var editor = CKEDITOR.inline( document.getElementById( 'editable' ) );
 				https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/old/inlinetextarea.html b/samples/old/inlinetextarea.html
index 17d02a6c..c6171a2f 100644
--- a/samples/old/inlinetextarea.html
+++ b/samples/old/inlinetextarea.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -106,7 +106,7 @@ var editor = CKEDITOR.inline( 'article-body' );
 				https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/old/jquery.html b/samples/old/jquery.html
index 7986770f..48267b37 100644
--- a/samples/old/jquery.html
+++ b/samples/old/jquery.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -96,7 +96,7 @@ $( document ).ready( function() {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/old/readonly.html b/samples/old/readonly.html
index 3224c797..166703d1 100644
--- a/samples/old/readonly.html
+++ b/samples/old/readonly.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -69,7 +69,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/old/replacebyclass.html b/samples/old/replacebyclass.html
index 312582d3..6bd69c8f 100644
--- a/samples/old/replacebyclass.html
+++ b/samples/old/replacebyclass.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -53,7 +53,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/old/replacebycode.html b/samples/old/replacebycode.html
index 5d813e57..3cf9a8f4 100644
--- a/samples/old/replacebycode.html
+++ b/samples/old/replacebycode.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -52,7 +52,7 @@ CKEDITOR.replace( '<em>textarea_id</em>' )
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/old/sample.css b/samples/old/sample.css
index 3e4607f3..1ac55d40 100644
--- a/samples/old/sample.css
+++ b/samples/old/sample.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/samples/old/sample.js b/samples/old/sample.js
index 47aeb69c..043ce16b 100644
--- a/samples/old/sample.js
+++ b/samples/old/sample.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/samples/old/sample_posteddata.php b/samples/old/sample_posteddata.php
index 2dfad786..edfb606a 100644
--- a/samples/old/sample_posteddata.php
+++ b/samples/old/sample_posteddata.php
@@ -9,7 +9,7 @@
   To save the content created with CKEditor you need to read the POST data on the server
   side and write it to a file or the database.
 
-  Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+  Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
   For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -------------------------------------------------------------------------------------------
 
diff --git a/samples/old/tabindex.html b/samples/old/tabindex.html
index d8bd53b2..e0cbd85a 100644
--- a/samples/old/tabindex.html
+++ b/samples/old/tabindex.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -71,7 +71,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/old/uicolor.html b/samples/old/uicolor.html
index 696dd7ef..f552b65d 100644
--- a/samples/old/uicolor.html
+++ b/samples/old/uicolor.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -65,7 +65,7 @@ CKEDITOR.replace( '<em>textarea_id</em>', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/old/uilanguages.html b/samples/old/uilanguages.html
index 06d7c43a..1484f319 100644
--- a/samples/old/uilanguages.html
+++ b/samples/old/uilanguages.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -115,7 +115,7 @@ CKEDITOR.replace( '<em>textarea_id</em>', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/old/xhtmlstyle.html b/samples/old/xhtmlstyle.html
index 097c7cc1..5ac4b871 100644
--- a/samples/old/xhtmlstyle.html
+++ b/samples/old/xhtmlstyle.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <html lang="en">
@@ -227,7 +227,7 @@ CKEDITOR.replace( '<em>textarea_id</em>', {
 			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 		</p>
 		<p id="copy">
-			Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+			Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 		</p>
 	</div>
 </body>
diff --git a/samples/toolbarconfigurator/index.html b/samples/toolbarconfigurator/index.html
index 455c1a00..a946ab10 100644
--- a/samples/toolbarconfigurator/index.html
+++ b/samples/toolbarconfigurator/index.html
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 -->
 <!--[if IE 8]><html class="ie8"><![endif]-->
@@ -137,7 +137,7 @@ For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 		CKEditor &ndash; The text editor for the Internet &ndash; <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
 	</p>
 	<p class="grid-width-100" id="copy">
-		Copyright &copy; 2003-2022, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
+		Copyright &copy; 2003-2023, <a class="samples" href="https://cksource.com/">CKSource</a> Holding sp. z o.o. All rights reserved.
 	</p>
 </footer>
 
diff --git a/samples/toolbarconfigurator/less/base.less b/samples/toolbarconfigurator/less/base.less
index c966c928..be5020bd 100644
--- a/samples/toolbarconfigurator/less/base.less
+++ b/samples/toolbarconfigurator/less/base.less
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/samples/toolbarconfigurator/less/toolbarmodifier.less b/samples/toolbarconfigurator/less/toolbarmodifier.less
index 5da02b2b..ad392916 100644
--- a/samples/toolbarconfigurator/less/toolbarmodifier.less
+++ b/samples/toolbarconfigurator/less/toolbarmodifier.less
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/skins/kama/colorpanel.css b/skins/kama/colorpanel.css
index 7d436771..7381f492 100644
--- a/skins/kama/colorpanel.css
+++ b/skins/kama/colorpanel.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/dialog.css b/skins/kama/dialog.css
index 399a8c52..9cbe38eb 100644
--- a/skins/kama/dialog.css
+++ b/skins/kama/dialog.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/dialog_ie.css b/skins/kama/dialog_ie.css
index f43c78f8..f6e005b9 100644
--- a/skins/kama/dialog_ie.css
+++ b/skins/kama/dialog_ie.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/dialog_ie7.css b/skins/kama/dialog_ie7.css
index aeeea42f..b5c42590 100644
--- a/skins/kama/dialog_ie7.css
+++ b/skins/kama/dialog_ie7.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/dialog_ie8.css b/skins/kama/dialog_ie8.css
index 23a44774..a1ed95f9 100644
--- a/skins/kama/dialog_ie8.css
+++ b/skins/kama/dialog_ie8.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/dialog_iequirks.css b/skins/kama/dialog_iequirks.css
index c9ad7a14..10832d35 100644
--- a/skins/kama/dialog_iequirks.css
+++ b/skins/kama/dialog_iequirks.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/editor.css b/skins/kama/editor.css
index 5f373ff4..7f47b9f1 100644
--- a/skins/kama/editor.css
+++ b/skins/kama/editor.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/editor_ie.css b/skins/kama/editor_ie.css
index 0c87251e..f49d4edd 100644
--- a/skins/kama/editor_ie.css
+++ b/skins/kama/editor_ie.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/editor_ie7.css b/skins/kama/editor_ie7.css
index 03985ec0..04a90737 100644
--- a/skins/kama/editor_ie7.css
+++ b/skins/kama/editor_ie7.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/editor_ie8.css b/skins/kama/editor_ie8.css
index ca2ed425..eeec9604 100644
--- a/skins/kama/editor_ie8.css
+++ b/skins/kama/editor_ie8.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/editor_iequirks.css b/skins/kama/editor_iequirks.css
index 72454103..49ddb95b 100644
--- a/skins/kama/editor_iequirks.css
+++ b/skins/kama/editor_iequirks.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/elementspath.css b/skins/kama/elementspath.css
index a65efc98..e070e0de 100644
--- a/skins/kama/elementspath.css
+++ b/skins/kama/elementspath.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/mainui.css b/skins/kama/mainui.css
index 0ceba47f..03e0a6ca 100644
--- a/skins/kama/mainui.css
+++ b/skins/kama/mainui.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/menu.css b/skins/kama/menu.css
index 2ff8fe12..c5dac769 100644
--- a/skins/kama/menu.css
+++ b/skins/kama/menu.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/notification.css b/skins/kama/notification.css
index d20049c9..29824d02 100644
--- a/skins/kama/notification.css
+++ b/skins/kama/notification.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/panel.css b/skins/kama/panel.css
index 7da836c4..f8c14bba 100644
--- a/skins/kama/panel.css
+++ b/skins/kama/panel.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/presets.css b/skins/kama/presets.css
index 8eaec3d2..fe2e7502 100644
--- a/skins/kama/presets.css
+++ b/skins/kama/presets.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/readme.md b/skins/kama/readme.md
index b6d32b64..bcec4538 100644
--- a/skins/kama/readme.md
+++ b/skins/kama/readme.md
@@ -33,6 +33,6 @@ Other parts:
 License
 -------
 
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 
 For licensing, see LICENSE.md or [https://ckeditor.com/legal/ckeditor-oss-license](https://ckeditor.com/legal/ckeditor-oss-license)
diff --git a/skins/kama/reset.css b/skins/kama/reset.css
index 8de1e640..64b4c969 100644
--- a/skins/kama/reset.css
+++ b/skins/kama/reset.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/richcombo.css b/skins/kama/richcombo.css
index 63fc2760..831389bb 100644
--- a/skins/kama/richcombo.css
+++ b/skins/kama/richcombo.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/kama/skin.js b/skins/kama/skin.js
index da3046c2..47f693ea 100644
--- a/skins/kama/skin.js
+++ b/skins/kama/skin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/skins/kama/toolbar.css b/skins/kama/toolbar.css
index 38b19e32..63122938 100644
--- a/skins/kama/toolbar.css
+++ b/skins/kama/toolbar.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/colorpanel.css b/skins/moono-lisa/colorpanel.css
index 52ba5480..f277b354 100644
--- a/skins/moono-lisa/colorpanel.css
+++ b/skins/moono-lisa/colorpanel.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/dialog.css b/skins/moono-lisa/dialog.css
index 8afb5e05..14984ac6 100644
--- a/skins/moono-lisa/dialog.css
+++ b/skins/moono-lisa/dialog.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/dialog_ie.css b/skins/moono-lisa/dialog_ie.css
index b815f40e..74337273 100644
--- a/skins/moono-lisa/dialog_ie.css
+++ b/skins/moono-lisa/dialog_ie.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/dialog_ie8.css b/skins/moono-lisa/dialog_ie8.css
index 7d0f3b82..1ebdef38 100644
--- a/skins/moono-lisa/dialog_ie8.css
+++ b/skins/moono-lisa/dialog_ie8.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/dialog_iequirks.css b/skins/moono-lisa/dialog_iequirks.css
index 50941b5b..f48cd9cd 100644
--- a/skins/moono-lisa/dialog_iequirks.css
+++ b/skins/moono-lisa/dialog_iequirks.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/editor.css b/skins/moono-lisa/editor.css
index 5f373ff4..7f47b9f1 100644
--- a/skins/moono-lisa/editor.css
+++ b/skins/moono-lisa/editor.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/editor_gecko.css b/skins/moono-lisa/editor_gecko.css
index a764df83..0ecc4914 100644
--- a/skins/moono-lisa/editor_gecko.css
+++ b/skins/moono-lisa/editor_gecko.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/editor_ie.css b/skins/moono-lisa/editor_ie.css
index 260ebae3..9aaac2fb 100644
--- a/skins/moono-lisa/editor_ie.css
+++ b/skins/moono-lisa/editor_ie.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/editor_ie8.css b/skins/moono-lisa/editor_ie8.css
index 4cb19eab..4822d83b 100644
--- a/skins/moono-lisa/editor_ie8.css
+++ b/skins/moono-lisa/editor_ie8.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/editor_iequirks.css b/skins/moono-lisa/editor_iequirks.css
index 8a949693..e81145c6 100644
--- a/skins/moono-lisa/editor_iequirks.css
+++ b/skins/moono-lisa/editor_iequirks.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/elementspath.css b/skins/moono-lisa/elementspath.css
index 6c015f0f..51820069 100644
--- a/skins/moono-lisa/elementspath.css
+++ b/skins/moono-lisa/elementspath.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/mainui.css b/skins/moono-lisa/mainui.css
index 67827b15..ae9d4627 100644
--- a/skins/moono-lisa/mainui.css
+++ b/skins/moono-lisa/mainui.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/menu.css b/skins/moono-lisa/menu.css
index 16a7b37d..5e3a0395 100644
--- a/skins/moono-lisa/menu.css
+++ b/skins/moono-lisa/menu.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/notification.css b/skins/moono-lisa/notification.css
index 93b43871..ce443e61 100644
--- a/skins/moono-lisa/notification.css
+++ b/skins/moono-lisa/notification.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/panel.css b/skins/moono-lisa/panel.css
index eff950b3..51a4b05e 100644
--- a/skins/moono-lisa/panel.css
+++ b/skins/moono-lisa/panel.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/presets.css b/skins/moono-lisa/presets.css
index 9fe2d675..752184b1 100644
--- a/skins/moono-lisa/presets.css
+++ b/skins/moono-lisa/presets.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/readme.md b/skins/moono-lisa/readme.md
index dc2b1440..9eee13ac 100644
--- a/skins/moono-lisa/readme.md
+++ b/skins/moono-lisa/readme.md
@@ -41,6 +41,6 @@ Other parts:
 License
 -------
 
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 
 For licensing, see LICENSE.md or [https://ckeditor.com/legal/ckeditor-oss-license](https://ckeditor.com/legal/ckeditor-oss-license)
diff --git a/skins/moono-lisa/reset.css b/skins/moono-lisa/reset.css
index 22861614..7d0ee2a8 100644
--- a/skins/moono-lisa/reset.css
+++ b/skins/moono-lisa/reset.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/richcombo.css b/skins/moono-lisa/richcombo.css
index 64ee6fc2..6adc2bab 100644
--- a/skins/moono-lisa/richcombo.css
+++ b/skins/moono-lisa/richcombo.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono-lisa/skin.js b/skins/moono-lisa/skin.js
index 9062869b..212cfd04 100644
--- a/skins/moono-lisa/skin.js
+++ b/skins/moono-lisa/skin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/skins/moono-lisa/toolbar.css b/skins/moono-lisa/toolbar.css
index d3f66c82..c7713710 100644
--- a/skins/moono-lisa/toolbar.css
+++ b/skins/moono-lisa/toolbar.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/colorpanel.css b/skins/moono/colorpanel.css
index 121f67af..04310897 100644
--- a/skins/moono/colorpanel.css
+++ b/skins/moono/colorpanel.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/dialog.css b/skins/moono/dialog.css
index 26c6e302..18b4b441 100644
--- a/skins/moono/dialog.css
+++ b/skins/moono/dialog.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/dialog_ie.css b/skins/moono/dialog_ie.css
index 68bfd9a1..4641f138 100644
--- a/skins/moono/dialog_ie.css
+++ b/skins/moono/dialog_ie.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/dialog_ie7.css b/skins/moono/dialog_ie7.css
index 862b415d..39d367c9 100644
--- a/skins/moono/dialog_ie7.css
+++ b/skins/moono/dialog_ie7.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/dialog_ie8.css b/skins/moono/dialog_ie8.css
index 8b4d456a..4ec977b4 100644
--- a/skins/moono/dialog_ie8.css
+++ b/skins/moono/dialog_ie8.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/dialog_iequirks.css b/skins/moono/dialog_iequirks.css
index 50941b5b..f48cd9cd 100644
--- a/skins/moono/dialog_iequirks.css
+++ b/skins/moono/dialog_iequirks.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/editor.css b/skins/moono/editor.css
index 5f373ff4..7f47b9f1 100644
--- a/skins/moono/editor.css
+++ b/skins/moono/editor.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/editor_gecko.css b/skins/moono/editor_gecko.css
index a764df83..0ecc4914 100644
--- a/skins/moono/editor_gecko.css
+++ b/skins/moono/editor_gecko.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/editor_ie.css b/skins/moono/editor_ie.css
index 260ebae3..9aaac2fb 100644
--- a/skins/moono/editor_ie.css
+++ b/skins/moono/editor_ie.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/editor_ie7.css b/skins/moono/editor_ie7.css
index 83e300de..1960f402 100644
--- a/skins/moono/editor_ie7.css
+++ b/skins/moono/editor_ie7.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/editor_ie8.css b/skins/moono/editor_ie8.css
index 40e988ee..e91c31b2 100644
--- a/skins/moono/editor_ie8.css
+++ b/skins/moono/editor_ie8.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/editor_iequirks.css b/skins/moono/editor_iequirks.css
index 8a949693..e81145c6 100644
--- a/skins/moono/editor_iequirks.css
+++ b/skins/moono/editor_iequirks.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/elementspath.css b/skins/moono/elementspath.css
index 3aeed5ca..c9725793 100644
--- a/skins/moono/elementspath.css
+++ b/skins/moono/elementspath.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/mainui.css b/skins/moono/mainui.css
index 9253263a..25071542 100644
--- a/skins/moono/mainui.css
+++ b/skins/moono/mainui.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/menu.css b/skins/moono/menu.css
index f1fbd070..8a63644f 100644
--- a/skins/moono/menu.css
+++ b/skins/moono/menu.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/notification.css b/skins/moono/notification.css
index b5de224f..3a1522a4 100644
--- a/skins/moono/notification.css
+++ b/skins/moono/notification.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/panel.css b/skins/moono/panel.css
index 5bfc33af..bd34edca 100644
--- a/skins/moono/panel.css
+++ b/skins/moono/panel.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/presets.css b/skins/moono/presets.css
index 8eaec3d2..fe2e7502 100644
--- a/skins/moono/presets.css
+++ b/skins/moono/presets.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/readme.md b/skins/moono/readme.md
index ec34a731..c78a25d8 100644
--- a/skins/moono/readme.md
+++ b/skins/moono/readme.md
@@ -44,6 +44,6 @@ Other parts:
 License
 -------
 
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 
 For licensing, see LICENSE.md or [https://ckeditor.com/legal/ckeditor-oss-license](https://ckeditor.com/legal/ckeditor-oss-license)
diff --git a/skins/moono/reset.css b/skins/moono/reset.css
index 22861614..7d0ee2a8 100644
--- a/skins/moono/reset.css
+++ b/skins/moono/reset.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/richcombo.css b/skins/moono/richcombo.css
index 0b21a04f..daf35644 100644
--- a/skins/moono/richcombo.css
+++ b/skins/moono/richcombo.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/skins/moono/skin.js b/skins/moono/skin.js
index ebede8e0..bc40c7e0 100644
--- a/skins/moono/skin.js
+++ b/skins/moono/skin.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/skins/moono/toolbar.css b/skins/moono/toolbar.css
index b6a33a13..04b3f908 100644
--- a/skins/moono/toolbar.css
+++ b/skins/moono/toolbar.css
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/styles.js b/styles.js
index ef23a711..08bb98ba 100644
--- a/styles.js
+++ b/styles.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/tests/_benderjs/ckeditor/lib/index.js b/tests/_benderjs/ckeditor/lib/index.js
index e0fe76d6..16fb7c7c 100644
--- a/tests/_benderjs/ckeditor/lib/index.js
+++ b/tests/_benderjs/ckeditor/lib/index.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/tests/_benderjs/ckeditor/lib/pagebuilder.js b/tests/_benderjs/ckeditor/lib/pagebuilder.js
index ea397c6f..143390e9 100644
--- a/tests/_benderjs/ckeditor/lib/pagebuilder.js
+++ b/tests/_benderjs/ckeditor/lib/pagebuilder.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/tests/_benderjs/ckeditor/lib/testbuilder.js b/tests/_benderjs/ckeditor/lib/testbuilder.js
index 164dfbe6..e746f3a8 100644
--- a/tests/_benderjs/ckeditor/lib/testbuilder.js
+++ b/tests/_benderjs/ckeditor/lib/testbuilder.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/tests/_benderjs/ckeditor/static/bot.js b/tests/_benderjs/ckeditor/static/bot.js
index 1973a112..7f1b43c6 100644
--- a/tests/_benderjs/ckeditor/static/bot.js
+++ b/tests/_benderjs/ckeditor/static/bot.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/tests/_benderjs/ckeditor/static/extensions.js b/tests/_benderjs/ckeditor/static/extensions.js
index 5f8cbe2c..8d38e06e 100644
--- a/tests/_benderjs/ckeditor/static/extensions.js
+++ b/tests/_benderjs/ckeditor/static/extensions.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/tests/_benderjs/ckeditor/static/tools.js b/tests/_benderjs/ckeditor/static/tools.js
index 4f899f19..2df992df 100644
--- a/tests/_benderjs/ckeditor/static/tools.js
+++ b/tests/_benderjs/ckeditor/static/tools.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/tests/core/editor/_assets/custom_config_1.js b/tests/core/editor/_assets/custom_config_1.js
index 6433a0ee..448136b0 100644
--- a/tests/core/editor/_assets/custom_config_1.js
+++ b/tests/core/editor/_assets/custom_config_1.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/tests/core/editor/_assets/custom_config_2.js b/tests/core/editor/_assets/custom_config_2.js
index 31564536..0f14fac5 100644
--- a/tests/core/editor/_assets/custom_config_2.js
+++ b/tests/core/editor/_assets/custom_config_2.js
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 For licensing, see LICENSE.html or https://ckeditor.com/legal/ckeditor-oss-license
 */
 
diff --git a/tests/core/selection/manual/optimizationlist.html b/tests/core/selection/manual/optimizationlist.html
new file mode 100644
index 00000000..9458048c
--- /dev/null
+++ b/tests/core/selection/manual/optimizationlist.html
@@ -0,0 +1,37 @@
+<h2>Iframe editor</h2>
+<div id="editor1">
+	<ol>
+		<li>1</li>
+		<li>2
+		<ol>
+			<li>1</li>
+		</ol>
+		</li>
+		<li>&nbsp;</li>
+	</ol>
+</div>
+
+<h2>Divarea editor</h2>
+<div id="editor2">
+	<ol>
+		<li>1</li>
+		<li>2
+		<ol>
+			<li>1</li>
+		</ol>
+		</li>
+		<li>&nbsp;</li>
+	</ol>
+</div>
+
+<script>
+	if ( bender.tools.env.mobile ) {
+		bender.ignore();
+	}
+
+	CKEDITOR.replace( 'editor1' );
+
+	CKEDITOR.replace( 'editor2', {
+		extraPlugins: 'divarea',
+	} );
+</script>
diff --git a/tests/core/selection/manual/optimizationlist.md b/tests/core/selection/manual/optimizationlist.md
new file mode 100644
index 00000000..f3eaf72b
--- /dev/null
+++ b/tests/core/selection/manual/optimizationlist.md
@@ -0,0 +1,14 @@
+@bender-tags: selection, 4.20.0, bug, 4931
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, elementspath, sourcearea, list, undo
+
+1. Select entire content via `Ctrl+A`.
+2. Delete content with backspace key.
+
+**Expected** The entire list content is removed from the editor.
+
+**Note** It is possible that list styling was not removed, so the first list item punctuation is in the content **without any preceding whitespace**.
+
+**Unexpected** There are list leftovers in the editor.
+
+3. Repeat steps in the second editor.
diff --git a/tests/core/selection/optimization.js b/tests/core/selection/optimization.js
index 167d8965..97fce9a1 100644
--- a/tests/core/selection/optimization.js
+++ b/tests/core/selection/optimization.js
@@ -61,9 +61,16 @@
 			expected: '<p>foo</p><p>^bar@</p><p>baz</p>'
 		} ),
 
+		// (#4931) do not expect optimization in list
 		'test selection optimization case 8': testSelection( {
 			initial: '<ul><li>[foo</li><li>]bar</li></ul>',
-			expected: '<ul><li>[foo]@</li><li>bar</li></ul>'
+			expected: '<ul><li>[foo@</li><li>]bar</li></ul>'
+		} ),
+
+		// (#4931)
+		'test selection optimization skips optimization if last list element is empty': testSelection( {
+			initial: '<ul><li>[foo</li><li>]</li></ul>',
+			expected: '<ul><li>[foo@</li><li>]</li></ul>'
 		} ),
 
 		'test selection optimization case 9': testSelection( {
diff --git a/tests/plugins/a11yhelp/manual/screenreader.html b/tests/plugins/a11yhelp/manual/screenreader.html
index f6600617..2ee0be55 100644
--- a/tests/plugins/a11yhelp/manual/screenreader.html
+++ b/tests/plugins/a11yhelp/manual/screenreader.html
@@ -1,6 +1,10 @@
 <div id="editor"></div>
 
 <script>
+	if ( bender.tools.env.mobile ) {
+		bender.ignore();
+	}
+
 	CKEDITOR.replace( 'editor', {
 		language: 'en'
 	} );
diff --git a/tests/plugins/autocomplete/autocomplete.js b/tests/plugins/autocomplete/autocomplete.js
index 3172e595..f725d217 100644
--- a/tests/plugins/autocomplete/autocomplete.js
+++ b/tests/plugins/autocomplete/autocomplete.js
@@ -622,6 +622,108 @@
 			wait();
 		},
 
+		// (#2008)
+		'test following space is inserted after accepting match': function() {
+			// Ignore test due to IE issue (#2077).
+			if ( CKEDITOR.env.ie && CKEDITOR.env.version < 11 ) {
+				assert.ignore();
+			}
+
+			var editor = this.editors.standard,
+				editable = editor.editable(),
+				ac = new CKEDITOR.plugins.autocomplete( editor, {
+					dataCallback: dataCallback,
+					textTestCallback: textTestCallback,
+					followingSpace: true
+				} );
+
+			this.editorBots.standard.setHtmlWithSelection( '' );
+
+			editable.fire( 'keyup', new CKEDITOR.dom.event( {} ) );
+			editable.fire( 'keydown', new CKEDITOR.dom.event( { keyCode: 13 } ) ); // ENTER
+
+			assert.areEqual( '<p>item1&nbsp;</p>', editor.getData() );
+
+			ac.destroy();
+		},
+
+		// (#2008)
+		'test following space is not doubled': function() {
+			// Ignore test due to IE issue (#2077).
+			if ( CKEDITOR.env.ie && CKEDITOR.env.version < 11 ) {
+				assert.ignore();
+			}
+
+			var editor = this.editors.standard,
+				editable = editor.editable(),
+				ac = new CKEDITOR.plugins.autocomplete( editor, {
+					dataCallback: dataCallback,
+					textTestCallback: textTestCallback,
+					followingSpace: true
+				} );
+
+			this.editorBots.standard.setHtmlWithSelection( '^&nbsp;foo' );
+
+			editable.fire( 'keyup', new CKEDITOR.dom.event( {} ) );
+			editable.fire( 'keydown', new CKEDITOR.dom.event( { keyCode: 13 } ) ); // ENTER
+
+			assert.areEqual( '<p>item1&nbsp;foo</p>', editor.getData() );
+
+			ac.destroy();
+		},
+
+		// (#2008)
+		'test following space with output template is not doubled': function() {
+			// Ignore test due to IE issue (#2077).
+			if ( CKEDITOR.env.ie && CKEDITOR.env.version < 11 ) {
+				assert.ignore();
+			}
+
+			var editor = this.editors.standard,
+				editable = editor.editable(),
+				ac = new CKEDITOR.plugins.autocomplete( editor, {
+					dataCallback: dataCallback,
+					textTestCallback: textTestCallback,
+					outputTemplate: '<strong>{name}</strong>',
+					followingSpace: true
+				} );
+
+			this.editorBots.standard.setHtmlWithSelection( '^&nbsp;foo' );
+
+			editable.fire( 'keyup', new CKEDITOR.dom.event( {} ) );
+			editable.fire( 'keydown', new CKEDITOR.dom.event( { keyCode: 13 } ) ); // ENTER
+
+			assert.beautified.html( '<p><strong>item1</strong>&nbsp;foo</p>', editable.getData() );
+
+			ac.destroy();
+		},
+
+		// (#2008)
+		'test following space with output template': function() {
+			// Ignore test due to IE issue (#2077).
+			if ( CKEDITOR.env.ie && CKEDITOR.env.version < 11 ) {
+				assert.ignore();
+			}
+
+			var editor = this.editors.standard,
+				editable = editor.editable(),
+				ac = new CKEDITOR.plugins.autocomplete( editor, {
+					dataCallback: dataCallback,
+					textTestCallback: textTestCallback,
+					outputTemplate: '<strong>{name}</strong>',
+					followingSpace: true
+				} );
+
+			this.editorBots.standard.setHtmlWithSelection( '^foo' );
+
+			editable.fire( 'keyup', new CKEDITOR.dom.event( {} ) );
+			editable.fire( 'keydown', new CKEDITOR.dom.event( { keyCode: 13 } ) ); // ENTER
+
+			assert.beautified.html( '<p><strong>item1</strong>&nbsp;foo</p>', editable.getData() );
+
+			ac.destroy();
+		},
+
 		// (#2474)
 		'test editor change event': function() {
 			var editor = this.editors.standard,
diff --git a/tests/plugins/autocomplete/manual/_helpers/utils.js b/tests/plugins/autocomplete/manual/_helpers/utils.js
index 2e81a0c2..6dad7097 100644
--- a/tests/plugins/autocomplete/manual/_helpers/utils.js
+++ b/tests/plugins/autocomplete/manual/_helpers/utils.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/tests/plugins/autocomplete/manual/existingspace.html b/tests/plugins/autocomplete/manual/existingspace.html
new file mode 100644
index 00000000..0d05aec7
--- /dev/null
+++ b/tests/plugins/autocomplete/manual/existingspace.html
@@ -0,0 +1,24 @@
+<div id="editor" >
+	<p> Hello &nbsp;world</p>
+</div>
+
+<script>
+
+	// Ignore test due to IE issue (#2077).
+	if ( CKEDITOR.env.ie && CKEDITOR.env.version < 11 ) {
+		bender.ignore();
+	}
+
+	CKEDITOR.replace( 'editor', {
+		width: 600,
+		on: {
+			instanceReady: function( evt ) {
+				new CKEDITOR.plugins.autocomplete( evt.editor, {
+					textTestCallback: autocompleteUtils.getTextTestCallback(),
+					dataCallback: autocompleteUtils.getDataCallback(),
+					followingSpace: true
+				} );
+			}
+		}
+	} );
+</script>
diff --git a/tests/plugins/autocomplete/manual/existingspace.md b/tests/plugins/autocomplete/manual/existingspace.md
new file mode 100644
index 00000000..ac74735e
--- /dev/null
+++ b/tests/plugins/autocomplete/manual/existingspace.md
@@ -0,0 +1,17 @@
+
+@bender-tags: 4.20.0, feature, 2008
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, autocomplete, textmatch
+@bender-include: _helpers/utils.js
+
+1. Place cursor between words so there is existing space before `hello ^ world`.
+2. Type `@`.
+3. Press enter.
+
+## Expected
+
+Space has not been added after the insertion. Selection has been placed right after existing space `hello @john ^world`.
+
+## Unexpected
+
+Space has been doubled after the insertion `hello @john ^ world` or selection is placed right after inserted text `hello @john^ world`.
diff --git a/tests/plugins/autocomplete/manual/followingspace.html b/tests/plugins/autocomplete/manual/followingspace.html
new file mode 100644
index 00000000..25c7e105
--- /dev/null
+++ b/tests/plugins/autocomplete/manual/followingspace.html
@@ -0,0 +1,26 @@
+<div id="editor" >
+	<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
+	<p>Vitae perferendis architecto sapiente veniam eius eos enim mollitia</p>
+	<p>Sint accusamus sed voluptatum, consectetur illum nam, ab quod id amet.</p>
+</div>
+
+<script>
+
+	// Ignore test due to IE issue (#2077).
+	if ( CKEDITOR.env.ie && CKEDITOR.env.version < 11 ) {
+		bender.ignore();
+	}
+
+	CKEDITOR.replace( 'editor', {
+		width: 600,
+		on: {
+			instanceReady: function( evt ) {
+				new CKEDITOR.plugins.autocomplete( evt.editor, {
+					textTestCallback: autocompleteUtils.getTextTestCallback(),
+					dataCallback: autocompleteUtils.getDataCallback(),
+					followingSpace: true
+				} );
+			}
+		}
+	} );
+</script>
diff --git a/tests/plugins/autocomplete/manual/followingspace.md b/tests/plugins/autocomplete/manual/followingspace.md
new file mode 100644
index 00000000..3867791d
--- /dev/null
+++ b/tests/plugins/autocomplete/manual/followingspace.md
@@ -0,0 +1,16 @@
+@bender-tags: 4.20.0, feature, 2008
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, autocomplete, textmatch
+@bender-include: _helpers/utils.js
+
+1. Place cursor at end of the editors content.
+2. Type `@`.
+3. Press enter.
+
+## Expected
+
+Space has been added after the insertion `@john ^`.
+
+## Unexpected
+
+Space has not been added after the insertion `@john^`.
diff --git a/tests/plugins/autocomplete/manual/outputtemplatespace.html b/tests/plugins/autocomplete/manual/outputtemplatespace.html
new file mode 100644
index 00000000..ab4e21d1
--- /dev/null
+++ b/tests/plugins/autocomplete/manual/outputtemplatespace.html
@@ -0,0 +1,22 @@
+<div id="editor1" ></div>
+
+<script>
+	// Ignore test due to IE issue (#2077).
+	if ( CKEDITOR.env.ie && CKEDITOR.env.version < 11 ) {
+		bender.ignore();
+	}
+
+	CKEDITOR.replace( 'editor1', {
+		width: 600,
+		on: {
+			instanceReady: function( evt ) {
+				new CKEDITOR.plugins.autocomplete( evt.editor, {
+					textTestCallback: autocompleteUtils.getTextTestCallback(),
+					dataCallback: autocompleteUtils.getDataCallback(),
+					outputTemplate: '<strong>{name}</strong>',
+					followingSpace: true
+				} );
+			}
+		}
+	} );
+</script>
diff --git a/tests/plugins/autocomplete/manual/outputtemplatespace.md b/tests/plugins/autocomplete/manual/outputtemplatespace.md
new file mode 100644
index 00000000..70c927bd
--- /dev/null
+++ b/tests/plugins/autocomplete/manual/outputtemplatespace.md
@@ -0,0 +1,20 @@
+@bender-tags: 4.20.0, bug, 2008
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, autocomplete, textmatch
+@bender-include: _helpers/utils.js
+
+1. Focus the editor.
+1. Press italic style button.
+1. Type `@` to start autocompletion.
+1. Accept the first entry.
+1. Type ` and ` (note spaces).
+1. Type `@` to start another autocompletion.
+1. Accept the first entry.
+
+## Expected result
+
+Text between the autocompleted values should not be bolded, although it should remain italic.
+
+## Actual result
+
+The text is bolded or it's not keeping italic style.
diff --git a/tests/plugins/autolink/autolink.js b/tests/plugins/autolink/autolink.js
index 4b7b2cf9..8d4f0f07 100644
--- a/tests/plugins/autolink/autolink.js
+++ b/tests/plugins/autolink/autolink.js
@@ -18,8 +18,8 @@
 				allowedContent: true,
 				pasteFilter: null,
 				removePlugins: 'link',
-				autolink_urlRegex: /^https:\/\/foobar.com$/,
-				autolink_emailRegex: /^foo@foobar\.com$/
+				autolink_urlRegex: /^url:xxx.xxx$/,
+				autolink_emailRegex: /^mail:xxx$/
 			}
 		},
 		encodedDefault: {
@@ -161,10 +161,10 @@
 			}
 		},
 
-		// (#3156)
+		// (#3156, #5319)
 		'test valid URL link with optional regex': function() {
-			var pastedText = 'https://foobar.com',
-				expected = '<a href="' + pastedText + '">' + pastedText + '</a>';
+			var pastedText = 'url:xxx.xxx',
+				expected = '<a href="http://' + pastedText + '">' + pastedText + '</a>';
 
 			assertPasteEvent( this.editors.optionalParameters, { dataValue: pastedText }, { dataValue: expected, type: 'html' } );
 		},
@@ -193,9 +193,9 @@
 			}
 		},
 
-		// (#3156)
+		// (#3156, #5319)
 		'test valid email link with optional regex': function() {
-			var pastedText = 'foo@foobar.com',
+			var pastedText = 'mail:xxx',
 				expected = '<a href="mailto:' + pastedText + '">' + pastedText + '</a>';
 
 			assertPasteEvent( this.editors.optionalParameters, { dataValue: pastedText }, { dataValue: expected, type: 'html' } );
diff --git a/tests/plugins/basicstyles/basicstyles.js b/tests/plugins/basicstyles/basicstyles.js
index a149fa7e..a58f070c 100644
--- a/tests/plugins/basicstyles/basicstyles.js
+++ b/tests/plugins/basicstyles/basicstyles.js
@@ -25,5 +25,235 @@ bender.test( {
 
 			assert.beautified.html( expectedHtml, bot.editor.getData() );
 		} );
+	},
+
+	'test applying subscript to the selected content': function() {
+		var bot = this.editorBot;
+
+		bot.setHtmlWithSelection( '<p>foo[bar]</p>' );
+		bot.execCommand( 'subscript' );
+
+		assert.beautified.html( '<p>foo<sub>bar</sub></p>', bot.editor.getData() );
+	},
+
+	'test applying superscript to the selected content': function() {
+		var bot = this.editorBot;
+
+		bot.setHtmlWithSelection( '<p>foo[bar]</p>' );
+		bot.execCommand( 'superscript' );
+
+		assert.beautified.html( '<p>foo<sup>bar</sup></p>', bot.editor.getData() );
+	},
+
+	// (#5215)
+	'test toggle subscript and superscript on selected text': function() {
+		bender.editorBot.create( {
+			name: 'editor-subsup1',
+			config: {
+				coreStyles_toggleSubSup: true
+			}
+		}, function( bot ) {
+			var editor = bot.editor;
+
+			bot.setHtmlWithSelection( '<p>[foo] bar</p>' );
+			editor.execCommand( 'subscript' );
+			assert.areSame(
+				'<p><sub>foo</sub> bar</p>',
+				editor.editable().getData(),
+				'There is no added subscript element' );
+
+			editor.execCommand( 'superscript' );
+			assert.areSame(
+				'<p><sup>foo</sup> bar</p>',
+				editor.editable().getData(),
+				'There both subscript and superscript elements' );
+		} );
+	},
+
+	// (#5215)
+	'test properly toggle subscript and superscript on selected text with other basic styles': function() {
+		bender.editorBot.create( {
+			name: 'editor-subsup2',
+			config: {
+				coreStyles_toggleSubSup: true
+			}
+		}, function( bot ) {
+			var editor = bot.editor;
+
+			bot.setHtmlWithSelection( '<p>[<strong>foo</strong>] bar</p>' );
+			editor.execCommand( 'subscript' );
+			assert.areSame(
+				'<p><sub><strong>foo</strong></sub> bar</p>',
+				editor.editable().getData(),
+				'There is no added subscript element' );
+
+			editor.execCommand( 'superscript' );
+			assert.areSame(
+				'<p><sup><strong>foo</strong></sup> bar</p>',
+				editor.editable().getData(),
+				'There both subscript and superscript elements' );
+		} );
+	},
+
+	// (#5215)
+	'test toggle subscript and superscript on selected text create proper undo and redo step': function() {
+		bender.editorBot.create( {
+			name: 'editor-subsup3',
+			config: {
+				coreStyles_toggleSubSup: true,
+				extraPlugins: 'undo'
+			}
+		}, function( bot ) {
+			var editor = bot.editor;
+
+			bot.setHtmlWithSelection( '<p>[foo] bar</p>' );
+			editor.execCommand( 'subscript' );
+			assert.areSame(
+				'<p><sub>foo</sub> bar</p>',
+				editor.editable().getData(),
+				'There is no added subscript element' );
+
+			editor.execCommand( 'superscript' );
+			assert.areSame(
+				'<p><sup>foo</sup> bar</p>',
+				editor.editable().getData(),
+				'There both subscript and superscript elements' );
+
+			editor.execCommand( 'undo' );
+			assert.areSame(
+				'<p><sub>foo</sub> bar</p>',
+				editor.editable().getData(),
+				'Undo step is incorrect' );
+
+			editor.execCommand( 'redo' );
+			assert.areSame(
+				'<p><sup>foo</sup> bar</p>',
+				editor.editable().getData(),
+				'Redo step is incorrect' );
+
+		} );
+	},
+
+	// (#5215)
+	'test toggle subscript and superscript not disappear selection': function() {
+		bender.editorBot.create( {
+			name: 'editor-subsup4',
+			config: {
+				coreStyles_toggleSubSup: true
+			}
+		}, function( bot ) {
+			var editor = bot.editor;
+
+			bot.setHtmlWithSelection( '<p>[foo] bar</p>' );
+			editor.execCommand( 'subscript' );
+			assert.areSame(
+				'<p><sub>foo</sub> bar</p>',
+				editor.editable().getData(),
+				'There is no added subscript element' );
+
+			editor.execCommand( 'superscript' );
+			assert.areSame(
+				'<p><sup>foo</sup> bar</p>',
+				editor.editable().getData(),
+				'There both subscript and superscript elements' );
+
+			var selection = editor.getSelection(),
+				range = selection.getRanges()[ 0 ],
+				selectedContent = range.extractContents();
+
+			assert.areSame( 'foo', selectedContent.getHtml(), 'Selected content is incorrect' );
+		} );
+	},
+
+	// (#5215)
+	'test toggle subscript and superscript contain only one active UI button': function() {
+		bender.editorBot.create( {
+			name: 'editor-subsup5',
+			config: {
+				coreStyles_toggleSubSup: true
+			}
+		}, function( bot ) {
+			var editor = bot.editor;
+
+			bot.setHtmlWithSelection( '<p>[foo] bar</p>' );
+			editor.execCommand( 'subscript' );
+			assert.areSame(
+				'<p><sub>foo</sub> bar</p>',
+				editor.editable().getData(),
+				'There is no added subscript element' );
+
+
+			editor.execCommand( 'superscript' );
+			assert.areSame(
+				'<p><sup>foo</sup> bar</p>',
+				editor.editable().getData(),
+				'There both subscript and superscript elements' );
+
+			var	subscriptButtonState = editor.ui.get( 'Subscript' ).getState(),
+				superscriptButtonState = editor.ui.get( 'Superscript' ).getState();
+
+			assert.areSame( subscriptButtonState, CKEDITOR.TRISTATE_OFF, 'Subscript button is not active' );
+			assert.areSame( superscriptButtonState, CKEDITOR.TRISTATE_ON, 'Superscript button is active' );
+		} );
+	},
+
+	'test allow add subscript and superscript at the same time when config.coreStyles_toggleSubSup is OFF': function() {
+		bender.editorBot.create( {
+			name: 'editor-subsup6',
+			config: {
+				coreStyles_toggleSubSup: false
+			}
+		}, function( bot ) {
+			var editor = bot.editor;
+
+			bot.setHtmlWithSelection( '<p>[foo] bar</p>' );
+			editor.execCommand( 'subscript' );
+			assert.areSame(
+				'<p><sub>foo</sub> bar</p>',
+				editor.editable().getData(),
+				'There is no added subscript element' );
+
+			editor.execCommand( 'superscript' );
+			assert.areSame(
+				'<p><sup><sub>foo</sub></sup> bar</p>',
+				editor.editable().getData(),
+				'There is no subscript and superscript element' );
+		} );
+	},
+
+	'test remove subscript from content which contain subscript and superscript elements': function() {
+		bender.editorBot.create( {
+			name: 'editor-subsup7',
+			config: {
+				coreStyles_toggleSubSup: true
+			}
+		}, function( bot ) {
+			var editor = bot.editor;
+
+			bot.setHtmlWithSelection( '<p><sup><sub>[foo]</sub></sup> bar</p>' );
+			editor.execCommand( 'subscript' );
+			assert.areSame(
+				'<p><sup>foo</sup> bar</p>',
+				editor.editable().getData(),
+				'Subscript element is not removed' );
+		} );
+	},
+
+	'test remove superscript from content which contain subscript and superscript elements': function() {
+		bender.editorBot.create( {
+			name: 'editor-subsup8',
+			config: {
+				coreStyles_toggleSubSup: true
+			}
+		}, function( bot ) {
+			var editor = bot.editor;
+
+			bot.setHtmlWithSelection( '<p><sup><sub>[foo]</sub></sup> bar</p>' );
+			editor.execCommand( 'superscript' );
+			assert.areSame(
+				'<p><sub>foo</sub> bar</p>',
+				editor.editable().getData(),
+				'Superscript element is not removed' );
+		} );
 	}
 } );
diff --git a/tests/plugins/basicstyles/manual/toggleexistingsubsupscript.html b/tests/plugins/basicstyles/manual/toggleexistingsubsupscript.html
new file mode 100644
index 00000000..19e86a7a
--- /dev/null
+++ b/tests/plugins/basicstyles/manual/toggleexistingsubsupscript.html
@@ -0,0 +1,10 @@
+<h2>Classic editor</h2>
+<div id="editor">
+	<p><sub><sup>foobar</sup></sub></p>
+</div>
+
+<script>
+	CKEDITOR.replace( 'editor', {
+		coreStyles_toggleSubSup: true
+	} );
+</script>
diff --git a/tests/plugins/basicstyles/manual/toggleexistingsubsupscript.md b/tests/plugins/basicstyles/manual/toggleexistingsubsupscript.md
new file mode 100644
index 00000000..ac48af01
--- /dev/null
+++ b/tests/plugins/basicstyles/manual/toggleexistingsubsupscript.md
@@ -0,0 +1,15 @@
+@bender-tags: 4.20.0, feature, 5215
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, sourcearea, elementspath, undo, floatingspace
+
+1. Select `foobar` text.
+2. Click subscript button.
+
+**Expected** Selected text contain only `superscript` style.
+
+3. Click undo button.
+4. Click redo button.
+
+**Expected** There is only one step needed to back to enabled `subscript` button.
+
+5. Repeat above steps for `subscript` button.
diff --git a/tests/plugins/basicstyles/manual/togglesubsupscript.html b/tests/plugins/basicstyles/manual/togglesubsupscript.html
new file mode 100644
index 00000000..6c9a2072
--- /dev/null
+++ b/tests/plugins/basicstyles/manual/togglesubsupscript.html
@@ -0,0 +1,19 @@
+<h2>Classic editor</h2>
+<div id="editor">
+	<p>foo bar</p>
+</div>
+
+<h2>Inline editor</h2>
+<div id="inline" contenteditable="true">
+	<p>foo bar</p>
+</div>
+
+<script>
+	var cfg = {
+		lang: 'en',
+		coreStyles_toggleSubSup: true
+	}
+
+	CKEDITOR.replace( 'editor', cfg );
+	CKEDITOR.inline( 'inline', cfg );
+</script>
diff --git a/tests/plugins/basicstyles/manual/togglesubsupscript.md b/tests/plugins/basicstyles/manual/togglesubsupscript.md
new file mode 100644
index 00000000..f31228dc
--- /dev/null
+++ b/tests/plugins/basicstyles/manual/togglesubsupscript.md
@@ -0,0 +1,17 @@
+@bender-tags: 4.20.0, feature, 5215
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, sourcearea, elementspath, undo, floatingspace
+
+1. Select `foo` text.
+2. Click `subscript` button.
+3. Click `superscript` button.
+
+**Expected** Selected text contain only `superscript` style.
+
+**Unexpected** Selected text contain `subscript` and `superscript` style.
+
+4. Click `undo` button.
+
+**Expected** There is only one step needed to back to enabled `subscript` button.
+
+5. Repeat above steps for inline editor.
diff --git a/tests/plugins/colorbutton/manual/_assets/customstyle.css b/tests/plugins/colorbutton/manual/_assets/customstyle.css
new file mode 100644
index 00000000..5f1691a6
--- /dev/null
+++ b/tests/plugins/colorbutton/manual/_assets/customstyle.css
@@ -0,0 +1,3 @@
+a.cke_colorbox, span.cke_colorbox {
+	border-radius: 50%;
+}
diff --git a/tests/plugins/colorbutton/manual/customstyle.html b/tests/plugins/colorbutton/manual/customstyle.html
new file mode 100644
index 00000000..adfbbf75
--- /dev/null
+++ b/tests/plugins/colorbutton/manual/customstyle.html
@@ -0,0 +1,7 @@
+<div id="editor"></div>
+
+<script>
+	CKEDITOR.replace( 'editor', {
+		colorButton_contentsCss: [ '%TEST_DIR%_assets/customstyle.css' ]
+	} );
+</script>
diff --git a/tests/plugins/colorbutton/manual/customstyle.md b/tests/plugins/colorbutton/manual/customstyle.md
new file mode 100644
index 00000000..b60e9a95
--- /dev/null
+++ b/tests/plugins/colorbutton/manual/customstyle.md
@@ -0,0 +1,16 @@
+@bender-tags: feature, 5352, 4.20.2
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, colorbutton, colordialog, sourcearea
+
+1. Click **Text Color** button.
+2. Hover over any color.
+
+### Expected:
+
+All color squares are circles.
+
+### Unexpected:
+
+Color squares have default square shape.
+
+3. Repeat steps 1-2 for **Background Color** button.
diff --git a/tests/plugins/dialog/_helpers/tools.js b/tests/plugins/dialog/_helpers/tools.js
index 36156ef5..367d1fc5 100644
--- a/tests/plugins/dialog/_helpers/tools.js
+++ b/tests/plugins/dialog/_helpers/tools.js
@@ -15,6 +15,16 @@
 
 		// Apply listening to focus change on elements in dialog.
 		CKEDITOR.tools.array.forEach( dialog._.focusList, function( item ) {
+			if ( item.type === 'radio' ) {
+				CKEDITOR.tools.array.forEach( item._.children, function( radioElement ) {
+					radioElement.on( 'focus', function() {
+						dialog.fire( 'focusChange' );
+					}, null, null, 100000 );
+				} );
+
+				return;
+			}
+
 			item.on( 'focus', function() {
 				dialog.fire( 'focusChange' );
 			}, null, null, 100000 );
@@ -82,6 +92,11 @@
 		throw new Error( 'Invalid focus options: ' + JSON.stringify( options ) );
 	}
 
+	function getRadioGroupElement( dialog, options ) {
+		var radioGroup = dialog.getContentElement( options.tab, options.radioGroupId );
+
+		return radioGroup._.children[ options.radioElementIndex ];
+	}
 
 	var dialogTools = {
 		// Dialog definitions used in test cases.
@@ -293,6 +308,80 @@
 					],
 					onLoad: onLoadHandler
 				};
+			},
+			singleRadioGroup: function() {
+				return {
+					title: 'Single page dialog with radio group',
+					contents: [
+						{
+							id: 'srg-test1',
+							elements: [
+								{
+									type: 'text',
+									id: 'srg-input1',
+									label: 'input 1'
+								},
+								{
+									type: 'radio',
+									id: 'srg-radio1',
+									items: [
+										[ 'foo1', 'foo1' ],
+										[ 'bar2', 'bar2' ],
+										[ 'bar3', 'bar3' ],
+										[ 'bar4', 'bar4' ]
+									]
+								},
+								{
+									type: 'checkbox',
+									id: 'srg-input3',
+									label: 'input 3'
+								}
+							]
+						}
+					],
+					onLoad: onLoadHandler
+				};
+			},
+			multipleRadioGroup: function() {
+				return {
+					title: 'Single page dialog with radio groups',
+					contents: [
+						{
+							id: 'mrg-test1',
+							elements: [
+								{
+									type: 'text',
+									id: 'mrg-input1',
+									label: 'input 1'
+								},
+								{
+									type: 'radio',
+									id: 'mrg-radio1',
+									items: [
+										[ 'foo1', 'foo1' ],
+										[ 'bar2', 'bar2' ],
+										[ 'bar3', 'bar3' ]
+									]
+								},
+								{
+									type: 'radio',
+									id: 'mrg-radio2',
+									items: [
+										[ 'foo4', 'foo4' ],
+										[ 'bar5', 'bar5' ],
+										[ 'bar6', 'bar6' ]
+									]
+								},
+								{
+									type: 'checkbox',
+									id: 'mrg-input3',
+									label: 'input 3'
+								}
+							]
+						}
+					],
+					onLoad: onLoadHandler
+				};
 			}
 		},
 
@@ -305,8 +394,9 @@
 		// @param {String} [options.elementId] Dialog element ID on any given tab page.
 		assertFocusedElement: function( options ) {
 			return function( dialog ) {
-				var actualFocusedElement = dialog._.focusList[ dialog._.currentFocusIndex ];
-				var expectedFocusedElement;
+				var actualFocusedElement = dialog._.focusList[ dialog._.currentFocusIndex ],
+					expectedFocusedElement,
+					actualFocusedRadioGroupIndex;
 
 				if ( options.buttonName ) {
 					expectedFocusedElement = dialog.getButton( options.buttonName );
@@ -314,12 +404,24 @@
 					expectedFocusedElement = dialog.getContentElement( options.tab, options.elementId );
 				}
 
-				if ( !expectedFocusedElement ) {
+				if ( options.radioGroupId ) {
+					actualFocusedRadioGroupIndex = CKEDITOR.tools.array.indexOf( actualFocusedElement._.children, function( radioGroupElement ) {
+						return radioGroupElement.getInputElement().$ === document.activeElement;
+					} );
+				}
+
+				if ( !expectedFocusedElement && !options.radioGroupId ) {
 					assert.fail( 'Expected focused element cannot be found in the dialog.' );
 				}
 
-				assert.areEqual( expectedFocusedElement, actualFocusedElement,
-					'Element: "' + expectedFocusedElement.id + '" should be equal to currently focused element: "' + actualFocusedElement.id + '".' );
+				if ( options.radioGroupId ) {
+					assert.areEqual( actualFocusedElement.id, options.radioGroupId, 'Focused radio groups are different' );
+					assert.areEqual( actualFocusedRadioGroupIndex, options.radioElementIndex, 'Focused radio group index are not equal' );
+				} else {
+					assert.areEqual( expectedFocusedElement, actualFocusedElement,
+						'Element: "' + expectedFocusedElement.id + '" should be equal to currently focused element: "' + actualFocusedElement.id + '".' );
+				}
+
 
 				return dialog;
 			};
@@ -384,7 +486,6 @@
 						}
 						reject( new Error( 'Focus hasn\'t change for at least 5 seconds' ) );
 					}, 5000 );
-
 					changeFocus( dialog, options );
 				} );
 			};
@@ -397,10 +498,14 @@
 			CKEDITOR.dialog.add( 'singlePageDialog', this.definitions.singlePage );
 			CKEDITOR.dialog.add( 'multiPageDialog', this.definitions.multiPage );
 			CKEDITOR.dialog.add( 'hiddenPageDialog', this.definitions.hiddenPage );
+			CKEDITOR.dialog.add( 'singleRadioGroupDialog', this.definitions.singleRadioGroup );
+			CKEDITOR.dialog.add( 'multipleRadioGroupDialog', this.definitions.multipleRadioGroup );
 
 			editor.addCommand( 'singlePageDialog', new CKEDITOR.dialogCommand( 'singlePageDialog' ) );
 			editor.addCommand( 'multiPageDialog', new CKEDITOR.dialogCommand( 'multiPageDialog' ) );
 			editor.addCommand( 'hiddenPageDialog', new CKEDITOR.dialogCommand( 'hiddenPageDialog' ) );
+			editor.addCommand( 'singleRadioGroupDialog', new CKEDITOR.dialogCommand( 'singleRadioGroupDialog' ) );
+			editor.addCommand( 'multipleRadioGroupDialog', new CKEDITOR.dialogCommand( 'multipleRadioGroupDialog' ) );
 		},
 
 		// Closes all opened dialogs.
@@ -412,6 +517,19 @@
 
 				dialog = CKEDITOR.dialog.getCurrent();
 			}
+		},
+
+		checkRadioGroupElement: function( options ) {
+			return function( dialog ) {
+				var radioGroupElement = getRadioGroupElement( dialog, options );
+				radioGroupElement.getElement().$.checked = true;
+
+				if ( options.focusElement ) {
+					radioGroupElement.getElement().$.focus();
+				}
+
+				return dialog;
+			};
 		}
 	};
 
diff --git a/tests/plugins/dialog/focus.js b/tests/plugins/dialog/focus.js
index 3ee105c0..a6b12058 100644
--- a/tests/plugins/dialog/focus.js
+++ b/tests/plugins/dialog/focus.js
@@ -19,7 +19,8 @@
 		assertFocusedElement = window.dialogTools.assertFocusedElement,
 		assertFocusedTab = window.dialogTools.assertFocusedTab,
 		focusElement = window.dialogTools.focusElement,
-		assertTabsAriaAttribute = window.dialogTools.assertTabsAriaAttribute;
+		assertTabsAriaAttribute = window.dialogTools.assertTabsAriaAttribute,
+		checkRadioGroupElement = window.dialogTools.checkRadioGroupElement;
 
 	bender.editor = {
 		config: {
@@ -290,6 +291,197 @@
 				.then( assertFocusedTab( 'hp-test2' ) )
 				.then( focusElement( { key: KEYS.ARROW_RIGHT } ) )
 				.then( assertFocusedTab( 'hp-test4' ) );
+		},
+
+		'test moving the focus from the input field to the first element of the radio group by pressing the TAB key when no elements from the radio group were selected': function() {
+			var bot = this.editorBot;
+
+			return bot.asyncDialog( 'singleRadioGroupDialog' )
+				.then( assertFocusedElement( {
+					tab: 'srg-test1',
+					elementId: 'srg-input1'
+				} ) )
+				.then( focusElement( { key: KEYS.TAB } ) )
+				.then( assertFocusedElement( {
+					tab: 'srg-test1',
+					radioGroupId: 'srg-radio1',
+					radioElementIndex: 0
+				} ) );
+		},
+
+		'test moving the focus to the last element of the radio group by pressing SHIFT + TAB key': function() {
+			var bot = this.editorBot;
+
+			return bot.asyncDialog( 'singleRadioGroupDialog' )
+				.then( assertFocusedElement( {
+					tab: 'srg-test1',
+					elementId: 'srg-input1'
+				} ) )
+				.then( focusElement( { key: KEYS.TAB, shiftKey: true } ) )
+				.then( focusElement( { key: KEYS.TAB, shiftKey: true } ) )
+				.then( focusElement( { key: KEYS.TAB, shiftKey: true } ) )
+				.then( focusElement( { key: KEYS.TAB, shiftKey: true } ) )
+				.then( assertFocusedElement( {
+					tab: 'srg-test1',
+					radioGroupId: 'srg-radio1',
+					radioElementIndex: 3
+				} ) );
+		},
+
+		'test moving the focus from input field to previously checked radio group element by pressing TAB key': function() {
+			var bot = this.editorBot;
+
+			return bot.asyncDialog( 'singleRadioGroupDialog' )
+				.then( assertFocusedElement( {
+					tab: 'srg-test1',
+					elementId: 'srg-input1'
+				} ) )
+				.then( checkRadioGroupElement( {
+					tab: 'srg-test1',
+					radioGroupId: 'srg-radio1',
+					radioElementIndex: 2
+				} ) )
+				.then( focusElement( { key: KEYS.TAB } ) )
+				.then( assertFocusedElement( {
+					tab: 'srg-test1',
+					radioGroupId: 'srg-radio1',
+					radioElementIndex: 2
+				} ) );
+		},
+
+		'test moving the focus from the last radio group item to the next dialog element by pressing the TAB key': function() {
+			var bot = this.editorBot;
+
+			if ( CKEDITOR.env.ie ) {
+				assert.ignore();
+			}
+
+			return bot.asyncDialog( 'singleRadioGroupDialog' )
+				.then( assertFocusedElement( {
+					tab: 'srg-test1',
+					elementId: 'srg-input1'
+				} ) )
+				.then( checkRadioGroupElement( {
+					tab: 'srg-test1',
+					radioGroupId: 'srg-radio1',
+					radioElementIndex: 3,
+					focusElement: true
+				} ) )
+				.then( focusElement( { key: KEYS.TAB } ) )
+				.then( assertFocusedElement( {
+					tab: 'srg-test1',
+					elementId: 'srg-input3'
+				} ) );
+		},
+
+		'test moving the focus from the first focused radio group element to the first element from the next radio group by pressing the TAB key': function() {
+			var bot = this.editorBot;
+
+			return bot.asyncDialog( 'multipleRadioGroupDialog' )
+				.then( assertFocusedElement( {
+					tab: 'mrg-test1',
+					elementId: 'mrg-input1'
+				} ) )
+				.then( focusElement( { key: KEYS.TAB } ) )
+				.then( assertFocusedElement( {
+					tab: 'mrg-test1',
+					radioGroupId: 'mrg-radio1',
+					radioElementIndex: 0
+				} ) )
+				.then( focusElement( { key: KEYS.TAB } ) )
+				.then( assertFocusedElement( {
+					tab: 'mrg-test1',
+					radioGroupId: 'mrg-radio2',
+					radioElementIndex: 0
+				} ) );
+		},
+
+		'test moving the focus from the first element of the second radio group to the last element from the previous radio group by pressing SHIFT + TAB key': function() {
+			var bot = this.editorBot;
+
+			if ( CKEDITOR.env.ie ) {
+				assert.ignore();
+			}
+
+			return bot.asyncDialog( 'multipleRadioGroupDialog' )
+				.then( assertFocusedElement( {
+					tab: 'mrg-test1',
+					elementId: 'mrg-input1'
+				} ) )
+				.then( checkRadioGroupElement( {
+					tab: 'mrg-test1',
+					radioGroupId: 'mrg-radio2',
+					radioElementIndex: 0,
+					focusElement: true
+				} ) )
+				.then( focusElement( { key: KEYS.TAB, shiftKey: true } ) )
+				.then( assertFocusedElement( {
+					tab: 'mrg-test1',
+					radioGroupId: 'mrg-radio1',
+					radioElementIndex: 2
+				} ) );
+		},
+
+		'test moving the focus from the previously checked radio group element to the next checked element from the next radio group by pressing TAB key': function() {
+			var bot = this.editorBot;
+
+			if ( CKEDITOR.env.ie ) {
+				assert.ignore();
+			}
+
+			return bot.asyncDialog( 'multipleRadioGroupDialog' )
+				.then( assertFocusedElement( {
+					tab: 'mrg-test1',
+					elementId: 'mrg-input1'
+				} ) )
+				.then( checkRadioGroupElement( {
+					tab: 'mrg-test1',
+					radioGroupId: 'mrg-radio2',
+					radioElementIndex: 2
+				} ) )
+				.then( checkRadioGroupElement( {
+					tab: 'mrg-test1',
+					radioGroupId: 'mrg-radio1',
+					radioElementIndex: 1,
+					focusElement: true
+				} ) )
+				.then( focusElement( { key: KEYS.TAB } ) )
+				.then( assertFocusedElement( {
+					tab: 'mrg-test1',
+					radioGroupId: 'mrg-radio2',
+					radioElementIndex: 2
+				} ) );
+		},
+
+		'test moving the focus from the checked radio group element to the previous checked element from the previously radio group by pressing SHIFT + TAB key': function() {
+			var bot = this.editorBot;
+
+			if ( CKEDITOR.env.ie ) {
+				assert.ignore();
+			}
+
+			return bot.asyncDialog( 'multipleRadioGroupDialog' )
+				.then( assertFocusedElement( {
+					tab: 'mrg-test1',
+					elementId: 'mrg-input1'
+				} ) )
+				.then( checkRadioGroupElement( {
+					tab: 'mrg-test1',
+					radioGroupId: 'mrg-radio1',
+					radioElementIndex: 2
+				} ) )
+				.then( checkRadioGroupElement( {
+					tab: 'mrg-test1',
+					radioGroupId: 'mrg-radio2',
+					radioElementIndex: 1,
+					focusElement: true
+				} ) )
+				.then( focusElement( { key: KEYS.TAB, shiftKey: true } ) )
+				.then( assertFocusedElement( {
+					tab: 'mrg-test1',
+					radioGroupId: 'mrg-radio1',
+					radioElementIndex: 2
+				} ) );
 		}
 	};
 
diff --git a/tests/plugins/dialog/manual/multipleradiogroup.html b/tests/plugins/dialog/manual/multipleradiogroup.html
new file mode 100644
index 00000000..ad07e5ba
--- /dev/null
+++ b/tests/plugins/dialog/manual/multipleradiogroup.html
@@ -0,0 +1,83 @@
+<button id="press">Open Dialog</button>
+<div id="editor"></div>
+<script>
+	if ( bender.tools.env.mobile ) {
+		bender.ignore();
+	}
+
+	var editor = CKEDITOR.replace( 'editor' );
+
+	CKEDITOR.once( 'instanceLoaded', function() {
+		CKEDITOR.dialog.add( 'testDialog', function() {
+			return {
+				title: 'Test dialog',
+				contents: [
+					{
+						id: 'tab1',
+						label: 'Tab one',
+						elements: [
+							{
+								type: 'html',
+								id: 'field11',
+								html: 'foo'
+							},
+							{
+								type: 'radio',
+								id: 'radio1',
+								items: [
+									[ 'foo1', 'foo1' ],
+									[ 'bar2', 'bar2' ],
+									[ 'bar3', 'bar3' ],
+									[ 'bar4', 'bar4' ]
+								]
+							},
+							{
+								type: 'radio',
+								id: 'radio2',
+								items: [
+									[ 'foo5', 'foo5' ],
+									[ 'bar6', 'bar6' ],
+									[ 'bar7', 'bar7' ],
+									[ 'bar8', 'bar8' ]
+								]
+							},
+							{
+								type: 'radio',
+								id: 'radio3',
+								items: [
+									[ 'foo9', 'foo9' ],
+									[ 'bar10', 'bar10' ],
+								]
+							},
+							{
+								type: 'radio',
+								id: 'radio4',
+								items: [
+									[ 'foo11', 'foo11' ],
+								]
+							},
+							{
+								type: 'button',
+								id: 'busy',
+								label: 'Set dialog busy'
+							},
+							{
+								type: 'html',
+								id: 'field12',
+								html: 'foo'
+							}
+						]
+					}
+				]
+			}
+		} );
+
+		editor.addCommand( 'testDialog', new CKEDITOR.dialogCommand( 'testDialog', {
+			tabId: 'tab1'
+		} ) );
+	} );
+
+	document.getElementById( 'press' ).onclick = function() {
+		editor.execCommand( 'testDialog' );
+	};
+</script>
diff --git a/tests/plugins/dialog/manual/multipleradiogroup.md b/tests/plugins/dialog/manual/multipleradiogroup.md
new file mode 100644
index 00000000..31c94188
--- /dev/null
+++ b/tests/plugins/dialog/manual/multipleradiogroup.md
@@ -0,0 +1,20 @@
+@bender-tags: 4.20.2, bug, 439
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, dialog
+
+1. Click `Open Dialog` button.
+2. Play with radio groups:
+
+Check:
+
+* Tab key will enter the radio group.
+
+* When Tab or Shift+Tab into a radio group, focus goes to the selected radio button. If none is selected, focus goes to the first radio button if Tab was pressed, or the last radio bottom if Shift+Tab was pressed.
+
+* When focus is on any radio button, Tab or Shift+Tab will exit the radio group.
+
+* Up Arrow and Left Arrow moves focus to the previous radio button in the group, and selects that button. If focus is on the first item, then focus wraps to last item.
+
+* Down Arrow and Right Arrow moves focus to the next radio button in the group, and selects that button. If focus is on the last item, then focus wraps to first item.
+
+* Space selects the radio button with focus and de-selects other radio buttons in the group.
diff --git a/tests/plugins/dialog/manual/multipleradiogroupwithtab.html b/tests/plugins/dialog/manual/multipleradiogroupwithtab.html
new file mode 100644
index 00000000..dc75c7b9
--- /dev/null
+++ b/tests/plugins/dialog/manual/multipleradiogroupwithtab.html
@@ -0,0 +1,138 @@
+<button id="press">Open Dialog</button>
+<div id="editor"></div>
+<script>
+	if ( bender.tools.env.mobile ) {
+		bender.ignore();
+	}
+
+	var editor = CKEDITOR.replace( 'editor' );
+
+	CKEDITOR.once( 'instanceLoaded', function() {
+		CKEDITOR.dialog.add( 'testDialog', function() {
+			return {
+				title: 'Test dialog',
+				contents: [
+					{
+						id: 'tab1',
+						label: 'Tab one',
+						elements: [
+							{
+								type: 'html',
+								id: 'field11',
+								html: 'foo'
+							},
+							{
+								type: 'radio',
+								id: 'radio1',
+								items: [
+									[ 'foo1_1', 'foo1_1' ],
+									[ 'bar1_2', 'bar1_2' ],
+									[ 'bar3', 'bar1_3' ],
+									[ 'bar1_4', 'bar1_4' ]
+								]
+							},
+							{
+								type: 'radio',
+								id: 'radio2',
+								items: [
+									[ 'foo1_5', 'foo1_5' ],
+									[ 'bar1_6', 'bar1_6' ],
+								]
+							},
+							{
+								type: 'radio',
+								id: 'radio3',
+								items: [
+									[ 'foo1_7', 'foo1_7' ],
+									[ 'foo1_8', 'foo1_8' ],
+									[ 'foo1_9', 'foo1_9' ],
+								]
+							},
+							{
+								type: 'button',
+								id: 'busy',
+								label: 'Set dialog busy'
+							},
+							{
+								type: 'html',
+								id: 'field12',
+								html: 'foo'
+							}
+						]
+					},
+					{
+						id: 'tab2',
+						label: 'Tab two',
+						elements: [
+							{
+								type: 'html',
+								id: 'field11',
+								html: 'foo2'
+							},
+							{
+								type: 'radio',
+								id: 'radio1',
+								items: [
+									[ 'foo2_1', 'foo2_1' ],
+									[ 'bar2_2', 'bar2_2' ],
+									[ 'bar2_3', 'bar2_3' ],
+									[ 'bar2_4', 'bar2_4' ]
+								]
+							},
+							{
+								type: 'radio',
+								id: 'radio2',
+								items: [
+									[ 'foo2_5', 'foo2_5' ],
+									[ 'bar2_6', 'bar2_6' ],
+								]
+							},
+							{
+								type: 'radio',
+								id: 'radio3',
+								items: [
+									[ 'foo2_7', 'foo2_7' ],
+									[ 'foo2_8', 'foo2_8' ],
+									[ 'foo2_9', 'foo2_9' ]
+								]
+							},
+							{
+								type: 'button',
+								id: 'busy',
+								label: 'Set dialog busy'
+							},
+							{
+								type: 'html',
+								id: 'field12',
+								html: 'foo2'
+							}
+						]
+					},
+					{
+						id: 'tab3',
+						label: 'tab three',
+						elements: [
+							{
+								type: 'radio',
+								id: 'radio1',
+								items: [
+									[ 'foo3_1', 'foo3_1' ],
+									[ 'foo3_2', 'foo3_2' ],
+									[ 'foo3_3', 'foo3_3' ],
+								]
+							}
+						]
+					}
+				]
+			}
+		} );
+
+		editor.addCommand( 'testDialog', new CKEDITOR.dialogCommand( 'testDialog', {
+			tabId: 'tab1'
+		} ) );
+	} );
+
+	document.getElementById( 'press' ).onclick = function() {
+		editor.execCommand( 'testDialog' );
+	};
+</script>
diff --git a/tests/plugins/dialog/manual/multipleradiogroupwithtab.md b/tests/plugins/dialog/manual/multipleradiogroupwithtab.md
new file mode 100644
index 00000000..31c94188
--- /dev/null
+++ b/tests/plugins/dialog/manual/multipleradiogroupwithtab.md
@@ -0,0 +1,20 @@
+@bender-tags: 4.20.2, bug, 439
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, dialog
+
+1. Click `Open Dialog` button.
+2. Play with radio groups:
+
+Check:
+
+* Tab key will enter the radio group.
+
+* When Tab or Shift+Tab into a radio group, focus goes to the selected radio button. If none is selected, focus goes to the first radio button if Tab was pressed, or the last radio bottom if Shift+Tab was pressed.
+
+* When focus is on any radio button, Tab or Shift+Tab will exit the radio group.
+
+* Up Arrow and Left Arrow moves focus to the previous radio button in the group, and selects that button. If focus is on the first item, then focus wraps to last item.
+
+* Down Arrow and Right Arrow moves focus to the next radio button in the group, and selects that button. If focus is on the last item, then focus wraps to first item.
+
+* Space selects the radio button with focus and de-selects other radio buttons in the group.
diff --git a/tests/plugins/dialog/manual/parentdialogzindex.html b/tests/plugins/dialog/manual/parentdialogzindex.html
new file mode 100644
index 00000000..fdf5c001
--- /dev/null
+++ b/tests/plugins/dialog/manual/parentdialogzindex.html
@@ -0,0 +1,12 @@
+<div id="editor">
+	<table border="1">
+		<tr>
+			<td>Cell</td>
+		</tr>
+	</table>
+</div>
+
+<script>
+	CKEDITOR.replace( 'editor' );
+	CKEDITOR.config.baseFloatZIndex = 10000001;
+</script>
diff --git a/tests/plugins/dialog/manual/parentdialogzindex.md b/tests/plugins/dialog/manual/parentdialogzindex.md
new file mode 100644
index 00000000..4d758254
--- /dev/null
+++ b/tests/plugins/dialog/manual/parentdialogzindex.md
@@ -0,0 +1,15 @@
+@bender-tags: 4.20.1, bug, 5365
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, dialog, table, tabletools, colordialog
+
+1. Right click the table cell and choose "Cell" -> "Cell properties" from the context menu.
+2. Click the 'Choose' button for the background color.
+3. Pick any color and click Ok.
+
+## Expected:
+
+* The color is picked and the color picker closes correctly
+
+## Unexpected
+
+- The color is picked but the color picker overlay stays which makes the app unusable.
diff --git a/tests/plugins/dialog/manual/radiogroupfocus.html b/tests/plugins/dialog/manual/radiogroupfocus.html
new file mode 100644
index 00000000..11f67450
--- /dev/null
+++ b/tests/plugins/dialog/manual/radiogroupfocus.html
@@ -0,0 +1,8 @@
+<div id="editor"></div>
+<script>
+	if ( bender.tools.env.mobile ) {
+		bender.ignore();
+	}
+
+	CKEDITOR.replace( 'editor' );
+</script>
diff --git a/tests/plugins/dialog/manual/radiogroupfocus.md b/tests/plugins/dialog/manual/radiogroupfocus.md
new file mode 100644
index 00000000..7df6295a
--- /dev/null
+++ b/tests/plugins/dialog/manual/radiogroupfocus.md
@@ -0,0 +1,17 @@
+@bender-tags: 4.20.2, bug, 439
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, image2
+
+1. Open image dialog.
+2. Move focus to `Alignment` radio group.
+3. Pres `Tab` again.
+
+**Expected:** Focus was moved outside the radio group and `Captioned image` checkbox is focused.
+
+**Unexpected:** Focus is still in the radiogroup and the `Left` item is focused.
+
+4. Having focus on the `Captioned image` checkbox press `Shift+Tab` key.
+
+**Expected:** Focus was moved to the previously selected radio button.
+
+**Unexpected:** Focus was moved to the last element of the radio group.
diff --git a/tests/plugins/dialog/positioning.js b/tests/plugins/dialog/positioning.js
index e0c7d254..6cce239d 100644
--- a/tests/plugins/dialog/positioning.js
+++ b/tests/plugins/dialog/positioning.js
@@ -248,6 +248,37 @@
 					assert.areEqual( 'none', cover.getStyle( 'display' ), 'Dialog cover should not be visible' );
 				} );
 			} );
+		},
+
+		// (#5365)
+		'test dialog cover is placed under the parent dialog after closing the child dialog when the config.baseFloatZIndex is set': function() {
+			// This number needs to be greater than 1010 as such a value is a default z-index
+			// for dialogs in the dialog.css file.
+			var baseFloatZIndex = 12000;
+
+			bender.editorBot.create( {
+				name: 'test_editor_baseFloatZIndex',
+				config: {
+					extraPlugins: [ 'link', 'colordialog' ],
+					baseFloatZIndex: baseFloatZIndex
+				}
+			}, function( editorBot ) {
+				editorBot.dialog( 'link', function( parentDialog ) {
+					editorBot.dialog( 'colordialog', function( dialog ) {
+						var cover = CKEDITOR.document.findOne( '.cke_dialog_background_cover' ),
+							parentDialogContainer = parentDialog._.element,
+							coverZIndex,
+							parentDialogContainerZIndex;
+
+						dialog.getButton( 'cancel' ).click();
+
+						coverZIndex = parseInt( cover.getStyle( 'z-index' ), 10 );
+						parentDialogContainerZIndex = parseInt( parentDialogContainer.getStyle( 'z-index' ), 10 );
+
+						assert.isTrue( parentDialogContainerZIndex > coverZIndex );
+					} );
+				} );
+			} );
 		}
 	} );
 
diff --git a/tests/plugins/easyimage/manual/changeevent.html b/tests/plugins/easyimage/manual/changeevent.html
new file mode 100644
index 00000000..550d8367
--- /dev/null
+++ b/tests/plugins/easyimage/manual/changeevent.html
@@ -0,0 +1,29 @@
+<p>Note, this test uses a real Cloud Service connection, so you might want to be on-line 😉.</p>
+
+<div id="editor">
+	<p>Drop image here:</p>
+</div>
+
+<div id="changes"></div>
+
+<script>
+	( function() {
+		bender.tools.ignoreUnsupportedEnvironment( 'easyimage' );
+
+		var changeLog = CKEDITOR.document.getById( 'changes' ),
+			i = 0;
+
+		CKEDITOR.replace( 'editor', {
+			cloudServices_uploadUrl: easyImageTools.CLOUD_SERVICES_UPLOAD_GATEWAY,
+			cloudServices_tokenUrl: easyImageTools.CLOUD_SERVICES_TOKEN_URL,
+			on: {
+				change: function( evt ) {
+					var change = CKEDITOR.dom.element.createFromHtml( '<p>Change #' + ( ++i ) + '</p>' );
+
+					changeLog.append( change );
+					console.log( 'change ' + i, evt.editor.getData() );
+				}
+			}
+		} );
+	} ) ();
+</script>
diff --git a/tests/plugins/easyimage/manual/changeevent.md b/tests/plugins/easyimage/manual/changeevent.md
new file mode 100644
index 00000000..8ff77ad8
--- /dev/null
+++ b/tests/plugins/easyimage/manual/changeevent.md
@@ -0,0 +1,12 @@
+@bender-tags: 4.20.2, bug, 5414
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, easyimage, undo
+@bender-include: ../_helpers/tools.js
+
+1. Drop image into the editor.
+1. Wait for its upload.
+
+**Expected** There are two change events noted under the editor.
+**Unexpected** There is only one change event noted under the editor.
+
+**Note** You can check editor's data for each `change` event in the browser console.
diff --git a/tests/plugins/easyimage/uploadintegrations.js b/tests/plugins/easyimage/uploadintegrations.js
index 749e6f34..d3efdf95 100644
--- a/tests/plugins/easyimage/uploadintegrations.js
+++ b/tests/plugins/easyimage/uploadintegrations.js
@@ -218,6 +218,42 @@
 				wait();
 			},
 
+			// (#5414)
+			'test change event is fired after the upload finishes': function() {
+				var editor = this.editor,
+					listeners = this.listeners;
+
+				listeners.push( editor.widgets.on( 'instanceCreated', function( evt ) {
+					var widget = evt.data,
+						isUploaded = false;
+
+					if ( widget.name == 'easyimage' ) {
+						widget.once( 'uploadDone', function() {
+							isUploaded = true;
+						} );
+
+						listeners.push( editor.on( 'change', function( evt ) {
+							if ( !isUploaded ) {
+								return;
+							}
+
+							resume( function() {
+								var editorData = evt.editor.getData(),
+									// To check if the change contains correct upload data,
+									// we can simply check the existence of srcset attribute with a part of the path.
+									containsUploadedImageSrc = editorData.indexOf( 'srcset="/tests/' ) !== -1;
+
+								assert.isTrue( containsUploadedImageSrc );
+							} );
+						} ) );
+					}
+				} ) );
+
+				pasteFiles( editor, [ bender.tools.getTestPngFile() ], null, { type: 'auto', method: 'paste' } );
+
+				wait();
+			},
+
 			'test pasting mixed HTML content': function() {
 				var editor = this.editor,
 					widgets;
diff --git a/tests/plugins/emoji/basic.js b/tests/plugins/emoji/basic.js
index 0074a067..92379084 100644
--- a/tests/plugins/emoji/basic.js
+++ b/tests/plugins/emoji/basic.js
@@ -239,6 +239,24 @@
 
 				assert.areEqual( element.getHtml(), '<span>😻</span> smiling_cat_face_with_heart-eyes' );
 			} );
+		},
+
+		// (#2008)
+		'test adding emoji via autocomplete adds following space after accepting match when followingSpace is ON': function( editor, bot ) {
+			emojiTools.runAfterInstanceReady( editor, bot, function( editor, bot ) {
+				editor._.emoji.autocomplete.followingSpace = true;
+
+				var editable = editor.editable();
+
+				bot.setHtmlWithSelection( '<p>:smiling_cat_face_with_heart-eyes^</p>' );
+				editable.fire( 'keyup', new CKEDITOR.dom.event( {} ) );
+				editable.fire( 'keydown', new CKEDITOR.dom.event( { keyCode: 13 } ) );
+
+				assert.beautified.html( '<p>😻&nbsp;</p>', editable.getData() );
+
+				editor._.emoji.autocomplete.followingSpace = false;
+			} );
+			emojiTools.clearAutocompleteModel( editor._.emoji.autocomplete );
 		}
 	};
 
diff --git a/tests/plugins/emoji/manual/followingspace.html b/tests/plugins/emoji/manual/followingspace.html
new file mode 100644
index 00000000..17d823ed
--- /dev/null
+++ b/tests/plugins/emoji/manual/followingspace.html
@@ -0,0 +1,9 @@
+<div id="editor"></div>
+
+<script>
+	bender.tools.ignoreUnsupportedEnvironment( 'emoji' );
+
+	CKEDITOR.replace( 'editor', {
+		emoji_followingSpace: true
+	} );
+</script>
diff --git a/tests/plugins/emoji/manual/followingspace.md b/tests/plugins/emoji/manual/followingspace.md
new file mode 100644
index 00000000..b8bd35ee
--- /dev/null
+++ b/tests/plugins/emoji/manual/followingspace.md
@@ -0,0 +1,15 @@
+@bender-tags: 4.20.0, feature, 2008
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, autocomplete, textmatch, emoji
+
+1. Place cursor on the editable.
+2. Type `:bug`.
+3. Press enter.
+
+## Expected
+
+Space has been added after the insertion `🐛 ^`.
+
+## Unexpected
+
+Space has not been added after the insertion `🐛^`.
diff --git a/tests/plugins/entities/entities.js b/tests/plugins/entities/entities.js
index ab66c2b7..6f9ac13a 100644
--- a/tests/plugins/entities/entities.js
+++ b/tests/plugins/entities/entities.js
@@ -82,5 +82,204 @@ bender.test( {
 		bot.setData( inputHtml, function() {
 			assert.areEqual( expectedHtml, editor.getData() );
 		} );
+	},
+
+	// (#4941)
+	'test entitles_processNumerical correct converts HTML entity to a numerical HTML entity': function() {
+		if ( CKEDITOR.env.ie ) {
+			assert.ignore();
+		}
+
+		var inputHtml = '<p>👍😄😍💗</p>',
+			expectedHtml = '<p>&#128077;&#128516;&#128525;&#128151;</p>',
+			editor = this.editor,
+			bot = this.editorBot;
+
+		bot.setData( inputHtml, function() {
+			assert.areEqual( expectedHtml, editor.getData() );
+		} );
+	},
+
+	'test entitles_processNumerical="true" and entities_greek="false" converts greek letters to numeric HTML entities': function() {
+		bender.editorBot.create( {
+			name: 'entities_true2',
+			config: {
+				entities_processNumerical: true,
+				entities_greek: false
+			}
+		}, function( bot ) {
+			var inputHtml = '<p>αβγδεζηθικλμνξοπρστυφχψω</p>',
+				expectedHtml =  '<p>&#945;&#946;&#947;&#948;&#949;&#950;&#951;&#952;&#953;&#954;&#955;&#956;&#957;&#958;&#959;&#960;&#961;&#963;&#964;&#965;&#966;&#967;&#968;&#969;</p>',
+				editor = bot.editor;
+
+			bot.setData( inputHtml, function() {
+				assert.areEqual( expectedHtml, editor.getData() );
+			} );
+		} );
+	},
+
+	'test entitles_processNumerical="true" and entities_latin="false" converts some of latin letters entities to numeric HTML entities': function() {
+		bender.editorBot.create( {
+			name: 'entities_true3',
+			config: {
+				entities_processNumerical: true,
+				entities_latin: false
+			}
+		}, function( bot ) {
+			var inputHtml = '<p>&Agrave;&Aacute;&Icirc;&Iuml;&ETH;',
+				expectedHtml =  '<p>&#192;&#193;&#206;&#207;&#208;</p>',
+				editor = bot.editor;
+
+			bot.setData( inputHtml, function() {
+				assert.areEqual( expectedHtml, editor.getData() );
+			} );
+		} );
+	},
+
+	'test entitles_processNumerical="force" converts entities to numerical HTML entity': function() {
+		bender.editorBot.create( {
+			name: 'entities_force',
+			config: {
+				entities_processNumerical: 'force'
+			}
+		}, function( bot ) {
+			var inputHtml = '<p>&nbsp; &gt; &lt; &amp; &quot;</p>',
+				expectedHtml = '<p>&#160; &#62; &#60; &#38; &#34;</p>',
+				editor = bot.editor;
+
+			bot.setData( inputHtml, function() {
+				assert.areEqual( expectedHtml, editor.getData() );
+			} );
+		} );
+	},
+
+	'test entitles_processNumerical="force" converts greek letters to numeric HTML entities': function() {
+		bender.editorBot.create( {
+			name: 'entities_force2',
+			config: {
+				entities_processNumerical: 'force',
+				entities_greek: true
+			}
+		}, function( bot ) {
+			var inputHtml = '<p>αβγδεζηθικλμνξοπρστυφχψω</p>',
+				expectedHtml =  '<p>&#945;&#946;&#947;&#948;&#949;&#950;&#951;&#952;&#953;&#954;&#955;&#956;&#957;&#958;&#959;&#960;&#961;&#963;&#964;&#965;&#966;&#967;&#968;&#969;</p>',
+				editor = bot.editor;
+
+			bot.setData( inputHtml, function() {
+				assert.areEqual( expectedHtml, editor.getData() );
+			} );
+		} );
+	},
+
+	'test entitles_processNumerical="force" converts latin entities to numerical HTML entity': function() {
+		bender.editorBot.create( {
+			name: 'entities_force3',
+			config: {
+				entities_processNumerical: 'force',
+				entities_latin: true
+			}
+		}, function( bot ) {
+			var inputHtml = '<p>&Agrave;&Aacute;&Icirc;&Iuml;&ETH;</p>',
+				expectedHtml =  '<p>&#192;&#193;&#206;&#207;&#208;</p>',
+				editor = bot.editor;
+
+			bot.setData( inputHtml, function() {
+				assert.areEqual( expectedHtml, editor.getData() );
+			} );
+		} );
+	},
+
+	'test entitles_processNumerical="force" with filters off converts entities to numerical HTML entity': function() {
+		bender.editorBot.create( {
+			name: 'entities_force4',
+			config: {
+				entities_processNumerical: 'force',
+				allowedContent: true
+			}
+		}, function( bot ) {
+			var inputHtml = '<p>&quot;&lt;&gt;&amp;</p>',
+				expectedHtml =  '<p>&#34;&#60;&#62;&#38;</p>',
+				editor = bot.editor;
+
+			bot.setData( inputHtml, function() {
+				assert.areEqual( expectedHtml, editor.getData() );
+			} );
+		} );
+	},
+
+	'test entitles_processNumerical="force" with removed filters should leave entities untouched': function() {
+		bender.editorBot.create( {
+			name: 'entities_force5',
+			config: {
+				entities_processNumerical: 'force',
+				allowedContent: true,
+				on: {
+					instanceReady: function() {
+						this.dataProcessor.htmlFilter = {};
+					}
+				}
+			}
+		}, function( bot ) {
+			var inputHtml = '<p>&lt;&gt;&amp;</p>',
+				expectedHtml = '<p>&lt;&gt;&amp;</p>',
+				editor = bot.editor;
+
+			bot.setData( inputHtml, function() {
+				assert.areEqual( expectedHtml, editor.getData() );
+			} );
+		} );
+	},
+
+	'test entities="false" and entities_processNumerical="force" converts entities to numerical HTML entity': function() {
+		bender.editorBot.create( {
+			name: 'entities_1',
+			config: {
+				entities_processNumerical: 'force',
+				entities: false
+			}
+		}, function( bot ) {
+			var inputHtml = '<p>&lt;&gt;&amp;</p>',
+				expectedHtml = '<p>&#60;&#62;&#38;</p>',
+				editor = bot.editor;
+
+			bot.setData( inputHtml, function() {
+				assert.areEqual( expectedHtml, editor.getData() );
+			} );
+		} );
+	},
+
+	'test entities="false" leaves entities untouched': function() {
+		bender.editorBot.create( {
+			name: 'entities_2',
+			config: {
+				entities: false
+			}
+		}, function( bot ) {
+			var inputHtml = '<p>&lt;&gt;&amp;</p>',
+				expectedHtml = '<p>&lt;&gt;&amp;</p>',
+				editor = bot.editor;
+
+			bot.setData( inputHtml, function() {
+				assert.areEqual( expectedHtml, editor.getData() );
+			} );
+		} );
+	},
+
+	'test entities="true" and entities_processNumerical="false" leaves entities untouched': function() {
+		bender.editorBot.create( {
+			name: 'entities_3',
+			config: {
+				entities_processNumerical: false,
+				entities: true
+			}
+		}, function( bot ) {
+			var inputHtml = '<p>&lt;&gt;&amp;</p>',
+				expectedHtml = '<p>&lt;&gt;&amp;</p>',
+				editor = bot.editor;
+
+			bot.setData( inputHtml, function() {
+				assert.areEqual( expectedHtml, editor.getData() );
+			} );
+		} );
 	}
 } );
diff --git a/tests/plugins/entities/manual/encodeentities.html b/tests/plugins/entities/manual/encodeentities.html
new file mode 100644
index 00000000..3ba14403
--- /dev/null
+++ b/tests/plugins/entities/manual/encodeentities.html
@@ -0,0 +1,14 @@
+<div id="editor">
+	<p>👍</p>
+</div>
+
+<script>
+	if ( CKEDITOR.env.ie ) {
+		bender.ignore();
+	}
+
+	CKEDITOR.replace( 'editor', {
+		entities_processNumerical: true,
+		lang: 'en'
+	} );
+</script>
diff --git a/tests/plugins/entities/manual/encodeentities.md b/tests/plugins/entities/manual/encodeentities.md
new file mode 100644
index 00000000..adc528e4
--- /dev/null
+++ b/tests/plugins/entities/manual/encodeentities.md
@@ -0,0 +1,16 @@
+@bender-tags: bug, 4.20.0, 4941
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, entities, sourcearea
+
+1. Open the source mode.
+
+**Expected** There is only one HTML entity `&#128077;`.
+
+**Unexpected** Two HTML entities appears: `&#55357;&#56397;`.
+
+2. Close source area.
+
+**Expected** 👍  entity is preserved.
+
+**Unexpected** A surrogate pair appears ��.
+
diff --git a/tests/plugins/entities/manual/entitiesprocessnumericalforce.html b/tests/plugins/entities/manual/entitiesprocessnumericalforce.html
new file mode 100644
index 00000000..0dbba8a9
--- /dev/null
+++ b/tests/plugins/entities/manual/entitiesprocessnumericalforce.html
@@ -0,0 +1,10 @@
+<div id="editor">
+	<p>&nbsp; &gt; &lt; &amp; &quot;</p>
+</div>
+
+<script>
+	CKEDITOR.replace( 'editor', {
+		entities_processNumerical: 'force',
+		lang: 'en'
+	} );
+</script>
diff --git a/tests/plugins/entities/manual/entitiesprocessnumericalforce.md b/tests/plugins/entities/manual/entitiesprocessnumericalforce.md
new file mode 100644
index 00000000..405f5a7a
--- /dev/null
+++ b/tests/plugins/entities/manual/entitiesprocessnumericalforce.md
@@ -0,0 +1,10 @@
+@bender-tags: bug, 4.20.0, 4941
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, entities, sourcearea
+
+1. Open the source mode.
+
+**Expected** Named entities was converted to a numerical HTML entities: `&#160; &#62; &#60; &#38; &#34;`.
+
+**Unexpected** Entities was not converted: `&nbsp; &gt; &lt; &amp; &quot;`.
+
diff --git a/tests/plugins/image2/editing.js b/tests/plugins/image2/editing.js
index 4acab14f..4af966d4 100644
--- a/tests/plugins/image2/editing.js
+++ b/tests/plugins/image2/editing.js
@@ -23,7 +23,9 @@
 			'</figure>',
 		imgs = [
 			{ url: '%BASE_PATH%_assets/logo.png', width: '163', height: '61' },
-			{ url: '%BASE_PATH%_assets/large.jpg', width: '1008', height: '550' }
+			{ url: '%BASE_PATH%_assets/large.jpg', width: '1008', height: '550' },
+			{ url: '%BASE_PATH%_assets/lena.jpg', width: '200', height: '200' },
+			{ url: 'nonexistent.png' }
 		],
 		downloadImage = bender.tools.downloadImage;
 
@@ -33,6 +35,12 @@
 	}
 
 	bender.test( {
+		tearDown: function() {
+			if ( CKEDITOR.dialog._.currentTop ) {
+				CKEDITOR.dialog._.currentTop.hide();
+			}
+		},
+
 		'test edit inline widget with global command': function() {
 
 			assertWidgetDialog( this.editorBot, 'image', widgetsHtml, 'x', {
@@ -240,6 +248,177 @@
 						wait();
 					}
 
+					wait();
+				} );
+			} );
+		},
+
+		// (#5219)
+		'test "Lock ratio" should be locked by default': function() {
+			bender.editorBot.create( {
+				name: 'editor_defaultlockratio',
+				creator: 'inline',
+				config: {
+					extraPlugins: 'image2'
+				}
+			},
+			function( bot ) {
+				bot.dialog( 'image', function( dialog ) {
+					var lockBtn = bot.editor.document.getById( dialog.getContentElement( 'info', 'lock' ).domId ).find( '.cke_btn_locked' ).getItem( 0 );
+
+					assert.isFalse( lockBtn.hasClass( 'cke_btn_unlocked' ), 'Lock ratio was not locked' );
+				} );
+			} );
+		},
+
+		// (#5219)
+		'test "Lock ratio" should be unlocked if config.image2_defaultLockRatio is set to false': function() {
+			bender.editorBot.create( {
+				name: 'editor_defaultlockratio_false',
+				creator: 'inline',
+				config: {
+					extraPlugins: 'image2',
+					image2_defaultLockRatio: false
+				}
+			},
+			function( bot ) {
+				bot.dialog( 'image', function( dialog ) {
+					var lockBtn = bot.editor.document.getById( dialog.getContentElement( 'info', 'lock' ).domId ).find( '.cke_btn_locked' ).getItem( 0 );
+
+					assert.isTrue( lockBtn.hasClass( 'cke_btn_unlocked' ), 'Lock ratio was not unlocked' );
+				} );
+			} );
+		},
+
+		// (#5219)
+		'test "Lock ratio" should be locked if config.image2_defaultLockRatio is set to true': function() {
+			bender.editorBot.create( {
+				name: 'editor_defaultlockratio_true',
+				creator: 'inline',
+				config: {
+					extraPlugins: 'image2',
+					image2_defaultLockRatio: true
+				}
+			},
+			function( bot ) {
+				bot.dialog( 'image', function( dialog ) {
+					var lockBtn = bot.editor.document.getById( dialog.getContentElement( 'info', 'lock' ).domId ).find( '.cke_btn_locked' ).getItem( 0 );
+
+					assert.isFalse( lockBtn.hasClass( 'cke_btn_unlocked' ), 'Lock ratio was not locked' );
+				} );
+			} );
+		},
+
+		// (#5219)
+		'test "Lock ratio" should not change after loading image (defaultLockRatio set)': function() {
+			bender.editorBot.create( {
+				name: 'editor_defaultlockratio_imageloaded',
+				creator: 'inline',
+				config: {
+					extraPlugins: 'image2',
+					image2_defaultLockRatio: false
+				}
+			},
+			function( bot ) {
+				bot.dialog( 'image', function( dialog ) {
+					var lockBtn = bot.editor.document.getById( dialog.getContentElement( 'info', 'lock' ).domId ).find( '.cke_btn_locked' ).getItem( 0 ),
+						lenaImg = imgs[ 2 ];
+
+					dialog.setValueOf( 'info', 'src', lenaImg.url );
+					downloadImage( lenaImg.url, onDownload );
+
+					function onDownload() {
+						resume( function() {
+							assert.isTrue( lockBtn.hasClass( 'cke_btn_unlocked' ), 'Lock ratio was not unlocked' );
+						} );
+					}
+
+					wait();
+				} );
+			} );
+		},
+
+		// (#5219)
+		'test "Lock ratio" should reflect image\'s aspect ratio (defaultLockRatio omitted, correct image)': function() {
+			bender.editorBot.create( {
+				name: 'editor_defaultlockratio_imageloaded_default_correct',
+				creator: 'inline',
+				config: {
+					extraPlugins: 'image2'
+				}
+			},
+			function( bot ) {
+				bot.dialog( 'image', function( dialog ) {
+					var lockBtn = bot.editor.document.getById( dialog.getContentElement( 'info', 'lock' ).domId ).find( '.cke_btn_locked' ).getItem( 0 ),
+						lenaImg = imgs[ 2 ];
+
+					dialog.setValueOf( 'info', 'src', lenaImg.url );
+					downloadImage( lenaImg.url, onDownload );
+
+					function onDownload() {
+						resume( function() {
+							assert.isFalse( lockBtn.hasClass( 'cke_btn_unlocked' ), 'Lock ratio was unlocked' );
+						} );
+					}
+
+					wait();
+				} );
+			} );
+		},
+
+		// (#5219)
+		'test "Lock ratio" should reflect image\'s aspect ratio (defaultLockRatio omitted, incorrect image)': function() {
+			bender.editorBot.create( {
+				name: 'editor_defaultlockratio_imageloaded_default_incorrect',
+				creator: 'inline',
+				config: {
+					extraPlugins: 'image2'
+				}
+			},
+			function( bot ) {
+				bot.dialog( 'image', function( dialog ) {
+					var lockBtn = bot.editor.document.getById( dialog.getContentElement( 'info', 'lock' ).domId ).find( '.cke_btn_locked' ).getItem( 0 ),
+						nonExistentImg = imgs[ 3 ];
+
+					dialog.setValueOf( 'info', 'src', nonExistentImg.url );
+					downloadImage( nonExistentImg.url, onDownload );
+
+					function onDownload() {
+						resume( function() {
+							assert.isTrue( lockBtn.hasClass( 'cke_btn_unlocked' ), 'Lock ratio was locked' );
+						} );
+					}
+
+					wait();
+				} );
+			} );
+		},
+
+		// (#5219)
+		'test "Lock ratio" should not change if the button was clicked by the user': function() {
+			bender.editorBot.create( {
+				name: 'editor_lockratio_click',
+				creator: 'inline',
+				config: {
+					extraPlugins: 'image2'
+				}
+			},
+			function( bot ) {
+				bot.dialog( 'image', function( dialog ) {
+					var lockBtn = bot.editor.document.getById( dialog.getContentElement( 'info', 'lock' ).domId ).find( '.cke_btn_locked' ).getItem( 0 ),
+						lenaImg = imgs[ 2 ];
+
+					lockBtn.$.click();
+
+					dialog.setValueOf( 'info', 'src', lenaImg.url );
+					downloadImage( lenaImg.url, onDownload );
+
+					function onDownload() {
+						resume( function() {
+							assert.isTrue( lockBtn.hasClass( 'cke_btn_unlocked' ), 'Lock ratio was locked' );
+						} );
+					}
+
 					wait();
 				} );
 			} );
diff --git a/tests/plugins/image2/manual/aspectratio.md b/tests/plugins/image2/manual/aspectratio.md
index f3db79a6..5e38a04a 100644
--- a/tests/plugins/image2/manual/aspectratio.md
+++ b/tests/plugins/image2/manual/aspectratio.md
@@ -1,4 +1,4 @@
-@bender-tags: 4.10.1, bug, 1348
+@bender-tags: 4.10.1, bug, 1348, 4.20.0, 5219
 @bender-ui: collapsed
 @bender-ckeditor-plugins: wysiwygarea, toolbar, image2
 
diff --git a/tests/plugins/image2/manual/defaultlockratiofalse.html b/tests/plugins/image2/manual/defaultlockratiofalse.html
new file mode 100644
index 00000000..1448b000
--- /dev/null
+++ b/tests/plugins/image2/manual/defaultlockratiofalse.html
@@ -0,0 +1,30 @@
+<h2><code>iframe</code>-based editor</h2>
+<div id="iframe">
+	<p>[Insert image here]</p>
+</div>
+
+<h2><code>div</code>-based editor</h2>
+<div id="div">
+	<p>[Insert image here]</p>
+</div>
+
+<h2>Inline editor</h2>
+<div id="inline" contenteditable="true">
+	<p>[Insert image here]</p>
+</div>
+
+<script>
+	( function() {
+		var defaultConfig = {
+			language: 'en',
+			image2_defaultLockRatio: false
+		};
+
+		CKEDITOR.replace( 'iframe', defaultConfig );
+		CKEDITOR.replace( 'div', CKEDITOR.tools.object.merge( defaultConfig, {
+			extraPlugins: 'divarea'
+		} ) );
+		CKEDITOR.inline( 'inline', defaultConfig );
+	} )();
+
+</script>
diff --git a/tests/plugins/image2/manual/defaultlockratiofalse.md b/tests/plugins/image2/manual/defaultlockratiofalse.md
new file mode 100644
index 00000000..87e916fe
--- /dev/null
+++ b/tests/plugins/image2/manual/defaultlockratiofalse.md
@@ -0,0 +1,21 @@
+@bender-tags: 4.20.0, feature, 5219
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, image2, floatingspace
+
+1. Move cursor to the "[Insert image here]" region and click the image button in the toolbar.
+
+	**Expected** The "Lock ratio" is unlocked.
+
+	**Unexpected** The "Lock ratio" is locked.
+1. Paste any image URL (e.g. `%BASE_PATH%_assets/logo.png`).
+
+	**Expected** The "Lock ratio" is unlocked.
+
+	**Unexpected** The "Lock ratio" is locked.
+1. Insert the image into the editor.
+1. Double click it to open the dialog.
+
+	**Expected** The "Lock ratio" is unlocked.
+
+	**Unexpected** The "Lock ratio" is locked.
+1. Repeat the procedure for all editors.
diff --git a/tests/plugins/image2/manual/defaultlockratiotrue.html b/tests/plugins/image2/manual/defaultlockratiotrue.html
new file mode 100644
index 00000000..622d09db
--- /dev/null
+++ b/tests/plugins/image2/manual/defaultlockratiotrue.html
@@ -0,0 +1,30 @@
+<h2><code>iframe</code>-based editor</h2>
+<div id="iframe">
+	<p>[Insert image here]</p>
+</div>
+
+<h2><code>div</code>-based editor</h2>
+<div id="div">
+	<p>[Insert image here]</p>
+</div>
+
+<h2>Inline editor</h2>
+<div id="inline" contenteditable="true">
+	<p>[Insert image here]</p>
+</div>
+
+<script>
+	( function() {
+		var defaultConfig = {
+			language: 'en',
+			image2_defaultLockRatio: true
+		};
+
+		CKEDITOR.replace( 'iframe', defaultConfig );
+		CKEDITOR.replace( 'div', CKEDITOR.tools.object.merge( defaultConfig, {
+			extraPlugins: 'divarea'
+		} ) );
+		CKEDITOR.inline( 'inline', defaultConfig );
+	} )();
+
+</script>
diff --git a/tests/plugins/image2/manual/defaultlockratiotrue.md b/tests/plugins/image2/manual/defaultlockratiotrue.md
new file mode 100644
index 00000000..2522107b
--- /dev/null
+++ b/tests/plugins/image2/manual/defaultlockratiotrue.md
@@ -0,0 +1,23 @@
+@bender-tags: 4.20.0, feature, 5219
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, image2, floatingspace
+
+1. Move cursor to the "[Insert image here]" region and click the image button in the toolbar.
+
+	**Expected** The "Lock ratio" is locked.
+
+	**Unexpected** The "Lock ratio" is unlocked.
+1. Paste any invalid image URL (e.g. `%BASE_PATH%_assets/sample.txt`).
+
+	**Expected** The "Lock ratio" is locked.
+
+	**Unexpected** The "Lock ratio" is unlocked.
+1. Insert the image into the editor.
+
+	**Note** You could also add some alternative text to make the image more visible to make next step easier.
+1. Double click it to open the dialog.
+
+	**Expected** The "Lock ratio" is locked.
+
+	**Unexpected** The "Lock ratio" is unlocked.
+1. Repeat the procedure for all editors.
diff --git a/tests/plugins/image2/manual/defaultlockratioundefined.html b/tests/plugins/image2/manual/defaultlockratioundefined.html
new file mode 100644
index 00000000..db94641c
--- /dev/null
+++ b/tests/plugins/image2/manual/defaultlockratioundefined.html
@@ -0,0 +1,32 @@
+<h2><code>iframe</code>-based editor</h2>
+<div id="iframe">
+	<p>[Insert valid image here]</p>
+	<p>[Insert invalid image here]</p>
+</div>
+
+<h2><code>div</code>-based editor</h2>
+<div id="div">
+	<p>[Insert valid image here]</p>
+	<p>[Insert invalid image here]</p>
+</div>
+
+<h2>Inline editor</h2>
+<div id="inline" contenteditable="true">
+	<p>[Insert valid image here]</p>
+	<p>[Insert invalid image here]</p>
+</div>
+
+<script>
+	( function() {
+		var defaultConfig = {
+			language: 'en'
+		};
+
+		CKEDITOR.replace( 'iframe', defaultConfig );
+		CKEDITOR.replace( 'div', CKEDITOR.tools.object.merge( defaultConfig, {
+			extraPlugins: 'divarea'
+		} ) );
+		CKEDITOR.inline( 'inline', defaultConfig );
+	} )();
+
+</script>
diff --git a/tests/plugins/image2/manual/defaultlockratioundefined.md b/tests/plugins/image2/manual/defaultlockratioundefined.md
new file mode 100644
index 00000000..3f078d48
--- /dev/null
+++ b/tests/plugins/image2/manual/defaultlockratioundefined.md
@@ -0,0 +1,39 @@
+@bender-tags: 4.20.0, feature, 5219
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, image2, floatingspace
+
+1. Move cursor to the "[Insert valid image here]" region and click the image button in the toolbar.
+
+	**Expected** The "Lock ratio" is locked.
+
+	**Unexpected** The "Lock ratio" is unlocked.
+1. Paste any valid image URL (e.g. `%BASE_PATH%_assets/logo.png`).
+
+	**Expected** The "Lock ratio" is locked.
+
+	**Unexpected** The "Lock ratio" is unlocked.
+1. Insert the image into the editor.
+1. Double click it to open the dialog.
+
+	**Expected** The "Lock ratio" is locked.
+
+	**Unexpected** The "Lock ratio" is unlocked.
+1. Close the dialog and move cursor to the "[Insert invalid image here]" region and click the image button in the toolbar.
+
+	**Expected** The "Lock ratio" is locked.
+
+	**Unexpected** The "Lock ratio" is unlocked.
+1. Paste any invalid image URL (e.g. `%BASE_PATH%_assets/sample.txt`).
+
+	**Expected** The "Lock ratio" is unlocked.
+
+	**Unexpected** The "Lock ratio" is locked.
+1. Insert the image into the editor.
+
+	**Note** You could also add some alternative text to make the image more visible to make next step easier.
+1. Double click it to open the dialog.
+
+	**Expected** The "Lock ratio" is unlocked.
+
+	**Unexpected** The "Lock ratio" is locked.
+1. Repeat the procedure for all editors.
diff --git a/tests/plugins/link/anchor.js b/tests/plugins/link/anchor.js
index 774ff76f..fefb8d36 100644
--- a/tests/plugins/link/anchor.js
+++ b/tests/plugins/link/anchor.js
@@ -207,6 +207,60 @@
 
 				assert.beautified.html( expected, editor.getData(), 'Prevent duplicated anchors failed in the ordered list with styled word' );
 			} );
+		},
+		// (#5305)
+		'test prevent adding anchor with SPACE character': function() {
+			assertWhitespaceAnchor( this.editorBot, '\u0020', 'SPACE' );
+		},
+
+		// (#5305)
+		'test prevent adding anchor with CHARACTER TABULATION character': function() {
+			assertWhitespaceAnchor( this.editorBot, '\u0009', 'CHARACTER TABULATION' );
+		},
+
+		// (#5305)
+		'test prevent adding anchor with FORM FEED character': function() {
+			assertWhitespaceAnchor( this.editorBot, '\u000c', 'FORM FEED' );
+		},
+
+		// (#5305)
+		'test add anchor with non-breaking space': function() {
+			var bot = this.editorBot,
+				windowStub = sinon.stub( window, 'alert' ),
+				template = '[<p>Simple text</p>]';
+
+			windowStub.restore();
+
+			bot.setHtmlWithSelection( template );
+			bot.dialog( 'anchor', function( dialog ) {
+				dialog.setValueOf( 'info', 'txtName', 'Foo\u00a0bar' );
+				dialog.getButton( 'ok' ).click();
+
+				assert.areEqual( 0, windowStub.callCount );
+			} );
 		}
 	} );
+
+	function assertWhitespaceAnchor( bot, unicode, name ) {
+		var windowStub = sinon.stub( window, 'alert' );
+
+		bot.dialog( 'anchor', function( dialog ) {
+
+			dialog.setValueOf( 'info', 'txtName', 'Foo' + unicode + 'bar' );
+			dialog.getButton( 'ok' ).click();
+
+			resume( function() {
+				windowStub.restore();
+
+				assert.areEqual( 1, windowStub.callCount );
+				assert.areEqual(
+					bot.editor.lang.link.anchor.errorWhitespace,
+					windowStub.args[ 0 ][ 0 ],
+					'Anchor containing' + name + 'space should not be added'
+				);
+			}, 10 );
+
+			wait();
+		} );
+	}
 }() );
diff --git a/tests/plugins/link/manual/anchorwithspace.html b/tests/plugins/link/manual/anchorwithspace.html
new file mode 100644
index 00000000..202ca191
--- /dev/null
+++ b/tests/plugins/link/manual/anchorwithspace.html
@@ -0,0 +1,27 @@
+<h2><code>Iframe</code>-based editor</h2>
+<div id="iframe">
+	<p>Foo</p>
+</div>
+
+<h2><code>Div</code>-based editor</h2>
+<div id="div">
+	<p>Foo</p>
+</div>
+
+<h2>Inline editor</h2>
+<div id="inline" contenteditable="true">
+	<p>Foo</p>
+</div>
+
+<script>
+	CKEDITOR.replace( 'iframe', {
+		language: 'en'
+	} );
+	CKEDITOR.replace( 'div', {
+		extraPlugins: 'divarea',
+		language: 'en'
+	} );
+	CKEDITOR.inline( 'inline', {
+		language: 'en'
+	} );
+</script>
diff --git a/tests/plugins/link/manual/anchorwithspace.md b/tests/plugins/link/manual/anchorwithspace.md
new file mode 100644
index 00000000..b4dbeae9
--- /dev/null
+++ b/tests/plugins/link/manual/anchorwithspace.md
@@ -0,0 +1,10 @@
+@bender-tags: 4.20.1, bug, 5305
+@bender-ui: collapsed
+@bender-ckeditor-plugins: link, toolbar, wysiwygarea, floatingspace
+
+1. Open anchor dialog.
+2. Try to add an anchor that contains a space eg. `Foo bar`.
+
+**Expected:** Alert popups with the information: `Anchor name cannot contain space characters`.
+
+**Unexpected:** Anchor was added to the editable.
diff --git a/tests/plugins/maximize/maximize.js b/tests/plugins/maximize/maximize.js
index b84cb8cd..0748ad40 100644
--- a/tests/plugins/maximize/maximize.js
+++ b/tests/plugins/maximize/maximize.js
@@ -201,5 +201,77 @@ bender.test( {
 			editor.execCommand( 'maximize' );
 			ckeWindow.fire( 'popstate' );
 		} );
+	},
+
+	// (#5396)
+	'test maximize removes \'popstate\' event handler when editor instance is destroyed': function() {
+		bender.editorBot.create( {
+			name: 'editor_destroy_popstate',
+			config: {
+				maximize_historyIntegration: CKEDITOR.HISTORY_NATIVE
+			}
+		}, function( bot ) {
+			var ckeWindow = CKEDITOR.document.getWindow(),
+				editor = bot.editor,
+				initialPopstateListenersLength = ckeWindow.getPrivate().events.popstate.listeners.length;
+
+			editor.destroy();
+
+			var popstateListenersLength = ckeWindow.getPrivate().events.popstate.listeners.length;
+
+			assert.areSame( initialPopstateListenersLength - 1, popstateListenersLength, 'the popstate listener should be removed' );
+		} );
+	},
+
+	// (#5396)
+	'test maximize removes \'hashchange\' event handler when editor instance is destroyed': function() {
+		bender.editorBot.create( {
+			name: 'editor_destroy_hash',
+			config: {
+				maximize_historyIntegration: CKEDITOR.HISTORY_HASH
+			}
+		}, function( bot ) {
+			var ckeWindow = CKEDITOR.document.getWindow(),
+				editor = bot.editor,
+				listeners = ckeWindow.getPrivate().events.hashchange.listeners,
+				initialHashchangeListenersLength = listeners.length;
+
+			editor.destroy();
+
+			var hashchangeListenersLength = listeners.length;
+
+			assert.areSame( initialHashchangeListenersLength - 1, hashchangeListenersLength, 'The hashchange listener be removed' );
+		} );
+	},
+
+	// (#5396)
+	'test maximize does not add \'hashchange\' and \'popstate\' listeners when config.maximize_historyIntegration is set to off value': function() {
+		bender.editorBot.create( {
+			name: 'editor_destroy_hash',
+			config: {
+				maximize_historyIntegration: CKEDITOR.HISTORY_OFF
+			}
+		}, function( bot ) {
+			var ckeWindow = CKEDITOR.document.getWindow(),
+				editor = bot.editor,
+				hashchangeListeners = ckeWindow.getPrivate().events.hashchange.listeners,
+				popstateListeners = ckeWindow.getPrivate().events.popstate.listeners,
+				initialHashchangeListenersLength = hashchangeListeners.length,
+				initialPopstateListenersLength = popstateListeners.length;
+
+			editor.destroy();
+
+			var hashchangeListenersLength = hashchangeListeners.length;
+			var popstateListenersLength = popstateListeners.length;
+
+			assert.areSame(
+				initialHashchangeListenersLength, hashchangeListenersLength,
+				'The hashchange listeners length should be equal with the initial length'
+			);
+			assert.areSame(
+				initialPopstateListenersLength, popstateListenersLength,
+				'The popstate listeners length should be equal with the initial length'
+			);
+		} );
 	}
 } );
diff --git a/tests/plugins/mentions/mentions.js b/tests/plugins/mentions/mentions.js
index 6014e44d..fb2b6960 100644
--- a/tests/plugins/mentions/mentions.js
+++ b/tests/plugins/mentions/mentions.js
@@ -460,6 +460,32 @@
 			assert.areEqual( '<p><strong>@Anna Doe</strong></p>', editable.getData() );
 		},
 
+		// (#2008)
+		'test config options are passed to autocomplete': function() {
+			var spy = sinon.spy( CKEDITOR.plugins, 'autocomplete' ),
+				config = {
+					followingSpace: true,
+					itemsLimit: 12,
+					throttle: 120,
+					outputTemplate: '<strong>{name}</name>',
+					itemTemplate: '<li data-id={id}>{name}</li>'
+				};
+
+			this.createMentionsInstance( config );
+
+			spy.restore();
+
+			assert.isTrue( spy.calledWith( this.editor, sinon.match( compareConfig ) ) );
+
+			function compareConfig( val ) {
+				for ( var k in config ) {
+					assert.areEqual( config[ k ], val[ k ], 'Option: ' + k + ' should be passed to autocomplete.' );
+				}
+
+				return true;
+			}
+		},
+
 		createMentionsInstance: function( config ) {
 			this._mentions = new CKEDITOR.plugins.mentions( this.editor, config );
 			return this._mentions;
diff --git a/tests/plugins/tab/manual/tabpreserveundostep.html b/tests/plugins/tab/manual/tabpreserveundostep.html
new file mode 100644
index 00000000..02028843
--- /dev/null
+++ b/tests/plugins/tab/manual/tabpreserveundostep.html
@@ -0,0 +1,26 @@
+<div id="editor">
+	<table border="1" cellspacing="1" cellpadding="1" style="width:500px">
+		<tbody>
+			<tr>
+				<td></td>
+				<td></td>
+			</tr>
+			<tr>
+				<td></td>
+				<td></td>
+			</tr>
+			<tr>
+				<td></td>
+				<td></td>
+			</tr>
+		</tbody>
+	</table>
+</div>
+
+<script>
+	if ( bender.tools.env.mobile ) {
+		bender.ignore();
+	}
+
+	CKEDITOR.replace( 'editor' );
+</script>
diff --git a/tests/plugins/tab/manual/tabpreserveundostep.md b/tests/plugins/tab/manual/tabpreserveundostep.md
new file mode 100644
index 00000000..2f043677
--- /dev/null
+++ b/tests/plugins/tab/manual/tabpreserveundostep.md
@@ -0,0 +1,14 @@
+@bender-tags: 4.20.2, bug, 4829
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, tab, table, undo, floatingspace, sourcearea, basicstyles
+
+**Note**: If you change the selection when adding text to the table cells, the undo/redo steps may work differently due to updating selection snapshots.
+
+1. Fill all empty cells in the table with some text.
+2. Press undo button at the end of the undo stack.
+
+**Expected**: Text from each cell separately is undone in the reverse order of adding a text.
+
+3. Press the redo button at the end of the redo stack.
+
+**Expected**: Text from each cell separately is redone back to the original state.
diff --git a/tests/plugins/tab/tab.js b/tests/plugins/tab/tab.js
index 30e52627..961554df 100644
--- a/tests/plugins/tab/tab.js
+++ b/tests/plugins/tab/tab.js
@@ -29,6 +29,47 @@
 
 			assert.areSame( '<p><em>foo&nbsp;&nbsp;&nbsp;x</em>bar</p>', this.editorBot.getData( true ),
 				'spaces and text were inserted into the inline element' );
+		},
+
+		// (#4829)
+		'test tab preserves undo step in table cells': function() {
+			bender.editorBot.create( {
+				name: 'tab-undo',
+				config: {
+					plugins: 'tab, undo'
+				}
+			}, function( bot ) {
+				var editor = bot.editor;
+
+				bot.setHtmlWithSelection(
+					'<table>' +
+						'<tbody>' +
+							'<tr>' +
+								'<td>text[]</td>' +
+								'<td><br></td>' +
+							'</tr>' +
+						'</tbody>' +
+					'</table>'
+				);
+
+				editor.editable().fire( 'keydown', new CKEDITOR.dom.event( { keyCode: 9 } ) );
+				editor.insertText( 'foo' );
+
+				assert.areEqual(
+					editor.getSelection().getRanges()[ 0 ]._getTableElement().getText(),
+					'foo',
+					'Inserted text does not match'
+				);
+				editor.execCommand( 'undo' );
+				assert.beautified.html(
+					editor.getData(),
+					'<table>' +
+						'<tbody>' +
+							'<tr><td>text</td><td>&nbsp;</td></tr>' +
+						'</tbody>' +
+					'</table>'
+				);
+			} );
 		}
 	} );
 
diff --git a/tests/plugins/table/headers1row1col.js b/tests/plugins/table/headers1row1col.js
index a26a4c6b..acae647f 100644
--- a/tests/plugins/table/headers1row1col.js
+++ b/tests/plugins/table/headers1row1col.js
@@ -13,15 +13,6 @@
 	};
 
 	bender.test( {
-		_should: {
-			ignore: {
-				// (#2881), (#2996).
-				'1 row, 1 col, none -> both': true,
-				'1 row, 1 col, row -> col': true,
-				'1 row, 1 col, both -> col': true
-			}
-		},
-
 		'1 row, 1 col, none -> none': testHeadersManipulation( 'none', 'none' ),
 
 		'1 row, 1 col, none -> col': testHeadersManipulation( 'none', 'col' ),
diff --git a/tests/plugins/table/headers1row2col.js b/tests/plugins/table/headers1row2col.js
index bcc894c1..f168896b 100644
--- a/tests/plugins/table/headers1row2col.js
+++ b/tests/plugins/table/headers1row2col.js
@@ -13,15 +13,6 @@
 	};
 
 	bender.test( {
-		_should: {
-			ignore: {
-				// (#2881), (#2996).
-				'1 row, 2 cols, none -> both': true,
-				'1 row, 2 cols, row -> col': true,
-				'1 row, 2 cols, both -> col': true
-			}
-		},
-
 		'1 row, 2 cols, none -> none': testHeadersManipulation( 'none', 'none' ),
 
 		'1 row, 2 cols, none -> col': testHeadersManipulation( 'none', 'col' ),
diff --git a/tests/plugins/table/headers2row1col.js b/tests/plugins/table/headers2row1col.js
index e59c09ab..c080d097 100644
--- a/tests/plugins/table/headers2row1col.js
+++ b/tests/plugins/table/headers2row1col.js
@@ -13,15 +13,6 @@
 	};
 
 	bender.test( {
-		_should: {
-			ignore: {
-				// (#2881), (#2996).
-				'2 rows, 1 col, none -> both': true,
-				'2 rows, 1 col, row -> both': true,
-				'2 rows, 1 col, both -> col': true
-			}
-		},
-
 		'2 rows, 1 col, none -> none': testHeadersManipulation( 'none', 'none' ),
 
 		'2 rows, 1 col, none -> col': testHeadersManipulation( 'none', 'col' ),
diff --git a/tests/plugins/table/headers2row2col.js b/tests/plugins/table/headers2row2col.js
index ee205bdb..7c3a4ad4 100644
--- a/tests/plugins/table/headers2row2col.js
+++ b/tests/plugins/table/headers2row2col.js
@@ -13,15 +13,6 @@
 	};
 
 	bender.test( {
-		_should: {
-			ignore: {
-				// (#2881), (#2996).
-				'2 rows, 2 cols, none -> both': true,
-				'2 rows, 2 cols, row -> both': true,
-				'2 rows, 2 cols, both -> col': true
-			}
-		},
-
 		'2 rows, 2 cols, none -> none': testHeadersManipulation( 'none', 'none' ),
 
 		'2 rows, 2 cols, none -> col': testHeadersManipulation( 'none', 'col' ),
diff --git a/tests/plugins/table/manual/changescopeattribute.html b/tests/plugins/table/manual/changescopeattribute.html
new file mode 100644
index 00000000..f2fa523c
--- /dev/null
+++ b/tests/plugins/table/manual/changescopeattribute.html
@@ -0,0 +1,67 @@
+<h2><code>Iframe</code>-based editor</h2>
+<div id="iframe">
+	<table border="1" cellpadding="1" cellspacing="1" style="width:500px">
+		<thead>
+			<tr>
+				<th scope="col"></th>
+				<th scope="col"></th>
+			</tr>
+		</thead>
+		<tbody>
+			<tr>
+				<th scope="row"></th>
+				<td></td>
+			</tr>
+		</tbody>
+	</table>
+</div>
+
+<h2><code>Div</code>-based editor</h2>
+<div id="div">
+	<table border="1" cellpadding="1" cellspacing="1" style="width:500px">
+		<thead>
+			<tr>
+				<th scope="col"></th>
+				<th scope="col"></th>
+			</tr>
+		</thead>
+		<tbody>
+			<tr>
+				<th scope="row"></th>
+				<td></td>
+			</tr>
+		</tbody>
+	</table>
+</div>
+
+<h2>Inline editor</h2>
+<div id="inline" contenteditable="true">
+	<table border="1" cellpadding="1" cellspacing="1" style="width:500px">
+		<thead>
+			<tr>
+				<th scope="col"></th>
+				<th scope="col"></th>
+			</tr>
+		</thead>
+		<tbody>
+			<tr>
+				<th scope="row"></th>
+				<td></td>
+			</tr>
+		</tbody>
+	</table>
+</div>
+
+<script>
+	CKEDITOR.replace( 'iframe', {
+		language: 'en'
+	} );
+	CKEDITOR.replace( 'div', {
+		extraPlugins: 'divarea',
+		language: 'en'
+	} );
+	CKEDITOR.inline( 'inline', {
+		extraPlugins: 'sourcedialog',
+		language: 'en'
+	} );
+</script>
diff --git a/tests/plugins/table/manual/changescopeattribute.md b/tests/plugins/table/manual/changescopeattribute.md
new file mode 100644
index 00000000..e4b8cc60
--- /dev/null
+++ b/tests/plugins/table/manual/changescopeattribute.md
@@ -0,0 +1,13 @@
+@bender-tags: 4.20.1, bug, 2881
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, undo, table, sourcearea, elementspath, tabletools, contextmenu, htmlwriter, floatingspace
+
+1. Click the Right mouse button and open `Table Properties`.
+2. Change `Headers` option to `First Column`.
+3. Open source area.
+
+**Expected:** The first `<th>` element inside `<table>` has `scope` attribute sets to `row`.
+
+**Unexpected:** The first `<th>` element inside `<table>` does not have `scope` attribute or there is no `<th>` element,
+
+4. Repeat above steps for the `divarea` and `inline` editor.
diff --git a/tests/plugins/table/manual/scopeattribute.html b/tests/plugins/table/manual/scopeattribute.html
new file mode 100644
index 00000000..2f0edd81
--- /dev/null
+++ b/tests/plugins/table/manual/scopeattribute.html
@@ -0,0 +1,15 @@
+<h2><code>Iframe</code>-based editor</h2>
+<div id="iframe"></div>
+
+<h2><code>Div</code>-based editor</h2>
+<div id="div"></div>
+
+<script>
+	CKEDITOR.replace( 'iframe', {
+		language: 'en'
+	} );
+	CKEDITOR.replace( 'div', {
+		extraPlugins: 'divarea',
+		language: 'en'
+	} );
+</script>
diff --git a/tests/plugins/table/manual/scopeattribute.md b/tests/plugins/table/manual/scopeattribute.md
new file mode 100644
index 00000000..9601b62a
--- /dev/null
+++ b/tests/plugins/table/manual/scopeattribute.md
@@ -0,0 +1,12 @@
+@bender-tags: 4.20.1, bug, 2996
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, undo, table, sourcearea, elementspath, htmlwriter, tabletools, contextmenu
+
+1. Create 2x2 table with `both` headers option.
+2. Check the source code of table.
+
+**Expected:** `<th>` elements inside `<thead>` should contain `scope` attribute sets to `col`.
+
+**Unexpected:** The first cell inside `<thead>` has `scope` attribute sets to `row`.
+
+3. Repeat above steps for div-based editor.
diff --git a/tests/plugins/tableresize/manual/scrollupdate.html b/tests/plugins/tableresize/manual/scrollupdate.html
new file mode 100644
index 00000000..dca3a09e
--- /dev/null
+++ b/tests/plugins/tableresize/manual/scrollupdate.html
@@ -0,0 +1,122 @@
+<h2>Inline editor</h2>
+<div id="inline" style="width: 250px; overflow: auto;" contenteditable="true">
+	<table border="1" style="width:500px">
+		<tr>
+			<td>Column 1</td>
+			<td>Column 2</td>
+			<td>Column 3</td>
+			<td>Column 4</td>
+		</tr>
+		<tr>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+		</tr>
+		<tr>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+		</tr>
+		<tr>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+		</tr>
+		<tr>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+		</tr>
+	</table>
+</div>
+
+<h2><code>div-based</code> editor</h2>
+<div id="div" style="width: 250px; overflow: auto;" contenteditable="true">
+	<table border="1" style="width:500px">
+		<tr>
+			<td>Column 1</td>
+			<td>Column 2</td>
+			<td>Column 3</td>
+			<td>Column 4</td>
+		</tr>
+		<tr>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+		</tr>
+		<tr>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+		</tr>
+		<tr>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+		</tr>
+		<tr>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+		</tr>
+	</table>
+</div>
+
+<h2><code>iframe</code>-based editor</h2>
+<div id="iframe" style="width: 250px; overflow: auto;" contenteditable="true">
+	<table border="1" style="width:500px">
+		<tr>
+			<td>Column 1</td>
+			<td>Column 2</td>
+			<td>Column 3</td>
+			<td>Column 4</td>
+		</tr>
+		<tr>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+		</tr>
+		<tr>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+		</tr>
+		<tr>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+		</tr>
+		<tr>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+			<td>Cell</td>
+		</tr>
+	</table>
+</div>
+
+<script>
+	if ( bender.tools.env.mobile ) {
+		bender.ignore();
+	}
+
+	CKEDITOR.inline( 'inline' );
+	CKEDITOR.replace( 'div', {
+		extraPlugins: 'divarea',
+		width: 250
+	} );
+	CKEDITOR.replace( 'iframe', {
+		width: 250
+	} );
+</script>
diff --git a/tests/plugins/tableresize/manual/scrollupdate.md b/tests/plugins/tableresize/manual/scrollupdate.md
new file mode 100644
index 00000000..fc20d2e3
--- /dev/null
+++ b/tests/plugins/tableresize/manual/scrollupdate.md
@@ -0,0 +1,13 @@
+@bender-ui: collapsed
+@bender-tags: bug, 4.20.0, 4889
+@bender-ckeditor-plugins: wysiwygarea, toolbar, table, tableresize, tabletools, floatingspace
+
+1. Scroll the editor to its right end and then slightly to the left.
+
+	**Note** Use a mouse wheel or a gesture on trackpad to scroll. The bug does not occur when dragging the scrollbar.
+1. Try to resize the last column.
+
+	**Expected** The resizing cursor is in the right place.
+
+	**Unexpected** The resizing cursor is moved from the column's border.
+1. Repeat the procedure for all editors.
diff --git a/tests/plugins/tableresize/tableresize.html b/tests/plugins/tableresize/tableresize.html
index 5f832fc3..8e78a558 100644
--- a/tests/plugins/tableresize/tableresize.html
+++ b/tests/plugins/tableresize/tableresize.html
@@ -18,6 +18,32 @@
 	</table>
 </div>
 
+<div id="inline-overflow" contenteditable="true" style="width: 250px;overflow: hidden;">
+	<table border="1" style="width: 500px;">
+		<tr>
+			<td>Cell 1.1</td>
+			<td>Cell 1.2</td>
+		</tr>
+		<tr>
+			<td>Cell 2.1</td>
+			<td>Cell 2.2</td>
+		</tr>
+	</table>
+</div>
+
+<textarea id="classic-overflow">
+	&lt;table border="1" style="width: 500px;"&gt;
+		&lt;tr&gt;
+			&lt;td&gt;Cell 1.1&lt;/td&gt;
+			&lt;td&gt;Cell 1.2&lt;/td&gt;
+		&lt;/tr&gt;
+		&lt;tr&gt;
+			&lt;td&gt;Cell 2.1&lt;/td&gt;
+			&lt;td&gt;Cell 2.2&lt;/td&gt;
+		&lt;/tr&gt;
+	&lt;/table&gt;
+</textarea>
+
 <table border="1" id="outside">
 	<tbody>
 		<tr>
diff --git a/tests/plugins/tableresize/tableresize.js b/tests/plugins/tableresize/tableresize.js
index fae303ac..1bc16727 100644
--- a/tests/plugins/tableresize/tableresize.js
+++ b/tests/plugins/tableresize/tableresize.js
@@ -109,6 +109,16 @@ bender.editors = {
 		name: 'intable',
 		creator: 'inline'
 	},
+	inlineOverflow: {
+		name: 'inline-overflow',
+		creator: 'inline'
+	},
+	classicOverflow: {
+		name: 'classic-overflow',
+		config: {
+			width: 250
+		}
+	},
 	undo: {
 		name: 'undo'
 	}
@@ -302,6 +312,44 @@ bender.test( {
 			}
 		} );
 
+		wait();
+	},
+
+	// (#4889)
+	'test pillars are resetted on scroll (inline)': function() {
+		var editor = this.editors.inlineOverflow,
+			editable = editor.editable(),
+			table = editable.findOne( 'table' );
+
+		init( table, editor );
+
+		editable.fire( 'scroll', {} );
+
+		setTimeout( function() {
+			resume( function() {
+				assert.areSame( null, table.getCustomData( '_cke_table_pillars' ) );
+			} );
+		}, 210 );
+
+		wait();
+	},
+
+	// (#4889)
+	'test pillars are resetted on scroll (classic)': function() {
+		var editor = this.editors.classicOverflow,
+			editable = editor.editable(),
+			table = editable.findOne( 'table' );
+
+		init( table, editor );
+
+		editor.document.fire( 'scroll', {} );
+
+		setTimeout( function() {
+			resume( function() {
+				assert.areSame( null, table.getCustomData( '_cke_table_pillars' ) );
+			} );
+		}, 210 );
+
 		wait();
 	}
 } );
diff --git a/tests/plugins/tableselection/manual/tabbackspace.html b/tests/plugins/tableselection/manual/tabbackspace.html
new file mode 100644
index 00000000..3c339ab6
--- /dev/null
+++ b/tests/plugins/tableselection/manual/tabbackspace.html
@@ -0,0 +1,52 @@
+<h2><code>Iframe</code>-based editor</h2>
+<div id="iframe">
+	<table border="1">
+		<tr>
+			<td>Cell 1.1</td>
+			<td>Cell 1.2</td>
+		</tr>
+		<tr>
+			<td>Cell 2.1</td>
+			<td>Cell 2.2</td>
+		</tr>
+	</table>
+</div>
+
+<h2><code>Div</code>-based editor</h2>
+<div id="div">
+	<table border="1">
+		<tr>
+			<td>Cell 1.1</td>
+			<td>Cell 1.2</td>
+		</tr>
+		<tr>
+			<td>Cell 2.1</td>
+			<td>Cell 2.2</td>
+		</tr>
+	</table>
+</div>
+
+<h2>Inline editor</h2>
+<div id="inline" contenteditable="true">
+	<table border="1">
+		<tr>
+			<td>Cell 1.1</td>
+			<td>Cell 1.2</td>
+		</tr>
+		<tr>
+			<td>Cell 2.1</td>
+			<td>Cell 2.2</td>
+		</tr>
+	</table>
+</div>
+<script>
+	if ( bender.tools.env.mobile ) {
+		bender.ignore();
+	}
+
+	CKEDITOR.replace( 'iframe' );
+	CKEDITOR.replace( 'div', {
+		extraPlugins: 'divarea'
+	} );
+	CKEDITOR.inline( 'inline' );
+</script>
diff --git a/tests/plugins/tableselection/manual/tabbackspace.md b/tests/plugins/tableselection/manual/tabbackspace.md
new file mode 100644
index 00000000..831bbf11
--- /dev/null
+++ b/tests/plugins/tableselection/manual/tabbackspace.md
@@ -0,0 +1,11 @@
+@bender-tags: 4.20.1, bug, 4802 
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, tableselection, sourcearea, elementspath, undo, floatingspace, tab
+
+1. Put the caret in the first cell.
+2. Press <kbd>Tab</kbd>.
+3. Press <kbd>Backspace</kbd>.
+
+**Expected** The selection stays in the second cell.
+
+**Unexpected** The selection is moved to the first cell.
diff --git a/tests/plugins/tabletools/_helpers/cellproperties.js b/tests/plugins/tabletools/_helpers/cellproperties.js
index bb8292b7..b960a18f 100644
--- a/tests/plugins/tabletools/_helpers/cellproperties.js
+++ b/tests/plugins/tabletools/_helpers/cellproperties.js
@@ -1,8 +1,12 @@
 /* exported doTest, assertChildren */
 
-function doTest( name, dialogCallback ) {
+function doTest( name, dialogCallback, editorName ) {
+	if ( !editorName ) {
+		editorName = 'basic';
+	}
+
 	return function() {
-		var bot = this.editorBot;
+		var bot = this.editorBots[ editorName ];
 
 		bender.tools.testInputOut( name, function( source, expected ) {
 			bot.setHtmlWithSelection( source );
diff --git a/tests/plugins/tabletools/allowedcontent.js b/tests/plugins/tabletools/allowedcontent.js
index cb01d281..75af7186 100644
--- a/tests/plugins/tabletools/allowedcontent.js
+++ b/tests/plugins/tabletools/allowedcontent.js
@@ -10,7 +10,7 @@
 			wordWrap: [ 'td', 'styles', 'white-space' ],
 			hAlign: [ 'td', 'styles', 'text-align' ],
 			vAlign: [ 'td', 'styles', 'vertical-align' ],
-			cellType: [ 'th' ],
+			cellType: [ 'th', 'attributes', 'scope' ],
 			rowSpan: [ 'td', 'attributes', 'rowspan' ],
 			colSpan: [ 'td', 'attributes', 'colspan' ],
 			bgColor: [ 'td', 'styles', 'background-color' ],
@@ -19,7 +19,7 @@
 		extraAllowedContentList = [],
 		tests = {
 			'test dialog required content': function( editor, bot ) {
-				bot.setData( '<table><tbody><tr><td>Cell</td></tr></tbody></table>', function() {
+				bot.setData( '<table><tbody><tr><td>Cell</td><th>HeaderCell</th></tr></tbody></table>', function() {
 					var rng = new CKEDITOR.dom.range( editor.document );
 					rng.setStart( editor.editable().findOne( 'td' ), CKEDITOR.POSITION_AFTER_START );
 					rng.select();
diff --git a/tests/plugins/tabletools/cellproperties.html b/tests/plugins/tabletools/cellproperties.html
index 6db3d5b1..1fe618fb 100644
--- a/tests/plugins/tabletools/cellproperties.html
+++ b/tests/plugins/tabletools/cellproperties.html
@@ -435,3 +435,93 @@
 </textarea>
 
 <textarea id="required"></textarea>
+
+<textarea id="table-cell-data">
+	<table>
+		<tbody>
+			<tr>
+				<th scope="col">[aa]</th>
+			</tr>
+		</tbody>
+	</table>
+	=>
+	<table>
+		<tbody>
+			<tr>
+				<td>aa</td>
+			</tr>
+		</tbody>
+	</table>
+</textarea>
+
+<textarea id="table-cell-th">
+	<table>
+		<tbody>
+			<tr>
+				<td>[aa]</td>
+			</tr>
+		</tbody>
+	</table>
+	=>
+	<table>
+		<tbody>
+			<tr>
+				<th>aa</th>
+			</tr>
+		</tbody>
+	</table>
+</textarea>
+
+<textarea id="table-cell-thc">
+	<table>
+		<tbody>
+			<tr>
+				<td>[aa]</td>
+			</tr>
+		</tbody>
+	</table>
+	=>
+	<table>
+		<tbody>
+			<tr>
+				<th scope="col">aa</th>
+			</tr>
+		</tbody>
+	</table>
+</textarea>
+
+<textarea id="table-cell-thr">
+	<table>
+		<tbody>
+			<tr>
+				<td>[aa]</td>
+			</tr>
+		</tbody>
+	</table>
+	=>
+	<table>
+		<tbody>
+			<tr>
+				<th scope="row">aa</th>
+			</tr>
+		</tbody>
+	</table>
+</textarea>
+
+<textarea id="table-cell-th-ui">
+	<table>
+		<tbody>
+			<tr>
+				<th>[aa]</th>
+			</tr>
+		</tbody>
+	</table>
+	=>
+	<table>
+		<tbody>
+			<tr>
+				<th>aa</th>
+			</tr>
+		</tbody>
+	</table>
+</textarea>
diff --git a/tests/plugins/tabletools/cellproperties.js b/tests/plugins/tabletools/cellproperties.js
index 0d3db9fb..d6bbbb18 100644
--- a/tests/plugins/tabletools/cellproperties.js
+++ b/tests/plugins/tabletools/cellproperties.js
@@ -6,10 +6,25 @@
 ( function() {
 	'use strict';
 
-	bender.editor = true;
+	bender.editors = {
+		basic: {
+			name: 'basic'
+		},
+		scopedHeadersOn: {
+			name: 'scopedHeadersOn',
+			config: {
+				tabletools_scopedHeaders: true
+			}
+		},
+		scopedHeadersOff: {
+			name: 'scopedHeadersOff',
+			config: {
+				tabletools_scopedHeaders: false
+			}
+		}
+	};
 
 	bender.test( {
-
 		'test cell properties dialog (text selection)': doTest( 'table-1', function( dialog ) {
 				dialog.setValueOf( 'info', 'width', 100 );
 				dialog.setValueOf( 'info', 'height', 50 );
@@ -151,6 +166,63 @@
 			assert.areEqual( CKEDITOR.dialog.EDITING_MODE, dialog.getMode( editor ), 'Dialog is in editing mode.' );
 		} ),
 
+		// (#5084)
+		'test cell data type has td name and does not have scope attribute': doTest( 'table-cell-data', function( dialog ) {
+			dialog.setValueOf( 'info', 'cellType', 'td' );
+		} ),
+
+		// (#5084)
+		'test cell data type has th name and does not have scope attribute (default scopedHeaders)':
+			doTest( 'table-cell-th', function( dialog ) {
+				dialog.setValueOf( 'info', 'cellType', 'th' );
+			} ),
+
+		// (#5084)
+		'test cell data type has th name and does not have scope attribute (scopedHeaders=false)':
+			doTest( 'table-cell-th', function( dialog ) {
+				dialog.setValueOf( 'info', 'cellType', 'th' );
+			}, 'scopedHeadersOff' ),
+
+		// (#5084)
+		'test th is represented as an empty option which does not change the content (scopedHeaders=true)':
+			doTest( 'table-cell-th-ui', function( dialog ) {
+				var actualCellType = dialog.getValueOf( 'info', 'cellType' );
+
+				assert.areSame( '', actualCellType );
+
+				dialog.setValueOf( 'info', 'cellType', '' );
+			}, 'scopedHeadersOn' ),
+
+		// (#5084)
+		'test th is represented as a "Header" option which does not change the content (scopedHeaders=false)':
+			doTest( 'table-cell-th-ui', function( dialog ) {
+				var actualCellType = dialog.getValueOf( 'info', 'cellType' );
+
+				assert.areSame( 'th', actualCellType );
+
+				dialog.setValueOf( 'info', 'cellType', 'th' );
+			}, 'scopedHeadersOff' ),
+
+		// (#5084)
+		'test th is represented as a "Header" option which does not change the content (default scopedHeaders)':
+			doTest( 'table-cell-th-ui', function( dialog ) {
+				var actualCellType = dialog.getValueOf( 'info', 'cellType' );
+
+				assert.areSame( 'th', actualCellType );
+
+				dialog.setValueOf( 'info', 'cellType', 'th' );
+			} ),
+
+		// (#5084)
+		'test cell column header type has th name and have scope attribute set to col': doTest( 'table-cell-thc', function( dialog ) {
+			dialog.setValueOf( 'info', 'cellType', 'thc' );
+		}, 'scopedHeadersOn' ),
+
+		// (#5084)
+		'test cell row header type has th name and have scope attribute set to row': doTest( 'table-cell-thr', function( dialog ) {
+			dialog.setValueOf( 'info', 'cellType', 'thr' );
+		}, 'scopedHeadersOn' ),
+
 		// https://dev.ckeditor.com/ticket/16893
 		'test allowedContent rule': function() {
 			bender.editorBot.create( {
diff --git a/tests/plugins/tabletools/manual/allowedcontent.html b/tests/plugins/tabletools/manual/allowedcontent.html
index 18d552fb..145e76d1 100644
--- a/tests/plugins/tabletools/manual/allowedcontent.html
+++ b/tests/plugins/tabletools/manual/allowedcontent.html
@@ -126,7 +126,7 @@
 		} );
 
 		// We need to recreate editor, because filter is caching checks.
-		editor.destroy();
+		editor.destroy( true );
 	}
 
 	function addRemoveRule( rule, state, arr ) {
diff --git a/tests/plugins/tabletools/manual/cellproperties.html b/tests/plugins/tabletools/manual/cellproperties.html
index c3db1b30..2e01e4f9 100644
--- a/tests/plugins/tabletools/manual/cellproperties.html
+++ b/tests/plugins/tabletools/manual/cellproperties.html
@@ -22,7 +22,7 @@
 
 <script>
 	CKEDITOR.replace( 'editor', {
-		allowedContent: '*[lang,dir]; table tbody thead tr th td tfoot'
+		allowedContent: '*[lang,dir]; table tbody thead tr td th tfoot'
 	} );
 	CKEDITOR.replace( 'editor1' );
 </script>
diff --git a/tests/plugins/tabletools/manual/cellpropertiescelltype.html b/tests/plugins/tabletools/manual/cellpropertiescelltype.html
new file mode 100644
index 00000000..40378874
--- /dev/null
+++ b/tests/plugins/tabletools/manual/cellpropertiescelltype.html
@@ -0,0 +1,26 @@
+<h1>Editor 1:</h1>
+<div id="editor">
+	<table border="1">
+		<tbody>
+			<tr>
+				<td>Cell 1</td>
+				<td>Cell 2</td>
+			</tr>
+			<tr>
+				<td>Cell 3</td>
+				<td>Cell 4</td>
+			</tr>
+		</tbody>
+	</table>
+</div>
+
+<script>
+	if ( bender.tools.env.mobile ) {
+		bender.ignore();
+	}
+
+	CKEDITOR.replace( 'editor', {
+		language: 'en',
+		tabletools_scopedHeaders: true
+	} );
+</script>
diff --git a/tests/plugins/tabletools/manual/cellpropertiescelltype.md b/tests/plugins/tabletools/manual/cellpropertiescelltype.md
new file mode 100644
index 00000000..2392ac5f
--- /dev/null
+++ b/tests/plugins/tabletools/manual/cellpropertiescelltype.md
@@ -0,0 +1,25 @@
+@bender-tags: 4.20.0, 5084, feature
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, table, tabletools, sourcearea
+
+**Note:** Please verify cell structure via toggling `Source` mode.
+
+1. Right click at any cell, and select `Cell` -> `Cell Properties`.
+
+	**Expected** Cell has `Data` type.
+1. Change cell type to `Column Header`.
+
+	**Expected** Cell has `th` type and `scope` attribute set on `col`.
+1. Right click at recent cell, and select `Cell` -> `Cell Properties`.
+
+	**Expected** Cell has `Column Header` type.
+1. Change cell type to `Row Header`.
+
+	**Expected** Cell has `th` type and `scope` attribute set on `row`.
+1. Right click at recent cell, and select `Cell` -> `Cell Properties`.
+
+	**Expected** Cell has `Row Header` type.
+1. Change cell type to `Data`.
+
+	**Expected** Cell has `td` type and do not have `scope` attribute.
+1. Play with cell types and verify if they type matches expectations from the above.
diff --git a/tests/plugins/tabletools/manual/scopedheaders.html b/tests/plugins/tabletools/manual/scopedheaders.html
new file mode 100644
index 00000000..2916d190
--- /dev/null
+++ b/tests/plugins/tabletools/manual/scopedheaders.html
@@ -0,0 +1,59 @@
+<h2>Scoped headers on</h2>
+<div id="editor1">
+	<table border="1">
+		<tr>
+			<th>Column 1</th>
+			<th>Column 2</th>
+		</tr>
+		<tr>
+			<td>Cell 1.2</td>
+			<td>Cell 2.2</td>
+		</tr>
+	</table>
+</div>
+
+<h2>Scoped headers off</h2>
+<div id="editor2">
+	<table border="1">
+		<tr>
+			<th>Column 1</th>
+			<th>Column 2</th>
+		</tr>
+		<tr>
+			<td>Cell 1.2</td>
+			<td>Cell 2.2</td>
+		</tr>
+	</table>
+</div>
+
+<h2>Scoped headers default</h2>
+<div id="editor3">
+	<table border="1">
+		<tr>
+			<th>Column 1</th>
+			<th>Column 2</th>
+		</tr>
+		<tr>
+			<td>Cell 1.2</td>
+			<td>Cell 2.2</td>
+		</tr>
+	</table>
+</div>
+
+<script>
+	if ( bender.tools.env.mobile ) {
+		bender.ignore();
+	}
+
+	CKEDITOR.replace( 'editor1', {
+		tabletools_scopedHeaders: true,
+		language: 'en'
+	} );
+	CKEDITOR.replace( 'editor2', {
+		tabletools_scopedHeaders: false,
+		language: 'en'
+	} );
+	CKEDITOR.replace( 'editor3', {
+		language: 'en'
+	} );
+</script>
diff --git a/tests/plugins/tabletools/manual/scopedheaders.md b/tests/plugins/tabletools/manual/scopedheaders.md
new file mode 100644
index 00000000..5a06cb6e
--- /dev/null
+++ b/tests/plugins/tabletools/manual/scopedheaders.md
@@ -0,0 +1,15 @@
+@bender-tags: 4.20.0, 5084, feature
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, table, tabletools
+
+1. Open the "Cell Properties" dialog for one of the column headers.
+1. Check the "Cell Type" value.
+
+	**Expected** For the "Scoped headers on": the empty option is selected.
+
+	For other editors: the "Header" option is selected.
+1. Check available values for the "Cell Type" field
+
+	**Expected** For the "Scoped headers on": Data, Column Header, Row Header
+
+	For other editors: Data, Header
diff --git a/tests/plugins/templates/_assets/test.js b/tests/plugins/templates/_assets/test.js
index b18c21b7..d3f1c60d 100644
--- a/tests/plugins/templates/_assets/test.js
+++ b/tests/plugins/templates/_assets/test.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/tests/plugins/toolbar/config.js b/tests/plugins/toolbar/config.js
index dd9df649..79a57f94 100644
--- a/tests/plugins/toolbar/config.js
+++ b/tests/plugins/toolbar/config.js
@@ -90,7 +90,34 @@
 					'<p><strong>A</strong><em>B</em>C</p><p>D</p><ol><li>E</li></ol>',
 					'<p><strong>A</strong><em>B</em>C</p><p>D</p><ol><li>E</li></ol>' );
 			} );
+		},
+
+		// (#5122)
+		'test config.removeButtons accepts array of buttons': function() {
+			bender.editorBot.create( {
+				name: 'editor-5122',
+				config: {
+					plugins: [ 'toolbar', 'wysiwygarea', 'basicstyles' ],
+					removeButtons: [ 'Bold', 'Italic' ]
+				}
+			},
+			function( bot ) {
+				var editor = bot.editor,
+					basicStyleGroup = getToolbarGroup( editor, 'basicstyles' );
+
+				assert.isTrue( comp( [ 'underline', 'strike', 'subscript', 'superscript' ], basicStyleGroup ) );
+
+				bot.assertInputOutput(
+					'<p><strong>A</strong><em>B</em><sup>C</sup></p>',
+					'<p>AB<sup>C</sup></p>',
+					'<p>AB<sup>C</sup></p>' );
+			} );
 		}
 	} );
 
+	function getToolbarGroup( editor, name ) {
+		return CKEDITOR.tools.array.find( editor.toolbar, function( group ) {
+			return group.name === name;
+		} );
+	}
 } )();
diff --git a/tests/plugins/toolbar/manual/focus.html b/tests/plugins/toolbar/manual/focus.html
index 75379a6e..3eaaf64d 100644
--- a/tests/plugins/toolbar/manual/focus.html
+++ b/tests/plugins/toolbar/manual/focus.html
@@ -3,5 +3,9 @@
 </div>
 
 <script>
+	if ( bender.tools.env.mobile ) {
+		bender.ignore();
+	}
+
 	CKEDITOR.replace( 'editor' );
 </script>
diff --git a/tests/plugins/toolbar/manual/removebuttons.html b/tests/plugins/toolbar/manual/removebuttons.html
new file mode 100644
index 00000000..3ebea623
--- /dev/null
+++ b/tests/plugins/toolbar/manual/removebuttons.html
@@ -0,0 +1,13 @@
+<div id="editor">
+	<p>Lorem ipsum dolor sit amet</p>
+</div>
+
+<script>
+	if ( bender.tools.env.mobile ) {
+		bender.ignore();
+	}
+
+	CKEDITOR.replace( 'editor', {
+		removeButtons: [ 'Bold', 'Italic' ]
+	} );
+</script>
diff --git a/tests/plugins/toolbar/manual/removebuttons.md b/tests/plugins/toolbar/manual/removebuttons.md
new file mode 100644
index 00000000..cb64941e
--- /dev/null
+++ b/tests/plugins/toolbar/manual/removebuttons.md
@@ -0,0 +1,11 @@
+@bender-tags: 4.20.0, feature, 5122
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles
+
+1. Open the browser console.
+
+**Expected** There are no errors in the console.
+	
+1. Look at the editor's toolbar.
+
+**Expected** There are no "Bold" and "Italic" buttons.
diff --git a/tests/plugins/uploadfile/manual/changeevent.html b/tests/plugins/uploadfile/manual/changeevent.html
new file mode 100644
index 00000000..d1cf917a
--- /dev/null
+++ b/tests/plugins/uploadfile/manual/changeevent.html
@@ -0,0 +1,28 @@
+<div id="editor">
+	<p>Drop some file here:</p>
+</div>
+
+<div id="changes"></div>
+
+<script>
+	( function() {
+		var changeLog = CKEDITOR.document.getById( 'changes' ),
+			i = 0;
+
+		CKEDITOR.once( 'instanceReady', function() {
+			bender.tools.ignoreUnsupportedEnvironment( 'uploadfile' );
+		} );
+
+		CKEDITOR.replace( 'editor', {
+			uploadUrl: 'fakeUrl',
+			on: {
+				change: function( evt ) {
+					var change = CKEDITOR.dom.element.createFromHtml( '<p>Change #' + ( ++i ) + '</p>' );
+
+					changeLog.append( change );
+					console.log( 'change ' + i, evt.editor.getData() );
+				}
+			}
+		} );
+	} ) ();
+</script>
diff --git a/tests/plugins/uploadfile/manual/changeevent.md b/tests/plugins/uploadfile/manual/changeevent.md
new file mode 100644
index 00000000..2d7d6b37
--- /dev/null
+++ b/tests/plugins/uploadfile/manual/changeevent.md
@@ -0,0 +1,12 @@
+@bender-tags: 4.20.2, bug, 5414
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, uploadfile, undo
+@bender-include: ../../uploadwidget/manual/_helpers/xhr.js
+
+1. Drop some file into the editor.
+1. Wait for its upload.
+
+**Expected** There are two change events noted under the editor.
+**Unexpected** There is only one change event noted under the editor.
+
+**Note** You can check editor's data for each `change` event in the browser console.
diff --git a/tests/plugins/uploadfile/uploadfile.js b/tests/plugins/uploadfile/uploadfile.js
index d88ae87b..196ac072 100644
--- a/tests/plugins/uploadfile/uploadfile.js
+++ b/tests/plugins/uploadfile/uploadfile.js
@@ -229,5 +229,27 @@ bender.test( {
 		loader.abort();
 
 		assert.areSame( 'abort', loader.status, 'Loader status' );
+	},
+
+	// (#5414)
+	'test firing change event after the upload finishes': function() {
+		var editor = this.editors.uploadfile,
+			uploads = editor.uploadRepository,
+			loader = uploads.create( bender.tools.getTestTxtFile() );
+
+		this.editorBots.uploadfile.setData( '<span data-cke-upload-id="' + loader.id +
+			'" data-widget="uploadfile">...</span>', function() {
+			editor.once( 'change', function() {
+				resume( function() {
+					assert.sameData( '<p><a href="%BASE_PATH%_assets/sample.txt" target="_blank">name.txt</a></p>',
+						editor.getData() );
+				} );
+			} );
+
+			loader.url = '%BASE_PATH%_assets/sample.txt';
+			loader.changeStatus( 'uploaded' );
+
+			wait();
+		} );
 	}
 } );
diff --git a/tests/plugins/uploadimage/manual/changeevent.html b/tests/plugins/uploadimage/manual/changeevent.html
new file mode 100644
index 00000000..a7bbacc0
--- /dev/null
+++ b/tests/plugins/uploadimage/manual/changeevent.html
@@ -0,0 +1,47 @@
+<h2>With <code>image</code> plugin</h2>
+<div id="image">
+	<p>Drop image here:</p>
+</div>
+
+<div id="changes-image"></div>
+
+<h2>With <code>image2</code> plugin</h2>
+<div id="image2">
+	<p>Drop image here:</p>
+</div>
+
+<div id="changes-image2"></div>
+
+<script>
+	( function() {
+		CKEDITOR.once( 'instanceReady', function() {
+			bender.tools.ignoreUnsupportedEnvironment( 'uploadimage' );
+		} );
+
+		creatEditorWithChangelog( 'image', {
+			extraPlugins: 'image'
+		} );
+		creatEditorWithChangelog( 'image2', {
+			extraPlugins: 'image2'
+		} );
+
+		function creatEditorWithChangelog( editorId, userConfig ) {
+			var changeLog = CKEDITOR.document.getById( 'changes-' + editorId ),
+				i = 0,
+				commonConfig = {
+					uploadUrl: 'fakeUrl',
+						on: {
+							change: function( evt ) {
+								var change = CKEDITOR.dom.element.createFromHtml( '<p>Change #' + ( ++i ) + '</p>' );
+
+								changeLog.append( change );
+								console.log( 'change ' + i, evt.editor.getData() );
+							}
+						}
+					},
+				config = CKEDITOR.tools.object.merge( commonConfig, userConfig || {} );
+
+			CKEDITOR.replace( editorId, config );
+		}
+	} ) ();
+</script>
diff --git a/tests/plugins/uploadimage/manual/changeevent.md b/tests/plugins/uploadimage/manual/changeevent.md
new file mode 100644
index 00000000..3dc05391
--- /dev/null
+++ b/tests/plugins/uploadimage/manual/changeevent.md
@@ -0,0 +1,12 @@
+@bender-tags: 4.20.2, bug, 5414
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, uploadimage, undo
+@bender-include: ../../uploadwidget/manual/_helpers/xhr.js
+
+1. Drop image into the editor.
+1. Wait for its upload.
+
+**Expected** There are two change events noted under the editor.
+**Unexpected** There is only one change event noted under the editor.
+
+**Note** You can check editor's data for each `change` event in the browser console.
diff --git a/tests/plugins/uploadimage/manual/clipboardintegration.html b/tests/plugins/uploadimage/manual/clipboardintegration.html
new file mode 100644
index 00000000..da2267b2
--- /dev/null
+++ b/tests/plugins/uploadimage/manual/clipboardintegration.html
@@ -0,0 +1,20 @@
+<p>Last dropped file: <span id="lastFile"></span></p>
+<div id="editor1"></div>
+
+<script>
+	CKEDITOR.replace( 'editor1', {
+		language: 'en',
+		imageUploadUrl: '%BASE_PATH%',
+		on: {
+			instanceReady: function( evt ) {
+				bender.tools.ignoreUnsupportedEnvironment( 'uploadimage' );
+
+				CKEDITOR.fileTools.fileLoader.prototype.upload = function( url ) {
+					CKEDITOR.document.getById( 'lastFile' ).setText( this.fileName );
+
+					this.responseData = {};
+				};
+			},
+		}
+	} );
+</script>
diff --git a/tests/plugins/uploadimage/manual/clipboardintegration.md b/tests/plugins/uploadimage/manual/clipboardintegration.md
new file mode 100644
index 00000000..363d8582
--- /dev/null
+++ b/tests/plugins/uploadimage/manual/clipboardintegration.md
@@ -0,0 +1,16 @@
+@bender-tags: 4.20.1, bug, 5333
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, uploadwidget, uploadimage, image, floatingspace, toolbar, sourcearea
+
+1. Open the console.
+
+**Expected** There is `[CKEDITOR] Error code: clipboard-image-handling-disabled.` warning in the console after the editor is loaded.
+
+**Unexpected** There is no warning in the console.
+2. Drag and drop an image into the editor.
+
+**Expected** The original name of the file is displayed above the editor.
+
+**Unexpected** The name in the `image-<timestamp>-<n>.<ext>` format is displayed above the editor.
+
+3. Repeat step `2` for the paste method.
diff --git a/tests/plugins/uploadimage/uploadimage.js b/tests/plugins/uploadimage/uploadimage.js
index d911bb84..aa9b3a10 100644
--- a/tests/plugins/uploadimage/uploadimage.js
+++ b/tests/plugins/uploadimage/uploadimage.js
@@ -582,13 +582,154 @@
 
 			bender.editorBot.create( {
 				name: 'configerror_test',
-				extraPlugins: 'uploadimage'
+				config: {
+					extraPlugins: 'uploadimage'
+				}
 			}, function( bot ) {
 				spy.restore();
 
 				assert.areSame( 0, spy.callCount, 'CKEDITOR.error call count' );
 				assert.isFalse( !!bot.editor.widgets.registered.uploadimage, 'uploadimage widget' );
 			} );
+		},
+
+		// (#5333)
+		'test warning about disabling the clipboard image handling logic (default config value)': createHandlingImageWarnTest(
+			'clipboard-warning-default' ),
+
+		// (#5333)
+		'test warning about disabling the clipboard image handling logic (config value of true)': createHandlingImageWarnTest(
+			'clipboard-warning-true', true ),
+
+		// (#5333)
+		'test warning about disabling the clipboard image handling logic (config value of false)': createHandlingImageWarnTest(
+			'clipboard-warning-false', false ),
+
+		// (#5333)
+		'test original file name is preserved after the upload': function() {
+			bender.editorBot.create( {
+				name: 'clipboard-integration-original-file-name',
+				config: {
+					uploadUrl: '%BASE_PATH',
+					extraPlugins: 'uploadimage'
+				}
+			}, function( bot ) {
+				var editor = bot.editor,
+					imageName = 'test.png',
+					image = {
+						name: imageName,
+						type: 'image/png'
+					};
+
+				bot.setData( '', function() {
+					resumeAfter( editor, 'paste', function() {
+						var widget = CKEDITOR.tools.object.values( editor.widgets.instances )[ 0 ],
+							loader = widget._getLoader();
+
+						assert.areSame( imageName, loader.fileName, 'The name of the uploaded file' );
+					} );
+
+					pasteFilesWithFilesMimeType( editor, [ image ] );
+
+					wait();
+				} );
+			} );
+		},
+
+		// (#5414)
+		'test change event is fired after upload finishes': function() {
+			bender.editorBot.create( {
+				name: 'undo-integration-change-after-upload',
+				config: {
+					uploadUrl: '%BASE_PATH',
+					extraPlugins: 'uploadimage'
+				}
+			}, function( bot ) {
+				var editor = bot.editor,
+					imageName = 'test.png',
+					image = {
+						name: imageName,
+						type: 'image/png'
+					},
+					loader;
+
+				bot.setData( '', function() {
+					editor.once( 'change', function( evt ) {
+						resume( function() {
+							var editorData = evt.editor.getData(),
+								containsUploadedImageUrl = editorData.indexOf( 'src="' + IMG_URL ) !== -1;
+
+							assert.isTrue( containsUploadedImageUrl );
+						} );
+					} );
+
+					pasteFilesWithFilesMimeType( editor, [ image ] );
+
+					loader = editor.uploadRepository.loaders[ 0 ];
+
+					loader.url = IMG_URL;
+					loader.changeStatus( 'uploaded' );
+
+					wait();
+				} );
+			} );
 		}
 	} );
+
+	function createHandlingImageWarnTest( editorName, configValue ) {
+		return function() {
+			var spy = sinon.spy( CKEDITOR, 'warn' ),
+				editorConfig =  {
+					uploadUrl: '%BASE_PATH',
+					extraPlugins: 'uploadimage'
+				};
+
+			if ( configValue !== undefined ) {
+				editorConfig.clipboard_handleImages = configValue;
+			}
+
+			bender.editorBot.create( {
+				name: editorName,
+				config: editorConfig
+			}, function() {
+				var warnCalls = spy.args,
+					expectedWarnDetails = {
+						editor: editorName,
+						plugin: 'uploadimage'
+					};
+
+				spy.restore();
+
+				var warningCalled = spy.calledWith( 'clipboard-image-handling-disabled', expectedWarnDetails );
+
+				if ( configValue === false ) {
+					assert.isFalse( warningCalled, 'CKEDITOR.warn should not be called' );
+				} else {
+					assert.isTrue( warningCalled, 'CKEDITOR.warn should be called' );
+
+					var warningDetails = CKEDITOR.tools.array.find( warnCalls, function( item ) {
+						return item[ 0 ] === 'clipboard-image-handling-disabled';
+					} );
+
+					objectAssert.areDeepEqual( expectedWarnDetails, warningDetails[ 1 ],
+						'CKEDITOR.warn should include proper details' );
+				}
+			} );
+		};
+	}
+
+	function pasteFilesWithFilesMimeType( editor, files, pasteMethod ) {
+		var	nativeData = bender.tools.mockNativeDataTransfer(),
+			dataTransfer;
+
+		pasteMethod = pasteMethod || 'paste';
+		nativeData.files = files;
+		nativeData.types.push( 'Files' );
+		dataTransfer = new CKEDITOR.plugins.clipboard.dataTransfer( nativeData );
+
+		editor.fire( 'paste', {
+			dataTransfer: dataTransfer,
+			dataValue: ''
+		} );
+	}
 } )();
diff --git a/tests/plugins/uploadwidget/manual/_helpers/xhr.js b/tests/plugins/uploadwidget/manual/_helpers/xhr.js
index e58639d4..61e1308c 100644
--- a/tests/plugins/uploadwidget/manual/_helpers/xhr.js
+++ b/tests/plugins/uploadwidget/manual/_helpers/xhr.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/tests/plugins/uploadwidget/manual/_helpers/xhrerror.js b/tests/plugins/uploadwidget/manual/_helpers/xhrerror.js
index a4cbd5bb..36404741 100644
--- a/tests/plugins/uploadwidget/manual/_helpers/xhrerror.js
+++ b/tests/plugins/uploadwidget/manual/_helpers/xhrerror.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/tests/plugins/uploadwidget/manual/_helpers/xhrnoupload.js b/tests/plugins/uploadwidget/manual/_helpers/xhrnoupload.js
index d1bb0915..0ec234c1 100644
--- a/tests/plugins/uploadwidget/manual/_helpers/xhrnoupload.js
+++ b/tests/plugins/uploadwidget/manual/_helpers/xhrnoupload.js
@@ -1,5 +1,5 @@
 /**
- * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
diff --git a/tests/plugins/uploadwidget/uploadwidget.js b/tests/plugins/uploadwidget/uploadwidget.js
index b1b363f1..be3d3682 100644
--- a/tests/plugins/uploadwidget/uploadwidget.js
+++ b/tests/plugins/uploadwidget/uploadwidget.js
@@ -11,7 +11,8 @@
 		htmlMatchingOpts = {
 			compareSelection: true,
 			normalizeSelection: true
-		};
+		},
+		UPLOADED_MARKER = 'uploaded';
 
 	bender.editor = {
 		config: {
@@ -34,7 +35,7 @@
 			},
 
 			onUploaded: function() {
-				this.replaceWith( 'uploaded' );
+				this.replaceWith( UPLOADED_MARKER );
 			}
 		} );
 
@@ -1133,6 +1134,33 @@
 
 				assert.areSame( '<p><u>xxx</u></p>', editor.getData() );
 			} );
+		},
+
+		// (#5414)
+		'test firing change after calling replaceWith() method': function() {
+			var bot = this.editorBot,
+				editor = bot.editor,
+				uploads = editor.uploadRepository,
+				loader = uploads.create( bender.tools.getTestPngFile() );
+
+			loader.loadAndUpload( 'uploadUrl' );
+
+			addTestUploadWidget( editor, 'testChange' );
+
+			bot.setData( '<span data-cke-upload-id="' + loader.id + '" data-widget="testChange">...</span>', function() {
+				editor.once( 'change', function() {
+					resume( function() {
+						var editorContent = editor.getData(),
+							containsUploadedContent = editorContent.indexOf( UPLOADED_MARKER ) !== -1;
+
+						assert.isTrue( containsUploadedContent, 'The editor contains the marker of the uploaded widget' );
+					} );
+				} );
+
+				loader.changeStatus( 'uploaded' );
+
+				wait();
+			} );
 		}
 	} );
 } )();
diff --git a/tests/plugins/widget/inlineeditables.js b/tests/plugins/widget/inlineeditables.js
new file mode 100644
index 00000000..0665e045
--- /dev/null
+++ b/tests/plugins/widget/inlineeditables.js
@@ -0,0 +1,57 @@
+/* bender-tags: widget */
+
+( function() {
+	'use strict';
+
+	CKEDITOR.dtd.$editable.span = 1;
+
+	CKEDITOR.plugins.add( 'spanwidget', {
+		requires: 'widget',
+		init: function( editor )	{
+			editor.widgets.add( 'spanwidget', {
+				editables: {
+					content: {
+						selector: 'span'
+					}
+				},
+				upcast: function( element ) {
+					return element.name == 'span';
+				}
+			} );
+		}
+	} );
+
+	bender.editor = {
+		config: {
+			extraAllowedContent: 'span',
+			extraPlugins: 'basicstyles,sourcearea,spanwidget'
+		}
+	};
+
+	bender.test( {
+		// #698
+		'test switching to source mode after bolding text in an inline editable': function() {
+			var editor = this.editor,
+				editorBot = this.editorBot;
+
+			editorBot.setData( '<strong><span>lorem</span></strong>', function() {
+				var textNode = editor.editable().findOne( 'span' ).getFirst().getFirst(),
+					rng = editor.createRange();
+
+				editor.focus();
+
+				// Select the `m`.
+				rng.setStart( textNode, 4 );
+				rng.setEnd( textNode, 5 );
+				editor.getSelection().selectRanges( [ rng ] );
+
+				editor.execCommand( 'bold' );
+				editor.setMode( 'source' );
+
+				// Just pass the test if nothing threw before.
+				assert.pass();
+			} );
+		}
+	} );
+
+} )();
diff --git a/tests/plugins/widget/manual/inlineeditable.html b/tests/plugins/widget/manual/inlineeditable.html
new file mode 100644
index 00000000..15ca157e
--- /dev/null
+++ b/tests/plugins/widget/manual/inlineeditable.html
@@ -0,0 +1,30 @@
+<div id="editor">
+	<strong><span>Test</span></strong>
+</div>
+
+<script>
+	( function() {
+		CKEDITOR.dtd.$editable.span = 1;
+
+		CKEDITOR.plugins.add( 'spanwidget', {
+			requires: 'widget',
+			init: function( editor )	{
+				editor.widgets.add( 'spanwidget', {
+					editables: {
+						content: {
+							selector: 'span'
+						}
+					},
+					upcast: function( element ) {
+						return element.name == 'span';
+					}
+				} );
+			}
+		} );
+
+		CKEDITOR.replace( 'editor', {
+			extraPlugins: 'spanwidget',
+			extraAllowedContent: 'span'
+		} );
+	} )();
+</script>
diff --git a/tests/plugins/widget/manual/inlineeditable.md b/tests/plugins/widget/manual/inlineeditable.md
new file mode 100644
index 00000000..da0db284
--- /dev/null
+++ b/tests/plugins/widget/manual/inlineeditable.md
@@ -0,0 +1,18 @@
+@bender-tags: 4.20.2, bug, 698, widget
+@bender-ui: collapsed
+@bender-ckeditor-plugins: wysiwygarea, toolbar, sourcearea, basicstyles, widget
+
+1. Open browser console.
+1. Select `t` (the last letter) from `Test`.
+1. Click the `Bold` toolbar button.
+1. Switch to the source mode.
+
+**Expected** Editor is switched to the source mode.
+
+**Unexpected** There is an error in the console and editor is not switched to the source mode.
+
+1. Switch back to the editing mode.
+
+**Expected** Editor is switched to the editing mode.
+
+**Unexpected** There is an error in the console and editor is not switched to the editing mode.
diff --git a/tests/plugins/widget/manual/startupdata.html b/tests/plugins/widget/manual/startupdata.html
new file mode 100644
index 00000000..33ec4ee0
--- /dev/null
+++ b/tests/plugins/widget/manual/startupdata.html
@@ -0,0 +1,39 @@
+<p><button id="trigger">Insert widget</button></p>
+<div id="editor">
+	<p>I am the editor</p>
+</div>
+
+<script>
+	( function() {
+		CKEDITOR.plugins.add( 'test', {
+			requires: 'widget',
+			init: function( editor ) {
+				editor.widgets.add( 'test', {
+					requiredContent: 'div(test)',
+					template: '<div class="test">{content}</div>',
+
+					upcast: function( element ) {
+						return element.name == 'div' && element.hasClass( 'test' );
+					},
+
+					defaults: {
+						content: 'default content'
+					},
+				} );
+			}
+		} );
+
+		var editor = CKEDITOR.replace( 'editor', {
+			extraAllowedContent: 'div(test)',
+			extraPlugins: 'test'
+		} );
+
+		CKEDITOR.document.getById( 'trigger' ).on( 'click', function() {
+			editor.execCommand( 'test', {
+				startupData: {
+					content: 'hublabubla'
+				}
+			} );
+		} );
+	} )();
+</script>
diff --git a/tests/plugins/widget/manual/startupdata.md b/tests/plugins/widget/manual/startupdata.md
new file mode 100644
index 00000000..7e709a11
--- /dev/null
+++ b/tests/plugins/widget/manual/startupdata.md
@@ -0,0 +1,11 @@
+@bender-tags: 4.20.2, feature, widget, 3540
+@bender-ui: collapsed
+@bender-ckeditor-plugins: widget, wysiwygarea, toolbar
+
+1. Focus the editor
+2. Click the "Insert widget" button.
+3. Check the content of the inserted widget.
+
+	**Expected** There's a `hublabubla` text inside the widget.
+
+	**Unexpected** There's a `default content` text inside the widget.
diff --git a/tests/plugins/widget/widgetapi.js b/tests/plugins/widget/widgetapi.js
index 9407d77f..d68174fa 100644
--- a/tests/plugins/widget/widgetapi.js
+++ b/tests/plugins/widget/widgetapi.js
@@ -864,6 +864,51 @@
 			this.editorBot.setData( '<p><b class="upcastscope2">Foo</b></p>', function() {
 				assert.areSame( widget, scope, 'Upcasts are called in the context of widget' );
 			} );
+		},
+
+		// (#3540)
+		'test initialization - startup data is used to populate the widget template': function() {
+			bender.editorBot.create( {
+				name: 'test_editor_startupdata',
+				config: {
+					allowedContent: 'div(test)'
+				}
+			}, function( bot ) {
+				var editor = bot.editor,
+					widgetDef = {
+						requiredContent: 'div(test)',
+						template: '<div class="test">{content}</div>',
+
+						upcast: function( element ) {
+							return element.name == 'div' && element.hasClass( 'test' );
+						},
+
+						defaults: {
+							content: 'default content'
+						}
+					},
+					expectedContent = 'hublabubla';
+
+				editor.widgets.add( 'teststartupdata', widgetDef );
+
+				editor.once( 'afterCommandExec', function() {
+					resume( function() {
+						var widget = editor.widgets.instances[ 0 ],
+							widgetContent = widget.element.getHtml();
+
+						assert.areSame( expectedContent, widgetContent );
+					} );
+				} );
+
+				editor.focus();
+				editor.execCommand( 'teststartupdata', {
+					startupData: {
+						content: expectedContent
+					}
+				} );
+
+				wait();
+			} );
 		}
 	} );
 } )();

More details

Full run details