Skip to content
Snippets Groups Projects
Commit a88c98d4 authored by Ahmet Hamdi Janusch Cetin's avatar Ahmet Hamdi Janusch Cetin Committed by Klaus-Dieter Quibeldey-Cirkel
Browse files

Add Capitalization in selection

parent 09894a50
No related merge requests found
......@@ -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>
......
......@@ -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",
......
......@@ -380,6 +380,7 @@
"notation": "Notation:",
"lowerCase": "Lower case",
"capitalization": "Capitalization",
"upperCase": "Upper Case",
"standard": "Standard",
"alphabetical-sorting": "Alphabetical sorting",
"cleanUpView": "Tag-Cleanup Settings",
......
......@@ -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",
......
......@@ -349,6 +349,7 @@
"notation": "Notation:",
"lowerCase": "Lower case",
"capitalization": "Capitalization",
"upperCase": "Upper Case",
"standard": "Standard",
"alphabetical-sorting": "Alphabetical sorting",
"cleanUpView": "Tag-Cleanup Settings",
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment