Skip to content
Snippets Groups Projects
Commit 8bf28a57 authored by Klaus-Dieter Quibeldey-Cirkel's avatar Klaus-Dieter Quibeldey-Cirkel
Browse files

missing i18n string

parent 1f16f2b2
No related merge requests found
......@@ -11,14 +11,14 @@
{{'spacy-dialog.' + (languagetoolService.mapLanguageToSpacyModel(selectedLang)) | translate}}
</span>
<span *ngIf="selectedLang === 'auto'" #langSelect>
{{'spacy-dialog.language' | translate}}
<em>{{'spacy-dialog.language' | translate}}</em>
</span>
<mat-select class="select-list" #select [(ngModel)]="selectedLang">
<mat-option *ngFor="let lang of languages" [value]="lang">
<span *ngIf="lang == 'de-DE'">{{ 'spacy-dialog.de' | translate }}</span>
<span *ngIf="lang == 'en-US'">{{ 'spacy-dialog.en' | translate }}</span>
<span *ngIf="lang == 'fr'">{{ 'spacy-dialog.fr' | translate }}</span>
<span *ngIf="lang == 'auto'">{{ 'spacy-dialog.auto' | translate }}</span>
<span *ngIf="lang == 'auto'"><em>{{ 'spacy-dialog.auto' | translate }}</em></span>
</mat-option>
</mat-select>
</button>
......@@ -26,7 +26,7 @@
mat-button
*ngIf="enabled && tags && tags.length"
(click)="tagSelect.open()"
matTooltip="{{ 'spacy-dialog.lang-button-hint' | translate }}"
matTooltip="{{ 'spacy-dialog.tag-button-hint' | translate }}"
matTooltipShowDelay="750">
<mat-icon class="btn-icon" svgIcon="comment_tag"></mat-icon>
<label for="tagSelect" *ngIf="!selectedTag"><em>{{'comment-page.tag' | translate}}</em></label>
......
......@@ -89,7 +89,8 @@
"en": "Englisch",
"fr": "Französisch",
"select-all": "Alles auswählen",
"lang-button-hint": "Sprache für die Rechtschreibprüfung",
"lang-button-hint": "Wähle die Sprache für die Rechtschreibprüfung.",
"tag-button-hint": "Wähle die treffende Kategorie für deine Frage.",
"select-all-hint": "Alle Nomen als Stichwörter auswählen",
"select-keyword-hint": "Dieses Wort als Stichwort auswählen",
"edit-keyword-hint": "Wort editieren",
......
......@@ -90,7 +90,8 @@
"en": "English",
"fr": "French",
"select-all": "Select all",
"lang-button-hint": "Language for the spell checker",
"lang-button-hint": "Choose the language for the spell checker.",
"tag-button-hint": "Choose the appropriate category for your question.",
"select-all-hint": "Select all keywords",
"select-keyword-hint": "Select this keyword",
"edit-keyword-hint": "Edit keyword",
......
......@@ -95,7 +95,8 @@
"en": "Englisch",
"fr": "Französisch",
"select-all": "Alles auswählen",
"lang-button-hint": "Sprache für die Rechtschreibprüfung",
"lang-button-hint": "Wähle die Sprache für die Rechtschreibprüfung.",
"tag-button-hint": "Wähle die treffende Kategorie für deine Frage.",
"select-all-hint": "Alle Nomen als Stichwörter auswählen",
"select-keyword-hint": "Dieses Wort als Stichwort auswählen",
"edit-keyword-hint": "Wort editieren",
......
......@@ -105,7 +105,8 @@
"en": "English",
"fr": "French",
"select-all": "Select all",
"lang-button-hint": "Language for the spell checker",
"lang-button-hint": "Choose the language for the spell checker.",
"tag-button-hint": "Choose the appropriate category for your question.",
"select-all-hint": "Select all keywords",
"select-keyword-hint": "Select this keyword",
"edit-keyword-hint": "Edit keyword",
......
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