diff --git a/apps/qubit/modules/digitalobject/templates/_imageflow.php b/apps/qubit/modules/digitalobject/templates/_imageflow.php
index b87fd3568d..aad1f358a1 100644
--- a/apps/qubit/modules/digitalobject/templates/_imageflow.php
+++ b/apps/qubit/modules/digitalobject/templates/_imageflow.php
@@ -10,7 +10,7 @@ class="accordion"
diff --git a/data/fixtures/settings.yml b/data/fixtures/settings.yml
index 6238884005..75451b9179 100644
--- a/data/fixtures/settings.yml
+++ b/data/fixtures/settings.yml
@@ -3,7 +3,7 @@ QubitSetting:
name: version
editable: 0
deleteable: 0
- value: 197
+ value: 199
milestone:
name: milestone
editable: 0
@@ -1585,3 +1585,11 @@ QubitSetting:
value:
ar: 'عدد الإضافات الأرشيفية: '
en: 'Accession count: '
+ QubitSettings_carousel:
+ name: carousel
+ scope: ui_label
+ editable: 1
+ deleteable: 0
+ source_culture: en
+ value:
+ en: 'Image Carousel'
diff --git a/lib/task/migrate/migrations/arMigration0199.class.php b/lib/task/migrate/migrations/arMigration0199.class.php
new file mode 100644
index 0000000000..f808b89897
--- /dev/null
+++ b/lib/task/migrate/migrations/arMigration0199.class.php
@@ -0,0 +1,51 @@
+.
+ */
+
+/*
+ * Add new UI labels for Image carousel.
+ *
+ * @package AccesstoMemory
+ * @subpackage migration
+ */
+class arMigration0199
+{
+ public const VERSION = 199;
+ public const MIN_MILESTONE = 2;
+
+ /**
+ * Upgrade.
+ *
+ * @param mixed $configuration
+ *
+ * @return bool True if the upgrade succeeded, False otherwise
+ */
+ public function up($configuration)
+ {
+ $setting = new QubitSetting();
+ $setting->name = 'carousel';
+ $setting->scope = 'ui_label';
+ $setting->editable = 1;
+ $setting->deleteable = 0;
+ $setting->source_culture = 'en';
+ $setting->setValue('Image Carousel', ['culture' => 'en']);
+ $setting->save();
+
+ return true;
+ }
+}