From a88c98d4ae5dcc5f6f65b438e414a38a6c2ed738 Mon Sep 17 00:00:00 2001
From: Ahmet C <cetin.ahmet@live.de>
Date: Sun, 13 Jun 2021 16:34:21 +0200
Subject: [PATCH] Add Capitalization in selection

---
 .../cloud-configuration/cloud-configuration.component.html     | 1 +
 src/assets/i18n/creator/de.json                                | 3 ++-
 src/assets/i18n/creator/en.json                                | 1 +
 src/assets/i18n/participant/de.json                            | 3 ++-
 src/assets/i18n/participant/en.json                            | 1 +
 5 files changed, 7 insertions(+), 2 deletions(-)

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 cec013ef4..c4b0f58e3 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 a3101c8db..63a78de7c 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 8f61bf67f..8cfc9dcd9 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 f04c21e28..be6b39c7e 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 7df799a30..3fe2e55e3 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",
-- 
GitLab