Add i18n completion tool.

This commit is contained in:
Florian THIERRY
2024-09-21 12:20:22 +02:00
parent 3935f6ad21
commit b546a0cf01
8 changed files with 665 additions and 10 deletions

View File

@@ -1,19 +1,20 @@
<h1>Your publications</h1>
<h1 i18n>Your publications</h1>
<a [routerLink]="['/publications/new']"
class="new-publication"
matTooltip="Add a new publication"
matTooltipPosition="left">
matTooltipPosition="left"
i18n-matTooltip>
+
</a>
@if ((isLoading$ | async) === true) {
<h2>Publication loading...</h2>
<h2 i18n>Publication loading...</h2>
<mat-spinner></mat-spinner>
} @else {
@if ((isLoaded$ | async) === true) {
<app-publication-list [publications$]="publications$"></app-publication-list>
} @else {
<h2>There is no any publication...</h2>
<h2 i18n>There is no any publication...</h2>
}
}