diff --git a/src/app/components/shared/_dialogs/cloud-configuration/cloud-configuration.component.html b/src/app/components/shared/_dialogs/cloud-configuration/cloud-configuration.component.html
index cec013ef4cac08c6b3b2791022e93889066f5c7f..c4b0f58e3c218af14d9c69b901c6ca3c01893eaf 100644
--- a/src/app/components/shared/_dialogs/cloud-configuration/cloud-configuration.component.html
+++ b/src/app/components/shared/_dialogs/cloud-configuration/cloud-configuration.component.html
@@ -27,6 +27,7 @@
           <div class="input-row special-settings automatic-spelling" fxLayout="row" fxLayoutGap="5px" fxLayout.xs="column">
             <mat-radio-group matTooltip="{{'tag-cloud-config.notation-tooltip' | translate}}" aria-label="Notation:"> {{'tag-cloud-config.notation' | translate}}
               <div><mat-radio-button value="1" (change)="textStyleChanged(1)" [checked]="cloudParameters.textTransform == 1">{{'tag-cloud-config.lowerCase' | translate}}</mat-radio-button> </div>
+              <div><mat-radio-button value="2" (change)="textStyleChanged(3)" [checked]="cloudParameters.textTransform == 3">{{'tag-cloud-config.upperCase' | translate}}</mat-radio-button> </div>
               <div><mat-radio-button value="2" (change)="textStyleChanged(2)" [checked]="cloudParameters.textTransform == 2">{{'tag-cloud-config.capitalization' | translate}}</mat-radio-button> </div>
               <div><mat-radio-button value="0" (change)="textStyleChanged(0)" [checked]="cloudParameters.textTransform == 0">{{'tag-cloud-config.standard' | translate}}</mat-radio-button> </div>
             </mat-radio-group>
diff --git a/src/assets/i18n/creator/de.json b/src/assets/i18n/creator/de.json
index a3101c8db443b67858e79dab933226c2a21cea2c..63a78de7c77b16c084184ce49b57dd0a5a7e23f2 100644
--- a/src/assets/i18n/creator/de.json
+++ b/src/assets/i18n/creator/de.json
@@ -378,7 +378,8 @@
     "automatic-spelling": "Rechtschreibüberprüfung",
     "notation": "Notation:",
     "lowerCase": "Kleinschreibung",
-    "capitalization": "Großschreibung",
+    "capitalization": "Kapitälchen",
+    "upperCase": "Großschreibung",
     "standard": "Standard",
     "alphabetical-sorting": "Alphabetische Sortierung",
     "cleanUpView": "Tag-Cleanup Einstellungen",
diff --git a/src/assets/i18n/creator/en.json b/src/assets/i18n/creator/en.json
index 8f61bf67f5bfb7a02a09ee0d1c464f632970f21c..8cfc9dcd984ab45ae94e0acc94455c87b058b136 100644
--- a/src/assets/i18n/creator/en.json
+++ b/src/assets/i18n/creator/en.json
@@ -380,6 +380,7 @@
     "notation": "Notation:",
     "lowerCase": "Lower case",
     "capitalization": "Capitalization",
+    "upperCase": "Upper Case",
     "standard": "Standard",
     "alphabetical-sorting": "Alphabetical sorting",
     "cleanUpView": "Tag-Cleanup Settings",
diff --git a/src/assets/i18n/participant/de.json b/src/assets/i18n/participant/de.json
index f04c21e281df8f38af73e6023ab4462ea7484216..be6b39c7e3612387b331c8648683740abfb73249 100644
--- a/src/assets/i18n/participant/de.json
+++ b/src/assets/i18n/participant/de.json
@@ -342,7 +342,8 @@
     "automatic-spelling": "Rechtschreibüberprüfung",
     "notation": "Notation:",
     "lowerCase": "Kleinschreibung",
-    "capitalization": "Großschreibung",
+    "capitalization": "Kapitälchen",
+    "upperCase": "Großschreibung",
     "standard": "Standard",
     "alphabetical-sorting": "Alphabetische Sortierung",
     "cleanUpView": "Tag-Cleanup Einstellungen",
diff --git a/src/assets/i18n/participant/en.json b/src/assets/i18n/participant/en.json
index 7df799a301e42dbfbec77bc16e24ab009e366949..3fe2e55e3d78fecfa42cdd2b3e45058d3319f312 100644
--- a/src/assets/i18n/participant/en.json
+++ b/src/assets/i18n/participant/en.json
@@ -349,6 +349,7 @@
     "notation": "Notation:",
     "lowerCase": "Lower case",
     "capitalization": "Capitalization",
+    "upperCase": "Upper Case",
     "standard": "Standard",
     "alphabetical-sorting": "Alphabetical sorting",
     "cleanUpView": "Tag-Cleanup Settings",