update messages

This commit is contained in:
jonaswinkler 2021-01-29 16:57:00 +01:00
parent ea30fbf14f
commit a40e4fe3bc
3 changed files with 4 additions and 4 deletions

View File

@ -1288,8 +1288,8 @@
<context context-type="linenumber">27</context>
</context-group>
</trans-unit>
<trans-unit id="993900b5f9b0d14c7dbf3afd308afcfc1be5c356" datatype="html">
<source>Suggested:</source>
<trans-unit id="a1e6c11f20d4bf6e8e6b43e3c6d2561b2080645e" datatype="html">
<source>Suggestions:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/select/select.component.html</context>
<context context-type="linenumber">26</context>

View File

@ -23,7 +23,7 @@
</div>
<small *ngIf="hint" class="form-text text-muted">{{hint}}</small>
<small *ngIf="getSuggestions().length > 0">
<span i18n>Suggested:</span>&nbsp;
<span i18n>Suggestions:</span>&nbsp;
<ng-container *ngFor="let s of getSuggestions()">
<a (click)="value = s.id; onChange(value)" [routerLink]="">{{s.name}}</a>&nbsp;
</ng-container>

View File

@ -35,7 +35,7 @@
</div>
<small class="form-text text-muted" *ngIf="hint">{{hint}}</small>
<small *ngIf="getSuggestions().length > 0">
<span i18n>Suggested:</span>&nbsp;
<span i18n>Suggestions:</span>&nbsp;
<ng-container *ngFor="let tag of getSuggestions()">
<a (click)="addTag(tag.id)" [routerLink]="">{{tag.name}}</a>&nbsp;
</ng-container>