diff --git a/Build/bower.json b/Build/bower.json
index d075ce8112f075079a899b121179ab1864fc0256..697a42a641463265d04f19bb9cf8ae9c54960575 100644
--- a/Build/bower.json
+++ b/Build/bower.json
@@ -42,6 +42,6 @@
     "seiyria-bootstrap-slider": "5.2.4",
     "devbridge-autocomplete": "1.2.24",
     "region-flags": "*",
-    "wmdbsystems-typo3-icons": "0.0.9"
+    "wmdbsystems-typo3-icons": "0.0.10"
   }
 }
diff --git a/typo3/sysext/backend/Resources/Public/Images/Overlay/default.gif b/typo3/sysext/backend/Resources/Public/Images/Overlay/default.gif
deleted file mode 100644
index 929d43e234a114605009afa96b73b13ba63f3ac2..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/backend/Resources/Public/Images/Overlay/default.gif and /dev/null differ
diff --git a/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_deleted.gif b/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_deleted.gif
deleted file mode 100644
index 51e705438b22252a6b79332fd6f80c80c9878a4d..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_deleted.gif and /dev/null differ
diff --git a/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_group.gif b/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_group.gif
deleted file mode 100644
index a012fd83b19921881ca24e0496d97f8aa4fcb8b7..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_group.gif and /dev/null differ
diff --git a/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_hidden.gif b/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_hidden.gif
deleted file mode 100644
index de82eec853a844dee48375973d62959a57a1ce45..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_hidden.gif and /dev/null differ
diff --git a/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_hidden_timing.gif b/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_hidden_timing.gif
deleted file mode 100644
index bb099baef0c140531cf2681a49abc6978a4b0543..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_hidden_timing.gif and /dev/null differ
diff --git a/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_no_icon_found.gif b/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_no_icon_found.gif
deleted file mode 100644
index 9d9c9ef49291474c679210baae8b6fbd885cf4d8..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_no_icon_found.gif and /dev/null differ
diff --git a/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_sub5.gif b/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_sub5.gif
deleted file mode 100644
index e8ed1d1ba01db1d9d1a3ebf8e391ee2e4337f91a..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_sub5.gif and /dev/null differ
diff --git a/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_timing.gif b/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_timing.gif
deleted file mode 100644
index d778b53f0f052d9ef1f8b56a49f6c870302c5b6e..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_timing.gif and /dev/null differ
diff --git a/typo3/sysext/core/Classes/Imaging/IconRegistry.php b/typo3/sysext/core/Classes/Imaging/IconRegistry.php
index af9dd2e52556cc0996ebec3493c664c187b00c48..03d3bd589007a179268f4a810b981859517a02df 100644
--- a/typo3/sysext/core/Classes/Imaging/IconRegistry.php
+++ b/typo3/sysext/core/Classes/Imaging/IconRegistry.php
@@ -1498,6 +1498,18 @@ class IconRegistry implements \TYPO3\CMS\Core\SingletonInterface
                 'source' => 'EXT:core/Resources/Public/Icons/T3Icons/content/content-beside-text-img-right.svg'
             )
         ),
+        'content-inside-text-img-left' => array(
+            'provider' => SvgIconProvider::class,
+            'options' => array(
+                'source' => 'EXT:core/Resources/Public/Icons/T3Icons/content/content-inside-text-img-left.svg'
+            )
+        ),
+        'content-inside-text-img-right' => array(
+            'provider' => SvgIconProvider::class,
+            'options' => array(
+                'source' => 'EXT:core/Resources/Public/Icons/T3Icons/content/content-inside-text-img-right.svg'
+            )
+        ),
         'content-bullets' => array(
             'provider' => SvgIconProvider::class,
             'options' => array(
@@ -1594,10 +1606,10 @@ class IconRegistry implements \TYPO3\CMS\Core\SingletonInterface
                 'source' => 'EXT:core/Resources/Public/Icons/T3Icons/content/content-textpic.svg'
             )
         ),
-        'content-special-media' => array(
-            'provider' => BitmapIconProvider::class,
+        'content-textmedia' => array(
+            'provider' => SvgIconProvider::class,
             'options' => array(
-                'source' => 'EXT:frontend/Resources/Public/Icons/ContentElementWizard/multimedia.gif'
+                'source' => 'EXT:core/Resources/Public/Icons/T3Icons/content/content-textmedia.svg'
             )
         ),
 
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Breaking-72853-RemoveUnusedImagesFromCore.rst b/typo3/sysext/core/Documentation/Changelog/master/Breaking-72853-RemoveUnusedImagesFromCore.rst
new file mode 100644
index 0000000000000000000000000000000000000000..70939b3316c0d3ae02d28d8aeff30a59b5705a1e
--- /dev/null
+++ b/typo3/sysext/core/Documentation/Changelog/master/Breaking-72853-RemoveUnusedImagesFromCore.rst
@@ -0,0 +1,105 @@
+=================================================
+Breaking: #72853 - Remove unused Images from core
+=================================================
+
+Description
+===========
+
+A lot of unused images from the core have been removed.
+Although it is not a good style, some extensions use references to one or more files.
+
+
+Impact
+======
+
+References to the images listed below can throw a 404 not found.
+
+Deleted images:
+
+	typo3/sysext/backend/Resources/Public/Images/Overlay/default.gif
+	typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_deleted.gif
+	typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_group.gif
+	typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_hidden.gif
+	typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_hidden_timing.gif
+	typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_no_icon_found.gif
+	typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_sub5.gif
+	typo3/sysext/backend/Resources/Public/Images/Overlay/overlay_timing.gif
+	typo3/sysext/filemetadata/Resources/Public/Icons/status_1.png
+	typo3/sysext/filemetadata/Resources/Public/Icons/status_2.png
+	typo3/sysext/filemetadata/Resources/Public/Icons/status_3.png
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/bullet_list.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/div.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/filelinks.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/html.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/images_only.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/login_form.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/mailform.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/multimedia.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/regular_header.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/regular_text.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/searchform.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/shortcut.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/sitemap.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/sitemap2.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/table.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/text_image_below.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/text_image_right.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/user_defined.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/above_center.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/above_left.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/above_right.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/below_center.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/below_left.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/below_right.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/intext_left.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/intext_left_nowrap.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/intext_right.gif
+	typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/intext_right_nowrap.gif
+	typo3/sysext/frontend/Resources/Public/Images/wizard_backend_layout.png
+	typo3/sysext/opendocs/Resources/Public/Icons/opendocs.png
+	typo3/sysext/opendocs/Resources/Public/Images/toolbar_item_active_bg.png
+	typo3/sysext/tstemplate/Resources/Public/gfx/BUG_basic.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/BUG_menu.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/BUG_menu2.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/BUSINESS_basic.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/BUSINESS_menu.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/CANDIDATE_basic.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/CANDIDATE_menu.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/CANDIDATE_page.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/CrCPH_basic.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/FIRST_basic.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/FIRST_menu.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/GLCK_basic.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/GLCK_columns.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/GLCK_menu.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/GREEN_basic.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/GREEN_menu.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/GREEN_menu2.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/GREEN_menu3.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_basic.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_menu.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_menu2.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_page.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_toptitle.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/MM_basic.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/MM_menu.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/MM_right.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/NEWSLETTER_basic.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/RE_basic.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/RE_leftmenu.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/RE_menu.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/RE_top.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/TU_basic.gif
+	typo3/sysext/tstemplate/Resources/Public/gfx/TU_menu.gif
+
+
+Affected Installations
+======================
+
+Installations or extensions which have references to this images.
+
+
+Migration
+=========
+
+No migration
diff --git a/typo3/sysext/core/Resources/Public/Icons/T3Icons/content/content-inside-text-img-left.svg b/typo3/sysext/core/Resources/Public/Icons/T3Icons/content/content-inside-text-img-left.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f6adc2d13f359f5db84a8ed04f7fd64778b215d7
--- /dev/null
+++ b/typo3/sysext/core/Resources/Public/Icons/T3Icons/content/content-inside-text-img-left.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="#FFF" d="M1 1h14v14H1V1z"/><path fill="#999" d="M14 2v12H2V2h12m1-1H1v14h14V1z"/><path fill="#59F" d="M3 3h6v6H3V3z"/><path fill="#FFF" d="M7 8H4l.8-1 .8-1 .8 1L7 8z"/><path fill="#FFF" d="M8 8H5.3l.7-.7.7-.7.7.7.6.7z"/><ellipse fill="#FFF" cx="7.5" cy="5.5" rx=".5" ry=".5"/><path fill="#B9B9B9" d="M10 6h3v1h-3zM10 8h3v1h-3zM3 10h10v1H3zM3 12h10v1H3z"/><path fill="#666" d="M10 3h3v2h-3V3z"/></svg>
\ No newline at end of file
diff --git a/typo3/sysext/core/Resources/Public/Icons/T3Icons/content/content-inside-text-img-right.svg b/typo3/sysext/core/Resources/Public/Icons/T3Icons/content/content-inside-text-img-right.svg
new file mode 100644
index 0000000000000000000000000000000000000000..283d97a247e5abdb6edf9ed5a10e3417df96261c
--- /dev/null
+++ b/typo3/sysext/core/Resources/Public/Icons/T3Icons/content/content-inside-text-img-right.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="#FFF" d="M1 1h14v14H1V1z"/><path fill="#999" d="M14 2v12H2V2h12m1-1H1v14h14V1z"/><path fill="#59F" d="M7 3h6v6H7V3z"/><path fill="#FFF" d="M11 8H8l.8-1 .8-1 .8 1 .6 1z"/><path fill="#FFF" d="M12 8H9.3l.7-.7.7-.7.7.7.6.7z"/><ellipse fill="#FFF" cx="11.5" cy="5.5" rx=".5" ry=".5"/><path fill="#B9B9B9" d="M3 6h3v1H3zM3 8h3v1H3zM3 10h10v1H3zM3 12h10v1H3z"/><path fill="#666" d="M3 3h3v2H3V3z"/></svg>
\ No newline at end of file
diff --git a/typo3/sysext/core/Resources/Public/Icons/T3Icons/content/content-textmedia.svg b/typo3/sysext/core/Resources/Public/Icons/T3Icons/content/content-textmedia.svg
new file mode 100644
index 0000000000000000000000000000000000000000..9b1b027a4562e6be3daa8df773aa6a7b51140cef
--- /dev/null
+++ b/typo3/sysext/core/Resources/Public/Icons/T3Icons/content/content-textmedia.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="#FFF" d="M1 1h14v14H1V1z"/><path fill="#999" d="M1 1v14h14V1H1zm1 1h12v12H2V2z"/><path fill="#666" d="M3 3h10v1H3V3z"/><path fill="#B9B9B9" d="M3 5h10v1H3V5z"/><path fill="#639" d="M7 7h6v6H7V7z"/><path fill="#B9B9B9" d="M3 7h3v1H3V7zm0 2h3v1H3V9zm0 2h3v1H3v-1z"/><path fill="#FFF" d="M9 11.5v-3l1.3.8 1.3.8-1.3.8-1.3.6z"/></svg>
\ No newline at end of file
diff --git a/typo3/sysext/core/Resources/Public/Icons/T3Icons/mimetypes/mimetypes-x-content-text-media.svg b/typo3/sysext/core/Resources/Public/Icons/T3Icons/mimetypes/mimetypes-x-content-text-media.svg
new file mode 100644
index 0000000000000000000000000000000000000000..9b1b027a4562e6be3daa8df773aa6a7b51140cef
--- /dev/null
+++ b/typo3/sysext/core/Resources/Public/Icons/T3Icons/mimetypes/mimetypes-x-content-text-media.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="#FFF" d="M1 1h14v14H1V1z"/><path fill="#999" d="M1 1v14h14V1H1zm1 1h12v12H2V2z"/><path fill="#666" d="M3 3h10v1H3V3z"/><path fill="#B9B9B9" d="M3 5h10v1H3V5z"/><path fill="#639" d="M7 7h6v6H7V7z"/><path fill="#B9B9B9" d="M3 7h3v1H3V7zm0 2h3v1H3V9zm0 2h3v1H3v-1z"/><path fill="#FFF" d="M9 11.5v-3l1.3.8 1.3.8-1.3.8-1.3.6z"/></svg>
\ No newline at end of file
diff --git a/typo3/sysext/filemetadata/Configuration/TCA/Overrides/sys_file_metadata.php b/typo3/sysext/filemetadata/Configuration/TCA/Overrides/sys_file_metadata.php
index a1e6becccead966d72002f9b8703ee5df14ae3bc..206bc991d925c47901acabdec4968c990ad39676 100644
--- a/typo3/sysext/filemetadata/Configuration/TCA/Overrides/sys_file_metadata.php
+++ b/typo3/sysext/filemetadata/Configuration/TCA/Overrides/sys_file_metadata.php
@@ -130,17 +130,17 @@ $tca = array(
                     array(
                         'LLL:EXT:filemetadata/Resources/Private/Language/locallang_tca.xlf:sys_file_metadata.status.1',
                         1,
-                        'EXT:filemetadata/Resources/Public/Icons/status_1.png'
+                        'filemetadata-status-1'
                     ),
                     array(
                         'LLL:EXT:filemetadata/Resources/Private/Language/locallang_tca.xlf:sys_file_metadata.status.2',
                         2,
-                        'EXT:filemetadata/Resources/Public/Icons/status_2.png'
+                        'filemetadata-status-2'
                     ),
                     array(
                         'LLL:EXT:filemetadata/Resources/Private/Language/locallang_tca.xlf:sys_file_metadata.status.3',
                         3,
-                        'EXT:filemetadata/Resources/Public/Icons/status_3.png'
+                        'filemetadata-status-3'
                     ),
                 ),
                 'showIconTable' => true,
diff --git a/typo3/sysext/filemetadata/Resources/Public/Icons/status_1.png b/typo3/sysext/filemetadata/Resources/Public/Icons/status_1.png
deleted file mode 100644
index 3899d71dfa7355eba66d13e93290d58f16c31600..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/filemetadata/Resources/Public/Icons/status_1.png and /dev/null differ
diff --git a/typo3/sysext/filemetadata/Resources/Public/Icons/status_2.png b/typo3/sysext/filemetadata/Resources/Public/Icons/status_2.png
deleted file mode 100644
index 88cd6681fb6376dd113afe367befeefbfb1ddc88..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/filemetadata/Resources/Public/Icons/status_2.png and /dev/null differ
diff --git a/typo3/sysext/filemetadata/Resources/Public/Icons/status_3.png b/typo3/sysext/filemetadata/Resources/Public/Icons/status_3.png
deleted file mode 100644
index ab5a4712990b0c61456b5c87496e70e2de6f73f3..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/filemetadata/Resources/Public/Icons/status_3.png and /dev/null differ
diff --git a/typo3/sysext/filemetadata/ext_localconf.php b/typo3/sysext/filemetadata/ext_localconf.php
new file mode 100644
index 0000000000000000000000000000000000000000..00c26dc90a69ef60494d710586c46cde52d0a1d0
--- /dev/null
+++ b/typo3/sysext/filemetadata/ext_localconf.php
@@ -0,0 +1,20 @@
+<?php
+defined('TYPO3_MODE') or die();
+
+$iconRegistry = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Imaging\IconRegistry::class);
+
+$iconRegistry->registerIcon(
+    'filemetadata-status-1',
+    \TYPO3\CMS\Core\Imaging\IconProvider\FontawesomeIconProvider::class,
+    ['name' => 'check']
+);
+$iconRegistry->registerIcon(
+    'filemetadata-status-2',
+    \TYPO3\CMS\Core\Imaging\IconProvider\FontawesomeIconProvider::class,
+    ['name' => 'clock-o']
+);
+$iconRegistry->registerIcon(
+    'filemetadata-status-3',
+    \TYPO3\CMS\Core\Imaging\IconProvider\FontawesomeIconProvider::class,
+    ['name' => 'eye']
+);
diff --git a/typo3/sysext/fluid_styled_content/Configuration/PageTSconfig/NewContentElementWizard.ts b/typo3/sysext/fluid_styled_content/Configuration/PageTSconfig/NewContentElementWizard.ts
index 776b15b28cb255449a6bebf47f696e66aca569f9..b6836699485d7257a952e867a6900c987905fb91 100644
--- a/typo3/sysext/fluid_styled_content/Configuration/PageTSconfig/NewContentElementWizard.ts
+++ b/typo3/sysext/fluid_styled_content/Configuration/PageTSconfig/NewContentElementWizard.ts
@@ -13,7 +13,7 @@ mod.wizards.newContentElement.wizardItems {
 			}
 		}
 		textmedia {
-			iconIdentifier = content-textpic
+			iconIdentifier = content-textmedia
 			title = LLL:EXT:backend/Resources/Private/Language/locallang_db_new_content_el.xlf:common_textMedia_title
 			description = LLL:EXT:backend/Resources/Private/Language/locallang_db_new_content_el.xlf:common_textMedia_description
 			tt_content_defValues {
diff --git a/typo3/sysext/fluid_styled_content/Configuration/TCA/Overrides/tt_content.php b/typo3/sysext/fluid_styled_content/Configuration/TCA/Overrides/tt_content.php
index 69c9796848d2f55329e5e1a6deb71afe047cc998..c26f059030c94cb8c5efc0cbea5e5b59cddea2c0 100644
--- a/typo3/sysext/fluid_styled_content/Configuration/TCA/Overrides/tt_content.php
+++ b/typo3/sysext/fluid_styled_content/Configuration/TCA/Overrides/tt_content.php
@@ -13,7 +13,7 @@ call_user_func(function () {
         [
             $languageFilePrefix . 'tt_content.CType.textmedia',
             'textmedia',
-            'content-textpic'
+            'content-textmedia'
         ],
         'header',
         'after'
diff --git a/typo3/sysext/frontend/Configuration/TCA/backend_layout.php b/typo3/sysext/frontend/Configuration/TCA/backend_layout.php
index 386f68cf3bd9f5e03d9d8959ef24e51c0b7760b7..20bffbb5a8140a8827bd0c860f5c708830c6f7e1 100644
--- a/typo3/sysext/frontend/Configuration/TCA/backend_layout.php
+++ b/typo3/sysext/frontend/Configuration/TCA/backend_layout.php
@@ -53,7 +53,7 @@ return array(
                     0 => array(
                         'title' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:backend_layout.wizard',
                         'type' => 'popup',
-                        'icon' => 'EXT:frontend/Resources/Public/Images/wizard_backend_layout.png',
+                        'icon' => 'wizard-backendlayout',
                         'module' => array(
                             'name' => 'wizard_backend_layout'
                         ),
diff --git a/typo3/sysext/frontend/Configuration/TCA/tt_content.php b/typo3/sysext/frontend/Configuration/TCA/tt_content.php
index c936f0ca27e3c6963873067ada5f98ad2cb4f12c..a7cbb86487c98ef0a0c808c11f5ea5578cd2cf3a 100644
--- a/typo3/sysext/frontend/Configuration/TCA/tt_content.php
+++ b/typo3/sysext/frontend/Configuration/TCA/tt_content.php
@@ -512,42 +512,42 @@ return array(
                     array(
                         'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:imageorient.I.0',
                         0,
-                        'EXT:frontend/Resources/Public/Icons/ImageOrientation/above_center.gif'
+                        'content-beside-text-img-above-center'
                     ),
                     array(
                         'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:imageorient.I.1',
                         1,
-                        'EXT:frontend/Resources/Public/Icons/ImageOrientation/above_right.gif'
+                        'content-beside-text-img-above-right'
                     ),
                     array(
                         'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:imageorient.I.2',
                         2,
-                        'EXT:frontend/Resources/Public/Icons/ImageOrientation/above_left.gif'
+                        'content-beside-text-img-above-left'
                     ),
                     array(
                         'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:imageorient.I.3',
                         8,
-                        'EXT:frontend/Resources/Public/Icons/ImageOrientation/below_center.gif'
+                        'content-beside-text-img-below-center'
                     ),
                     array(
                         'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:imageorient.I.4',
                         9,
-                        'EXT:frontend/Resources/Public/Icons/ImageOrientation/below_right.gif'
+                        'content-beside-text-img-below-right'
                     ),
                     array(
                         'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:imageorient.I.5',
                         10,
-                        'EXT:frontend/Resources/Public/Icons/ImageOrientation/below_left.gif'
+                        'content-beside-text-img-below-left'
                     ),
                     array(
                         'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:imageorient.I.6',
                         17,
-                        'EXT:frontend/Resources/Public/Icons/ImageOrientation/intext_right.gif'
+                        'content-inside-text-img-right'
                     ),
                     array(
                         'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:imageorient.I.7',
                         18,
-                        'EXT:frontend/Resources/Public/Icons/ImageOrientation/intext_left.gif'
+                        'content-inside-text-img-left'
                     ),
                     array(
                         'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:imageorient.I.8',
@@ -556,12 +556,12 @@ return array(
                     array(
                         'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:imageorient.I.9',
                         25,
-                        'EXT:frontend/Resources/Public/Icons/ImageOrientation/intext_right_nowrap.gif'
+                        'content-beside-text-img-right'
                     ),
                     array(
                         'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:imageorient.I.10',
                         26,
-                        'EXT:frontend/Resources/Public/Icons/ImageOrientation/intext_left_nowrap.gif'
+                        'content-beside-text-img-left'
                     )
                 ),
                 'selicon_cols' => 6,
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/bullet_list.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/bullet_list.gif
deleted file mode 100644
index 0aec260ad9f2fa63b8f23418c1bea97d243e1156..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/bullet_list.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/div.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/div.gif
deleted file mode 100644
index 8d60ff2752feb18027ad72507e872be350c4fa9e..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/div.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/filelinks.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/filelinks.gif
deleted file mode 100644
index 92a6d81e3115510c342f762d7826e2a23a49ecd0..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/filelinks.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/html.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/html.gif
deleted file mode 100644
index da40f5830e4971d34875045d719d690a3e8b9fe3..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/html.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/images_only.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/images_only.gif
deleted file mode 100644
index a23e05b3d325b7a8c48536e1214814f95f3ac7c7..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/images_only.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/login_form.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/login_form.gif
deleted file mode 100644
index c8a80fba579c60c799423754724a061ddcd3a578..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/login_form.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/mailform.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/mailform.gif
deleted file mode 100644
index e1dbb2df41debdbb69ec5596115134da3ec4d7c0..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/mailform.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/multimedia.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/multimedia.gif
deleted file mode 100644
index 6f39ea41ce893dc3e6e4e95882363ca068557db6..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/multimedia.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/regular_header.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/regular_header.gif
deleted file mode 100644
index 233cb447fd65ab92d4e74ce8323a3e469712c97d..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/regular_header.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/regular_text.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/regular_text.gif
deleted file mode 100644
index 16f62f7b225f0eb6ba71a7bc042617ca65e5d61d..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/regular_text.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/searchform.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/searchform.gif
deleted file mode 100644
index 9edd1274908049a705cf57158db58f445e803e52..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/searchform.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/shortcut.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/shortcut.gif
deleted file mode 100644
index 0cf6c672005819f410d630deddbfd490d9c7740a..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/shortcut.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/sitemap.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/sitemap.gif
deleted file mode 100644
index d7102ed5e7fcd9664e84413cb628f40847084f6b..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/sitemap.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/sitemap2.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/sitemap2.gif
deleted file mode 100644
index 23d04580ab12c5d3ab4e1d077f5b052be8bd7018..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/sitemap2.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/table.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/table.gif
deleted file mode 100644
index 7f3f6d26df7d272ae78a86aeb6c08d8dc497aa57..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/table.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/text_image_below.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/text_image_below.gif
deleted file mode 100644
index c31665cd2ddc92586d311ade11914855bacb4e8b..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/text_image_below.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/text_image_right.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/text_image_right.gif
deleted file mode 100644
index a39548b8e2f156f4a7b4e9b13a66a83653774b98..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/text_image_right.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/user_defined.gif b/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/user_defined.gif
deleted file mode 100644
index e99b8487bb535036f90844df2605ac840ba91829..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ContentElementWizard/user_defined.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/above_center.gif b/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/above_center.gif
deleted file mode 100644
index 129a2a7d84121d91c3e036269b56d01d2a25218b..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/above_center.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/above_left.gif b/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/above_left.gif
deleted file mode 100644
index 4c9530452c111603d480f9036acbeb3f00ee9f2a..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/above_left.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/above_right.gif b/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/above_right.gif
deleted file mode 100644
index 9b4597689aeb32d271742f880539fa5ecacd63b0..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/above_right.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/below_center.gif b/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/below_center.gif
deleted file mode 100644
index 39ef67fda93e9a8bab0b60358d482ab767d06be8..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/below_center.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/below_left.gif b/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/below_left.gif
deleted file mode 100644
index 101f538b6347ba76b5b08748d6e80efd85f54fbd..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/below_left.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/below_right.gif b/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/below_right.gif
deleted file mode 100644
index c492980614be7c80878bb3e7ec2af4eab495a45d..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/below_right.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/intext_left.gif b/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/intext_left.gif
deleted file mode 100644
index ced7ece2d8d49e6f4b61ea93dc85b6359544dbf4..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/intext_left.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/intext_left_nowrap.gif b/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/intext_left_nowrap.gif
deleted file mode 100644
index 6f98008717ed80f1ca610e22cbfb985ce3481577..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/intext_left_nowrap.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/intext_right.gif b/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/intext_right.gif
deleted file mode 100644
index 21e341d2e0fa2c6ce7b07bd8f5d091583b55a3b7..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/intext_right.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/intext_right_nowrap.gif b/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/intext_right_nowrap.gif
deleted file mode 100644
index f6a1fdb3baccc66266b655045b3be0bc11db0744..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Icons/ImageOrientation/intext_right_nowrap.gif and /dev/null differ
diff --git a/typo3/sysext/frontend/Resources/Public/Images/wizard_backend_layout.png b/typo3/sysext/frontend/Resources/Public/Images/wizard_backend_layout.png
deleted file mode 100644
index cf4ad7985806b973080fb52951e3c6785aae15e7..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/frontend/Resources/Public/Images/wizard_backend_layout.png and /dev/null differ
diff --git a/typo3/sysext/frontend/ext_localconf.php b/typo3/sysext/frontend/ext_localconf.php
index a59d2eb734b43dadb4be4003133be1a471e28b86..538cbb73633c77f5447cee6eaecc13074b5bf7a9 100644
--- a/typo3/sysext/frontend/ext_localconf.php
+++ b/typo3/sysext/frontend/ext_localconf.php
@@ -65,3 +65,10 @@ $GLOBALS['TYPO3_CONF_VARS']['SYS']['livesearch']['content'] = 'tt_content';
 $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['urlProcessing']['urlHandlers']['frontendExternalUrl'] = [
     'handler' => \TYPO3\CMS\Frontend\Page\ExternalPageUrlHandler::class,
 ];
+
+$iconRegistry = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Imaging\IconRegistry::class);
+$iconRegistry->registerIcon(
+    'wizard-backendlayout',
+    \TYPO3\CMS\Core\Imaging\IconProvider\FontawesomeIconProvider::class,
+    ['name' => 'table']
+);
diff --git a/typo3/sysext/lang/cshimages/be_groups_1.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_1.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_1.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_1.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_10.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_10.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_10.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_10.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_11.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_11.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_11.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_11.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_12.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_12.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_12.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_12.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_13.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_13.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_13.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_13.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_14.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_14.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_14.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_14.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_15.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_15.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_15.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_15.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_16.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_16.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_16.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_16.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_17.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_17.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_17.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_17.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_18.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_18.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_18.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_18.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_19.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_19.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_19.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_19.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_2.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_2.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_2.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_2.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_20.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_20.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_20.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_20.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_3.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_3.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_3.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_3.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_4.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_4.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_4.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_4.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_5.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_5.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_5.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_5.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_6.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_6.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_6.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_6.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_7.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_7.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_7.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_7.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_8.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_8.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_8.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_8.png
diff --git a/typo3/sysext/lang/cshimages/be_groups_9.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_9.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/be_groups_9.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/be_groups_9.png
diff --git a/typo3/sysext/lang/cshimages/beuser_1.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/beuser_1.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/beuser_1.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/beuser_1.png
diff --git a/typo3/sysext/lang/cshimages/beuser_2.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/beuser_2.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/beuser_2.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/beuser_2.png
diff --git a/typo3/sysext/lang/cshimages/beuser_3.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/beuser_3.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/beuser_3.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/beuser_3.png
diff --git a/typo3/sysext/lang/cshimages/beuser_4.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/beuser_4.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/beuser_4.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/beuser_4.png
diff --git a/typo3/sysext/lang/cshimages/core_1.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_1.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_1.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_1.png
diff --git a/typo3/sysext/lang/cshimages/core_10.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_10.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_10.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_10.png
diff --git a/typo3/sysext/lang/cshimages/core_11.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_11.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_11.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_11.png
diff --git a/typo3/sysext/lang/cshimages/core_12.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_12.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_12.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_12.png
diff --git a/typo3/sysext/lang/cshimages/core_13.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_13.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_13.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_13.png
diff --git a/typo3/sysext/lang/cshimages/core_14.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_14.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_14.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_14.png
diff --git a/typo3/sysext/lang/cshimages/core_15.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_15.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_15.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_15.png
diff --git a/typo3/sysext/lang/cshimages/core_16.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_16.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_16.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_16.png
diff --git a/typo3/sysext/lang/cshimages/core_17.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_17.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_17.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_17.png
diff --git a/typo3/sysext/lang/cshimages/core_18.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_18.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_18.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_18.png
diff --git a/typo3/sysext/lang/cshimages/core_19.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_19.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_19.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_19.png
diff --git a/typo3/sysext/lang/cshimages/core_2.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_2.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_2.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_2.png
diff --git a/typo3/sysext/lang/cshimages/core_20.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_20.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_20.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_20.png
diff --git a/typo3/sysext/lang/cshimages/core_21.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_21.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_21.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_21.png
diff --git a/typo3/sysext/lang/cshimages/core_22.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_22.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_22.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_22.png
diff --git a/typo3/sysext/lang/cshimages/core_23.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_23.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_23.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_23.png
diff --git a/typo3/sysext/lang/cshimages/core_24.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_24.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_24.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_24.png
diff --git a/typo3/sysext/lang/cshimages/core_25.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_25.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_25.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_25.png
diff --git a/typo3/sysext/lang/cshimages/core_26.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_26.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_26.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_26.png
diff --git a/typo3/sysext/lang/cshimages/core_27.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_27.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_27.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_27.png
diff --git a/typo3/sysext/lang/cshimages/core_28.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_28.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_28.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_28.png
diff --git a/typo3/sysext/lang/cshimages/core_29.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_29.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_29.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_29.png
diff --git a/typo3/sysext/lang/cshimages/core_3.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_3.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_3.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_3.png
diff --git a/typo3/sysext/lang/cshimages/core_30.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_30.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_30.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_30.png
diff --git a/typo3/sysext/lang/cshimages/core_31.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_31.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_31.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_31.png
diff --git a/typo3/sysext/lang/cshimages/core_32.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_32.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_32.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_32.png
diff --git a/typo3/sysext/lang/cshimages/core_33.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_33.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_33.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_33.png
diff --git a/typo3/sysext/lang/cshimages/core_34.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_34.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_34.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_34.png
diff --git a/typo3/sysext/lang/cshimages/core_35.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_35.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_35.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_35.png
diff --git a/typo3/sysext/lang/cshimages/core_36.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_36.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_36.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_36.png
diff --git a/typo3/sysext/lang/cshimages/core_37.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_37.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_37.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_37.png
diff --git a/typo3/sysext/lang/cshimages/core_38.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_38.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_38.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_38.png
diff --git a/typo3/sysext/lang/cshimages/core_39.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_39.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_39.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_39.png
diff --git a/typo3/sysext/lang/cshimages/core_4.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_4.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_4.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_4.png
diff --git a/typo3/sysext/lang/cshimages/core_40.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_40.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_40.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_40.png
diff --git a/typo3/sysext/lang/cshimages/core_41.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_41.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_41.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_41.png
diff --git a/typo3/sysext/lang/cshimages/core_42.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_42.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_42.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_42.png
diff --git a/typo3/sysext/lang/cshimages/core_43.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_43.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_43.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_43.png
diff --git a/typo3/sysext/lang/cshimages/core_44.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_44.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_44.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_44.png
diff --git a/typo3/sysext/lang/cshimages/core_46.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_46.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_46.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_46.png
diff --git a/typo3/sysext/lang/cshimages/core_47.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_47.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_47.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_47.png
diff --git a/typo3/sysext/lang/cshimages/core_48.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_48.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_48.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_48.png
diff --git a/typo3/sysext/lang/cshimages/core_49.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_49.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_49.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_49.png
diff --git a/typo3/sysext/lang/cshimages/core_5.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_5.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_5.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_5.png
diff --git a/typo3/sysext/lang/cshimages/core_50.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_50.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_50.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_50.png
diff --git a/typo3/sysext/lang/cshimages/core_51.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_51.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_51.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_51.png
diff --git a/typo3/sysext/lang/cshimages/core_52.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_52.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_52.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_52.png
diff --git a/typo3/sysext/lang/cshimages/core_53.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_53.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_53.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_53.png
diff --git a/typo3/sysext/lang/cshimages/core_54.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_54.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_54.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_54.png
diff --git a/typo3/sysext/lang/cshimages/core_55.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_55.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_55.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_55.png
diff --git a/typo3/sysext/lang/cshimages/core_56.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_56.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_56.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_56.png
diff --git a/typo3/sysext/lang/cshimages/core_57.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_57.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_57.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_57.png
diff --git a/typo3/sysext/lang/cshimages/core_58.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_58.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_58.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_58.png
diff --git a/typo3/sysext/lang/cshimages/core_59.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_59.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_59.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_59.png
diff --git a/typo3/sysext/lang/cshimages/core_6.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_6.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_6.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_6.png
diff --git a/typo3/sysext/lang/cshimages/core_60.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_60.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_60.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_60.png
diff --git a/typo3/sysext/lang/cshimages/core_61.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_61.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_61.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_61.png
diff --git a/typo3/sysext/lang/cshimages/core_62.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_62.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_62.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_62.png
diff --git a/typo3/sysext/lang/cshimages/core_63.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_63.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_63.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_63.png
diff --git a/typo3/sysext/lang/cshimages/core_64.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_64.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_64.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_64.png
diff --git a/typo3/sysext/lang/cshimages/core_65.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_65.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_65.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_65.png
diff --git a/typo3/sysext/lang/cshimages/core_67.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_67.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_67.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_67.png
diff --git a/typo3/sysext/lang/cshimages/core_68.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_68.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_68.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_68.png
diff --git a/typo3/sysext/lang/cshimages/core_69.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_69.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_69.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_69.png
diff --git a/typo3/sysext/lang/cshimages/core_7.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_7.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_7.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_7.png
diff --git a/typo3/sysext/lang/cshimages/core_70.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_70.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_70.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_70.png
diff --git a/typo3/sysext/lang/cshimages/core_8.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_8.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_8.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_8.png
diff --git a/typo3/sysext/lang/cshimages/core_9.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/core_9.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/core_9.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/core_9.png
diff --git a/typo3/sysext/lang/cshimages/em_1.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/em_1.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/em_1.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/em_1.png
diff --git a/typo3/sysext/lang/cshimages/em_10.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/em_10.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/em_10.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/em_10.png
diff --git a/typo3/sysext/lang/cshimages/em_11.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/em_11.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/em_11.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/em_11.png
diff --git a/typo3/sysext/lang/cshimages/em_12.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/em_12.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/em_12.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/em_12.png
diff --git a/typo3/sysext/lang/cshimages/em_2.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/em_2.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/em_2.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/em_2.png
diff --git a/typo3/sysext/lang/cshimages/em_3.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/em_3.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/em_3.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/em_3.png
diff --git a/typo3/sysext/lang/cshimages/em_4.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/em_4.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/em_4.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/em_4.png
diff --git a/typo3/sysext/lang/cshimages/em_5.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/em_5.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/em_5.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/em_5.png
diff --git a/typo3/sysext/lang/cshimages/em_6.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/em_6.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/em_6.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/em_6.png
diff --git a/typo3/sysext/lang/cshimages/em_7.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/em_7.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/em_7.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/em_7.png
diff --git a/typo3/sysext/lang/cshimages/em_8.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/em_8.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/em_8.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/em_8.png
diff --git a/typo3/sysext/lang/cshimages/em_9.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/em_9.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/em_9.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/em_9.png
diff --git a/typo3/sysext/lang/cshimages/filemount_1.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/filemount_1.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/filemount_1.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/filemount_1.png
diff --git a/typo3/sysext/lang/cshimages/login.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/login.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/login.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/login.png
diff --git a/typo3/sysext/lang/cshimages/pages_1.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/pages_1.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/pages_1.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/pages_1.png
diff --git a/typo3/sysext/lang/cshimages/pages_2.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/pages_2.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/pages_2.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/pages_2.png
diff --git a/typo3/sysext/lang/cshimages/pages_3.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/pages_3.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/pages_3.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/pages_3.png
diff --git a/typo3/sysext/lang/cshimages/pages_4.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/pages_4.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/pages_4.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/pages_4.png
diff --git a/typo3/sysext/lang/cshimages/pages_5.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/pages_5.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/pages_5.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/pages_5.png
diff --git a/typo3/sysext/lang/cshimages/pages_6.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/pages_6.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/pages_6.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/pages_6.png
diff --git a/typo3/sysext/lang/cshimages/pages_7.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/pages_7.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/pages_7.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/pages_7.png
diff --git a/typo3/sysext/lang/cshimages/pages_8.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/pages_8.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/pages_8.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/pages_8.png
diff --git a/typo3/sysext/lang/cshimages/pagetree_overview_10.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/pagetree_overview_10.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/pagetree_overview_10.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/pagetree_overview_10.png
diff --git a/typo3/sysext/lang/cshimages/pagetree_overview_11.png b/typo3/sysext/lang/Resources/Public/Images/cshimages/pagetree_overview_11.png
similarity index 100%
rename from typo3/sysext/lang/cshimages/pagetree_overview_11.png
rename to typo3/sysext/lang/Resources/Public/Images/cshimages/pagetree_overview_11.png
diff --git a/typo3/sysext/lang/locallang_csh_be_groups.xlf b/typo3/sysext/lang/locallang_csh_be_groups.xlf
index c6262ec88caddecca48ce48eb5bfdfaa6067888a..26fab4f7e1d77e4887bcd4df13a6d9f1c1f09bc3 100644
--- a/typo3/sysext/lang/locallang_csh_be_groups.xlf
+++ b/typo3/sysext/lang/locallang_csh_be_groups.xlf
@@ -17,8 +17,8 @@ How to set up a backend user | https://docs.typo3.org/typo3cms/InsideTypo3Refere
 Setting up groups (from "Getting Started") | https://docs.typo3.org/typo3cms/GettingStartedTutorial/EditAndCreatePagesAndContent/CreateUsersGroups/</source>
 			</trans-unit>
 			<trans-unit id="_.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/be_groups_2.png,
-EXT:lang/cshimages/be_groups_1.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/be_groups_2.png,
+EXT:lang/Resources/Public/Images/cshimages/be_groups_1.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id=".image_descr" xml:space="preserve">
@@ -32,7 +32,7 @@ This usergroup has Access Lists enabled. In the Access Lists you specify which m
 				<source>Backend Usergroups are identified by their "uid" field value (integer) and therefore the title can always be changed. The "uid" can never be changed for a user group.</source>
 			</trans-unit>
 			<trans-unit id="_title.image">
-				<source>EXT:lang/cshimages/be_groups_2.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/be_groups_2.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="title.image_descr">
@@ -54,8 +54,8 @@ xMOD_csh_corebe:list_module</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_db_mountpoints.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/be_groups_3.png,
-EXT:lang/cshimages/be_groups_4.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/be_groups_3.png,
+EXT:lang/Resources/Public/Images/cshimages/be_groups_4.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="db_mountpoints.image_descr" xml:space="preserve">
@@ -82,10 +82,10 @@ More about File Mounts | https://docs.typo3.org/typo3cms/InsideTypo3Reference/Co
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_file_mountpoints.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/be_groups_5.png,
-EXT:lang/cshimages/be_groups_6.png,
-EXT:lang/cshimages/be_groups_7.png,
-EXT:lang/cshimages/be_groups_8.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/be_groups_5.png,
+EXT:lang/Resources/Public/Images/cshimages/be_groups_6.png,
+EXT:lang/Resources/Public/Images/cshimages/be_groups_7.png,
+EXT:lang/Resources/Public/Images/cshimages/be_groups_8.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="file_mountpoints.image_descr" xml:space="preserve">
@@ -136,7 +136,7 @@ be_groups:inc_access_lists</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_pagetypes_select.image">
-				<source>EXT:lang/cshimages/be_groups_9.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/be_groups_9.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="pagetypes_select.image_descr">
@@ -158,9 +158,9 @@ xMOD_csh_corebe:new_ce</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_tables_modify.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/be_groups_10.png,
-EXT:lang/cshimages/be_groups_15.png,
-EXT:lang/cshimages/be_groups_11.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/be_groups_10.png,
+EXT:lang/Resources/Public/Images/cshimages/be_groups_15.png,
+EXT:lang/Resources/Public/Images/cshimages/be_groups_11.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="tables_modify.image_descr" xml:space="preserve">
@@ -194,7 +194,7 @@ Examples from "Getting Started" | https://docs.typo3.org/typo3cms/GettingStarted
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_non_exclude_fields.image">
-				<source>EXT:lang/cshimages/be_groups_14.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/be_groups_14.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="hidden.description">
@@ -230,8 +230,8 @@ Backend Interface | https://docs.typo3.org/typo3cms/InsideTypo3Reference/CoreArc
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_groupMods.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/be_groups_12.png,
-EXT:lang/cshimages/be_groups_13.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/be_groups_12.png,
+EXT:lang/Resources/Public/Images/cshimages/be_groups_13.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="groupMods.image_descr" xml:space="preserve">
@@ -279,8 +279,8 @@ TypoScript Syntax | https://docs.typo3.org/typo3cms/TyposcriptSyntaxReference/</
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_TSconfig.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/be_groups_16.png,
-EXT:lang/cshimages/be_groups_17.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/be_groups_16.png,
+EXT:lang/Resources/Public/Images/cshimages/be_groups_17.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="TSconfig.image_descr" xml:space="preserve">
@@ -311,7 +311,7 @@ If a value has the prefix "Deny" (red icon) it means that by default users can s
 The list is organized so values from the same selector box is listed together. If values from a selectorbox is not present in the allow/deny list it simply means they are not evaluated and hence they can be set by anyone having access to the field in general.</source>
 			</trans-unit>
 			<trans-unit id="_explicit_allowdeny.image">
-				<source>EXT:lang/cshimages/be_groups_19.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/be_groups_19.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="allowed_languages.description">
@@ -326,7 +326,7 @@ If a user has no languages listed all together it simply means that he can edit
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_allowed_languages.image">
-				<source>EXT:lang/cshimages/be_groups_18.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/be_groups_18.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="allowed_languages.image_descr">
@@ -339,7 +339,7 @@ If a user has no languages listed all together it simply means that he can edit
 				<source>This list represents custom permissions introduced by various backend modules (from extensions). The significance of each option depends on the backend module that evaluates it.</source>
 			</trans-unit>
 			<trans-unit id="_custom_options.image">
-				<source>EXT:lang/cshimages/be_groups_20.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/be_groups_20.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="custom_options.image_descr">
diff --git a/typo3/sysext/lang/locallang_csh_be_users.xlf b/typo3/sysext/lang/locallang_csh_be_users.xlf
index 836487ca9460b13d5ff5c979531619958772f9d9..23747ac98f472e672ecc953424b32cf76f788d1a 100644
--- a/typo3/sysext/lang/locallang_csh_be_users.xlf
+++ b/typo3/sysext/lang/locallang_csh_be_users.xlf
@@ -27,9 +27,9 @@ Setting up a new user and group | https://docs.typo3.org/typo3cms/InsideTypo3Ref
 Users and Groups [Technical] | https://docs.typo3.org/typo3cms/InsideTypo3Reference/CoreArchitecture/AccessControl/UsersAndGroups/</source>
 			</trans-unit>
 			<trans-unit id="_.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/beuser_2.png,
-EXT:lang/cshimages/beuser_1.png,
-EXT:lang/cshimages/beuser_3.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/beuser_2.png,
+EXT:lang/Resources/Public/Images/cshimages/beuser_1.png,
+EXT:lang/Resources/Public/Images/cshimages/beuser_3.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id=".image_descr" xml:space="preserve">
@@ -112,8 +112,8 @@ xMOD_csh_corebe:pagetree</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_db_mountpoints.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/be_groups_3.png,
-EXT:lang/cshimages/be_groups_4.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/be_groups_3.png,
+EXT:lang/Resources/Public/Images/cshimages/be_groups_4.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="db_mountpoints.image_descr" xml:space="preserve">
@@ -178,7 +178,7 @@ be_users:endtime</source>
 You should probably not assign any other users than yourself as an 'Admin' user.</source>
 			</trans-unit>
 			<trans-unit id="_admin.image">
-				<source>EXT:lang/cshimages/beuser_4.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/beuser_4.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="options.description">
@@ -289,7 +289,7 @@ User TSconfig | https://docs.typo3.org/typo3cms/TSconfigReference/UserTsconfig/<
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_allowed_languages.image">
-				<source>EXT:lang/cshimages/be_groups_18.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/be_groups_18.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 		</body>
diff --git a/typo3/sysext/lang/locallang_csh_corebe.xlf b/typo3/sysext/lang/locallang_csh_corebe.xlf
index 1afa4f1c26158e3bc6d602069ae261d5a4afb2b7..18ecfb869f396cb1bd6ca6b9c7367f1ba5b38042 100644
--- a/typo3/sysext/lang/locallang_csh_corebe.xlf
+++ b/typo3/sysext/lang/locallang_csh_corebe.xlf
@@ -16,7 +16,7 @@
 				<source>Inside TYPO3 | https://docs.typo3.org/typo3cms/InsideTypo3Reference/</source>
 			</trans-unit>
 			<trans-unit id="_.image">
-				<source>EXT:lang/cshimages/login.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/login.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id=".image_descr">
@@ -42,8 +42,8 @@ More about Modules | https://docs.typo3.org/typo3cms/GettingStartedTutorial/Gene
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_menu_modules.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_2.png,
-EXT:lang/cshimages/core_3.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_2.png,
+EXT:lang/Resources/Public/Images/cshimages/core_3.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="menu_modules.image_descr" xml:space="preserve">
@@ -72,7 +72,7 @@ TYPO3 also caches small configuration scripts from extensions, "ext_localconf.ph
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_menu_adminFunction.image">
-				<source>EXT:lang/cshimages/core_1.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_1.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="pagetree.alttitle">
@@ -101,10 +101,10 @@ Moving pages (Animation) | FILE:EXT:welcome/modsub/ani_08.gif</source>
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_pagetree.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_4.png,
-EXT:lang/cshimages/core_5.png,
-EXT:lang/cshimages/core_6.png,
-EXT:lang/cshimages/core_7.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_4.png,
+EXT:lang/Resources/Public/Images/cshimages/core_5.png,
+EXT:lang/Resources/Public/Images/cshimages/core_6.png,
+EXT:lang/Resources/Public/Images/cshimages/core_7.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="pagetree.image_descr" xml:space="preserve">
@@ -143,9 +143,9 @@ xMOD_csh_corebe:filelist_module</source>
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_filetree.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_8.png,
-EXT:lang/cshimages/core_9.png,
-EXT:lang/cshimages/core_10.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_8.png,
+EXT:lang/Resources/Public/Images/cshimages/core_9.png,
+EXT:lang/Resources/Public/Images/cshimages/core_10.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="filetree.image_descr" xml:space="preserve">
@@ -198,9 +198,9 @@ The List module ("Inside TYPO3") | https://docs.typo3.org/typo3cms/InsideTypo3Re
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_list_module.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_11.png,
-EXT:lang/cshimages/core_12.png,
-EXT:lang/cshimages/core_34.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_11.png,
+EXT:lang/Resources/Public/Images/cshimages/core_12.png,
+EXT:lang/Resources/Public/Images/cshimages/core_34.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="list_module.image_descr" xml:space="preserve">
@@ -234,8 +234,8 @@ The List module ("Inside TYPO3") | https://docs.typo3.org/typo3cms/InsideTypo3Re
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_list_module_root.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_13.png,
-EXT:lang/cshimages/core_14.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_13.png,
+EXT:lang/Resources/Public/Images/cshimages/core_14.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="list_module_root.image_descr" xml:space="preserve">
@@ -258,8 +258,8 @@ Accessing clipboard in scripts [Technical] | https://docs.typo3.org/typo3cms/Cor
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_list_clipboard.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_16.png,
-EXT:lang/cshimages/core_17.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_16.png,
+EXT:lang/Resources/Public/Images/cshimages/core_17.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="list_clipboard.image_descr" xml:space="preserve">
@@ -277,7 +277,7 @@ If you select one of the numeric clipboard pads you will be able to store more t
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_list_searchbox.image">
-				<source>EXT:lang/cshimages/core_15.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_15.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="list_options.alttitle">
@@ -293,8 +293,8 @@ xMOD_csh_corebe:filelist_options</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_list_options.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_18.png,
-EXT:lang/cshimages/core_19.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_18.png,
+EXT:lang/Resources/Public/Images/cshimages/core_19.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="list_options.image_descr" xml:space="preserve">
@@ -313,7 +313,7 @@ xMOD_csh_corebe:new_pages</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_new_regular.image">
-				<source>EXT:lang/cshimages/core_70.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_70.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="new_regular.image_descr">
@@ -332,8 +332,8 @@ How to create a new page | https://docs.typo3.org/typo3cms/GettingStartedTutoria
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_new_pages.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_20.png,
-EXT:lang/cshimages/core_21.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_20.png,
+EXT:lang/Resources/Public/Images/cshimages/core_21.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="new_pages.image_descr" xml:space="preserve">
@@ -358,9 +358,9 @@ Adding Custom elements [Technical] | https://docs.typo3.org/typo3cms/CoreApiRefe
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_new_ce.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_22.png,
-EXT:lang/cshimages/core_23.png,
-EXT:lang/cshimages/core_24.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_22.png,
+EXT:lang/Resources/Public/Images/cshimages/core_23.png,
+EXT:lang/Resources/Public/Images/cshimages/core_24.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="new_ce.image_descr" xml:space="preserve">
@@ -384,8 +384,8 @@ Moving pages | https://docs.typo3.org/typo3cms/GettingStartedTutorial/EditAndCre
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_move_el_pages.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_27.png,
-EXT:lang/cshimages/core_28.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_27.png,
+EXT:lang/Resources/Public/Images/cshimages/core_28.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="move_el_pages.image_descr" xml:space="preserve">
@@ -407,8 +407,8 @@ xMOD_csh_corebe:new_regular</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_move_el_cs.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_25.png,
-EXT:lang/cshimages/core_26.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_25.png,
+EXT:lang/Resources/Public/Images/cshimages/core_26.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="move_el_cs.image_descr" xml:space="preserve">
@@ -438,8 +438,8 @@ Undo/History article | http://typo3.org/documentation/tips-tricks/the-undohistor
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_history_log.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_37.png,
-EXT:lang/cshimages/core_38.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_37.png,
+EXT:lang/Resources/Public/Images/cshimages/core_38.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="history_log.image_descr" xml:space="preserve">
@@ -464,7 +464,7 @@ Undo/History article | http://typo3.org/documentation/tips-tricks/the-undohistor
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_history_sum.image">
-				<source>EXT:lang/cshimages/core_39.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_39.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="history_sum.image_descr">
@@ -480,7 +480,7 @@ Undo/History article | http://typo3.org/documentation/tips-tricks/the-undohistor
 				<source>&lt;b&gt;Notice:&lt;/b&gt; If you do not see red/green difference values, the server TYPO3 runs on does not support making difference views or it has been incorrectly configured to provide this feature.</source>
 			</trans-unit>
 			<trans-unit id="_history_entry.image">
-				<source>EXT:lang/cshimages/core_40.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_40.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="TCEforms.alttitle">
@@ -511,11 +511,11 @@ Page TSconfig related to forms | https://docs.typo3.org/typo3cms/CoreApiReferenc
 Linking to the edit forms [Technical] | https://docs.typo3.org/typo3cms/CoreApiReference/ApiOverview/Examples/EditLinks/</source>
 			</trans-unit>
 			<trans-unit id="_TCEforms.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_30.png,
-EXT:lang/cshimages/core_29.png,
-EXT:lang/cshimages/core_32.png,
-EXT:lang/cshimages/core_33.png,
-EXT:lang/cshimages/core_31.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_30.png,
+EXT:lang/Resources/Public/Images/cshimages/core_29.png,
+EXT:lang/Resources/Public/Images/cshimages/core_32.png,
+EXT:lang/Resources/Public/Images/cshimages/core_33.png,
+EXT:lang/Resources/Public/Images/cshimages/core_31.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="TCEforms.image_descr" xml:space="preserve">
@@ -529,7 +529,7 @@ The "additional fields" from the example above is located in a so called "palett
 				<source>Here you can switch between "open documents" in TYPO3.</source>
 			</trans-unit>
 			<trans-unit id="_TCEforms_docSelector.image">
-				<source>EXT:lang/cshimages/core_35.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_35.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="TCEforms_cacheSelector.alttitle">
@@ -546,7 +546,7 @@ If cache options are not available for you, you should ask your administrator to
 				<source>User TSconfig (See "clearCache.pages/.all") | https://docs.typo3.org/typo3cms/TSconfigReference/PageTsconfig/Options/</source>
 			</trans-unit>
 			<trans-unit id="_TCEforms_cacheSelector.image">
-				<source>EXT:lang/cshimages/core_36.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_36.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="perm_module.alttitle">
@@ -573,8 +573,8 @@ _MOD_user_setup:option_helpText</source>
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_perm_module.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_43.png,
-EXT:lang/cshimages/core_41.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_43.png,
+EXT:lang/Resources/Public/Images/cshimages/core_41.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="perm_module_setting.alttitle">
@@ -607,7 +607,7 @@ User Management Howto | https://docs.typo3.org/typo3cms/GettingStartedTutorial/U
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_perm_module_setting.image">
-				<source>EXT:lang/cshimages/core_42.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_42.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="perm_module_setting.image_descr">
@@ -637,8 +637,8 @@ sys_filemounts</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_filelist_module.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_47.png,
-EXT:lang/cshimages/core_49.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_47.png,
+EXT:lang/Resources/Public/Images/cshimages/core_49.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="filelist_module.image_descr" xml:space="preserve">
@@ -657,8 +657,8 @@ About the Clipboard [Technical] | https://docs.typo3.org/typo3cms/InsideTypo3Ref
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_filelist_clipboard.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_44.png,
-EXT:lang/cshimages/core_46.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_44.png,
+EXT:lang/Resources/Public/Images/cshimages/core_46.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="filelist_clipboard.image_descr" xml:space="preserve">
@@ -678,7 +678,7 @@ xMOD_csh_corebe:filelist_clipboard</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_filelist_options.image">
-				<source>EXT:lang/cshimages/core_48.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_48.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="filelist_options.image_descr">
@@ -695,7 +695,7 @@ xMOD_csh_corebe:filelist_clipboard</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_file_edit.image">
-				<source>EXT:lang/cshimages/core_50.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_50.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="file_edit.image_descr">
@@ -714,9 +714,9 @@ xMOD_csh_corebe:file_rename</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_file_newfolder.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_51.png,
-EXT:lang/cshimages/core_52.png,
-EXT:lang/cshimages/core_53.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_51.png,
+EXT:lang/Resources/Public/Images/cshimages/core_52.png,
+EXT:lang/Resources/Public/Images/cshimages/core_53.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="file_newfolder.image_descr" xml:space="preserve">
@@ -741,9 +741,9 @@ xMOD_csh_corebe:file_rename</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_file_newfile.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_51.png,
-EXT:lang/cshimages/core_54.png,
-EXT:lang/cshimages/core_55.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_51.png,
+EXT:lang/Resources/Public/Images/cshimages/core_54.png,
+EXT:lang/Resources/Public/Images/cshimages/core_55.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="file_newfile.image_descr" xml:space="preserve">
@@ -768,8 +768,8 @@ After pressing "Create file" you will see a new, empty file in the folder you se
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_file_rename.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_56.png,
-EXT:lang/cshimages/core_57.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_56.png,
+EXT:lang/Resources/Public/Images/cshimages/core_57.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="file_rename.image_descr" xml:space="preserve">
@@ -795,8 +795,8 @@ How-to upload files | https://docs.typo3.org/typo3cms/GettingStartedTutorial/The
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_file_upload.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_58.png,
-EXT:lang/cshimages/core_59.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_58.png,
+EXT:lang/Resources/Public/Images/cshimages/core_59.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="file_upload.image_descr" xml:space="preserve">
@@ -823,8 +823,8 @@ Form Wizard details [Technical]| https://docs.typo3.org/typo3cms/CoreApiReferenc
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_wizard_forms_wiz.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_60.png,
-EXT:lang/cshimages/core_69.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_60.png,
+EXT:lang/Resources/Public/Images/cshimages/core_69.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="wizard_forms_wiz.image_descr" xml:space="preserve">
@@ -838,7 +838,7 @@ Usually you enter the Form Wizard by clicking the form wizard icon next for a te
 				<source>Use the refresh button to update the form (without saving it), for instance if you changed a field type or so. When you are done you should click one of the real save buttons to save and return to the form from which you entered the wizard. The information from this wizard should then be saved into the field the wizard was associated with.</source>
 			</trans-unit>
 			<trans-unit id="_wizard_forms_wiz_buttons.image">
-				<source>EXT:lang/cshimages/core_62.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_62.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="wizard_forms_wiz_formmail_info.alttitle">
@@ -854,7 +854,7 @@ Usually you enter the Form Wizard by clicking the form wizard icon next for a te
 				<source>How-to create Mail Forms | https://docs.typo3.org/typo3cms/GettingStartedTutorial/EditAndCreatePagesAndContent/EmailForm/</source>
 			</trans-unit>
 			<trans-unit id="_wizard_forms_wiz_formmail_info.image">
-				<source>EXT:lang/cshimages/core_61.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_61.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="wizard_table_wiz.alttitle">
@@ -873,7 +873,7 @@ Table Wizard details [Technical]| https://docs.typo3.org/typo3cms/TCAReference/A
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_wizard_table_wiz.image">
-				<source>EXT:lang/cshimages/core_63.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_63.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="wizard_table_wiz_buttons.alttitle">
@@ -883,7 +883,7 @@ Table Wizard details [Technical]| https://docs.typo3.org/typo3cms/TCAReference/A
 				<source>Use the refresh button to update the form without saving it. When you are done you should click one of the real save buttons to save and return to the form from which you entered the wizard. The information from this wizard should then be saved into the field the wizard was associated with.</source>
 			</trans-unit>
 			<trans-unit id="_wizard_table_wiz_buttons.image">
-				<source>EXT:lang/cshimages/core_62.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_62.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="shortcuts.alttitle">
@@ -905,10 +905,10 @@ Editing pages from an id is easy with the shortcut frame. Simply enter an intege
 				<source>User TSconfig -&gt;SETUP | https://docs.typo3.org/typo3cms/TSconfigReference/UserTsconfig/Options/</source>
 			</trans-unit>
 			<trans-unit id="_shortcuts.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_64.png,
-EXT:lang/cshimages/core_65.png,
-EXT:lang/cshimages/core_67.png,
-EXT:lang/cshimages/core_68.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_64.png,
+EXT:lang/Resources/Public/Images/cshimages/core_65.png,
+EXT:lang/Resources/Public/Images/cshimages/core_67.png,
+EXT:lang/Resources/Public/Images/cshimages/core_68.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="shortcuts.image_descr" xml:space="preserve">
@@ -930,10 +930,10 @@ You can name shortcuts, you can even group them and share them. If you want to e
 				<source>User TSconfig -&gt;SETUP | https://docs.typo3.org/typo3cms/TSconfigReference/UserTsconfig/Options/</source>
 			</trans-unit>
 			<trans-unit id="_bookmarks.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/core_64.png,
-EXT:lang/cshimages/core_65.png,
-EXT:lang/cshimages/core_67.png,
-EXT:lang/cshimages/core_68.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/core_64.png,
+EXT:lang/Resources/Public/Images/cshimages/core_65.png,
+EXT:lang/Resources/Public/Images/cshimages/core_67.png,
+EXT:lang/Resources/Public/Images/cshimages/core_68.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="bookmarks.image_descr" xml:space="preserve">
diff --git a/typo3/sysext/lang/locallang_csh_pages.xlf b/typo3/sysext/lang/locallang_csh_pages.xlf
index 3f00b550d41de65415c52505c325fbafd97d4b94..cb1d6d8a8f69dd3e99f34c9fcc5ffd9190c5e7f6 100644
--- a/typo3/sysext/lang/locallang_csh_pages.xlf
+++ b/typo3/sysext/lang/locallang_csh_pages.xlf
@@ -25,8 +25,8 @@ About pages | https://docs.typo3.org/typo3cms/GettingStartedTutorial/GeneralPrin
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/pages_1.png,
-EXT:lang/cshimages/pages_2.png,</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/pages_1.png,
+EXT:lang/Resources/Public/Images/cshimages/pages_2.png,</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id=".image_descr" xml:space="preserve">
@@ -42,7 +42,7 @@ You can always change the 'Page Title' without affecting links to a page. This i
 You can use any characters in the 'Page Title'.</source>
 			</trans-unit>
 			<trans-unit id="_title.image">
-				<source>EXT:lang/cshimages/pages_3.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/pages_3.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="title.image_descr">
@@ -67,7 +67,7 @@ About $PAGES_TYPES | https://docs.typo3.org/typo3cms/CoreApiReference/PageTypes/
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_doktype.image">
-				<source>EXT:lang/cshimages/pages_4.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/pages_4.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="doktype.image_descr">
@@ -92,7 +92,7 @@ More about Page TSconfig | https://docs.typo3.org/typo3cms/TSconfigReference/Pag
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_TSconfig.image">
-				<source>EXT:lang/cshimages/pages_5.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/pages_5.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="TSconfig.image_descr">
@@ -111,9 +111,9 @@ This option was designed to prevent the display of a branch with an unmanageable
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_php_tree_stop.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/pages_8.png,
-EXT:lang/cshimages/pages_6.png,
-EXT:lang/cshimages/pages_7.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/pages_8.png,
+EXT:lang/Resources/Public/Images/cshimages/pages_6.png,
+EXT:lang/Resources/Public/Images/cshimages/pages_7.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="php_tree_stop.image_descr" xml:space="preserve">
diff --git a/typo3/sysext/lang/locallang_csh_sysfilem.xlf b/typo3/sysext/lang/locallang_csh_sysfilem.xlf
index 5b3b57a2ed3cd80baff5683689f2d5aad65f2246..c990ff3d64faa2b377aa615ecf39042e2290d826 100644
--- a/typo3/sysext/lang/locallang_csh_sysfilem.xlf
+++ b/typo3/sysext/lang/locallang_csh_sysfilem.xlf
@@ -18,14 +18,14 @@ More about File mounts | https://docs.typo3.org/typo3cms/InsideTypo3Reference/Co
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_.image">
-				<source>EXT:lang/cshimages/filemount_1.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/filemount_1.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="title.description">
 				<source>Enter a title for the filemount. The title will appear as the name of the file mount when it is applied to users and groups.</source>
 			</trans-unit>
 			<trans-unit id="_title.image">
-				<source>EXT:lang/cshimages/be_groups_5.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/be_groups_5.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="path.description">
@@ -47,8 +47,8 @@ sys_filemounts</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_path.image" xml:space="preserve">
-				<source>EXT:lang/cshimages/be_groups_6.png,
-EXT:lang/cshimages/be_groups_7.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/be_groups_6.png,
+EXT:lang/Resources/Public/Images/cshimages/be_groups_7.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="path.image_descr" xml:space="preserve">
diff --git a/typo3/sysext/lang/locallang_csh_web_func.xlf b/typo3/sysext/lang/locallang_csh_web_func.xlf
index 911aa62f2bfb937dfc36629f6c223427c0aee43d..fc6e87483c63562bcdf36c206e20f87e01d0ce90 100644
--- a/typo3/sysext/lang/locallang_csh_web_func.xlf
+++ b/typo3/sysext/lang/locallang_csh_web_func.xlf
@@ -20,7 +20,7 @@ _MOD_web_func:tx_wizardsortpages</source>
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_.image">
-				<source>EXT:lang/cshimages/pagetree_overview_11.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/pagetree_overview_11.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id=".image_descr">
diff --git a/typo3/sysext/lang/locallang_csh_web_info.xlf b/typo3/sysext/lang/locallang_csh_web_info.xlf
index f17589a06acbae0b4422b693a24036624021954f..2e3ff151900e3c20a51e0420e7d26713c25f7072 100644
--- a/typo3/sysext/lang/locallang_csh_web_info.xlf
+++ b/typo3/sysext/lang/locallang_csh_web_info.xlf
@@ -18,7 +18,7 @@ More about Web&gt;Info module framework | https://docs.typo3.org/typo3cms/Inside
 				<note from="developer">A part of this string is an internal text, which must not be changed. Just copy this part into the translation field and do not change it. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id="_.image">
-				<source>EXT:lang/cshimages/pagetree_overview_10.png</source>
+				<source>EXT:lang/Resources/Public/Images/cshimages/pagetree_overview_10.png</source>
 				<note from="developer">This string contains an internal text, which must not be changed. Just copy the original text into the translation field. For more information have a look at the Tutorial.</note>
 			</trans-unit>
 			<trans-unit id=".image_descr">
diff --git a/typo3/sysext/opendocs/Resources/Public/Icons/opendocs.png b/typo3/sysext/opendocs/Resources/Public/Icons/opendocs.png
deleted file mode 100644
index 495cab5eff091428104083680a10f9dbb02a5376..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/opendocs/Resources/Public/Icons/opendocs.png and /dev/null differ
diff --git a/typo3/sysext/opendocs/Resources/Public/Images/toolbar_item_active_bg.png b/typo3/sysext/opendocs/Resources/Public/Images/toolbar_item_active_bg.png
deleted file mode 100644
index bd3a88f6c1409cc9de5914fd39993ee8efc455db..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/opendocs/Resources/Public/Images/toolbar_item_active_bg.png and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/BUG_basic.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/BUG_basic.gif
deleted file mode 100644
index d93a8ed5a252f191eb1e3cbb35a480e4470ad5b9..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/BUG_basic.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/BUG_menu.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/BUG_menu.gif
deleted file mode 100644
index 9f73df1b82e818ac4c17ede50775cf0d0972c1dc..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/BUG_menu.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/BUG_menu2.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/BUG_menu2.gif
deleted file mode 100644
index 6cb27732ef270bacc0c18c92747e79d4ae68bfea..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/BUG_menu2.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/BUSINESS_basic.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/BUSINESS_basic.gif
deleted file mode 100644
index 84d44e334872e023f01e33764fed07f87a580243..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/BUSINESS_basic.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/BUSINESS_menu.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/BUSINESS_menu.gif
deleted file mode 100644
index e76c3f4a3208830c588201474dbb89e9253f121f..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/BUSINESS_menu.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/CANDIDATE_basic.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/CANDIDATE_basic.gif
deleted file mode 100644
index 5c483c00aaa02c6ecfaf3acb0510d8975f15e138..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/CANDIDATE_basic.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/CANDIDATE_menu.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/CANDIDATE_menu.gif
deleted file mode 100644
index 05db8e10c6317cb13934efee25b1b6b643f38aa1..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/CANDIDATE_menu.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/CANDIDATE_page.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/CANDIDATE_page.gif
deleted file mode 100644
index 1b710d586d46b98e08b8d3755ccf292f9423bce3..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/CANDIDATE_page.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/CrCPH_basic.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/CrCPH_basic.gif
deleted file mode 100644
index bdd877ffc176f6d319d45a5557d05b2f49139ff5..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/CrCPH_basic.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/FIRST_basic.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/FIRST_basic.gif
deleted file mode 100644
index 3987e62461de9e94c982d14f75d067705a11ca04..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/FIRST_basic.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/FIRST_menu.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/FIRST_menu.gif
deleted file mode 100644
index c752a69a77337f2403afbc5ebd4f33f12c650579..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/FIRST_menu.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/GLCK_basic.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/GLCK_basic.gif
deleted file mode 100644
index bcb94e5ddc3b9821a18daf17b441342e8d11fa6e..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/GLCK_basic.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/GLCK_columns.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/GLCK_columns.gif
deleted file mode 100644
index 91ee71607e6538b26f3eb5ad6a6c01ca76aeac36..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/GLCK_columns.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/GLCK_menu.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/GLCK_menu.gif
deleted file mode 100644
index 40057f5e0644b339fcaee81a2b55548ca6863109..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/GLCK_menu.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/GREEN_basic.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/GREEN_basic.gif
deleted file mode 100644
index 4f3ab9bffc3b1dab5a2a5ac422cfdfaeeeb425f4..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/GREEN_basic.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/GREEN_menu.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/GREEN_menu.gif
deleted file mode 100644
index 96abdb4e6748a92abf8abf01bec31070ff446334..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/GREEN_menu.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/GREEN_menu2.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/GREEN_menu2.gif
deleted file mode 100644
index f9b728638bedcd2a7f3f907ace81bdf70ca8f2e7..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/GREEN_menu2.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/GREEN_menu3.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/GREEN_menu3.gif
deleted file mode 100644
index 5d11a81d18679665fdbb06234700c1f5b384e389..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/GREEN_menu3.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_basic.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_basic.gif
deleted file mode 100644
index 2a439ad26ab5a054f4c2dc838523a7e1eded0ed8..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_basic.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_menu.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_menu.gif
deleted file mode 100644
index b1e58da992ca54194d082dd97dafc1f408269399..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_menu.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_menu2.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_menu2.gif
deleted file mode 100644
index 65431952da111cb22f4cc81a4afa2ce13590b08e..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_menu2.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_page.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_page.gif
deleted file mode 100644
index 551e1e9067959a4034707b3c168aa2a94f894a0a..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_page.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_toptitle.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_toptitle.gif
deleted file mode 100644
index 4f574ace1c133fbe45f75e8cbe00982bae5f9124..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/HYPER_toptitle.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/MM_basic.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/MM_basic.gif
deleted file mode 100644
index 14237836a9d358d551b6976550cd585bab229774..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/MM_basic.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/MM_menu.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/MM_menu.gif
deleted file mode 100644
index 3fe516f2fbb6e064bb4c80b692768cc9a3c9533d..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/MM_menu.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/MM_right.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/MM_right.gif
deleted file mode 100644
index 9ef899622992cc12485fa1d7c7b03726fe99def1..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/MM_right.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/NEWSLETTER_basic.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/NEWSLETTER_basic.gif
deleted file mode 100644
index 15338d1dc800fda35c602193eab231ebbb5b9414..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/NEWSLETTER_basic.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/RE_basic.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/RE_basic.gif
deleted file mode 100644
index cd8b8b2077762a66f616c0f7c641dceb336d0c59..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/RE_basic.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/RE_leftmenu.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/RE_leftmenu.gif
deleted file mode 100644
index 220631a399982492c723cf88084123ee892e0ad5..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/RE_leftmenu.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/RE_menu.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/RE_menu.gif
deleted file mode 100644
index 5ff8c42376e04568bd5f4095c3128817957de8a2..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/RE_menu.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/RE_top.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/RE_top.gif
deleted file mode 100644
index f2248a787bfab30d0d70e7481461ec36f68d77eb..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/RE_top.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/TU_basic.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/TU_basic.gif
deleted file mode 100644
index 77c4a5df44aa577b6b10cd2dc5c2bfe7e1f219a3..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/TU_basic.gif and /dev/null differ
diff --git a/typo3/sysext/tstemplate/Resources/Public/gfx/TU_menu.gif b/typo3/sysext/tstemplate/Resources/Public/gfx/TU_menu.gif
deleted file mode 100644
index 22bc8076c6cfd6552295add3b966912b580c5cc0..0000000000000000000000000000000000000000
Binary files a/typo3/sysext/tstemplate/Resources/Public/gfx/TU_menu.gif and /dev/null differ