diff --git a/frontend/angular.json b/frontend/angular.json index 0df43db..c7b4586 100644 --- a/frontend/angular.json +++ b/frontend/angular.json @@ -91,7 +91,7 @@ "extractLicenses": false, "sourceMap": true, "localize": ["fr"], - "i18nMissingTranslation": "warning" + "i18nMissingTranslation": "error" } }, "defaultConfiguration": "" diff --git a/frontend/src/app/components/publication-edition/code-block-dialog/code-block-dialog.component.html b/frontend/src/app/components/publication-edition/code-block-dialog/code-block-dialog.component.html index 6d2606d..ec52fba 100644 --- a/frontend/src/app/components/publication-edition/code-block-dialog/code-block-dialog.component.html +++ b/frontend/src/app/components/publication-edition/code-block-dialog/code-block-dialog.component.html @@ -2,12 +2,12 @@ close
-

Add a code block

+

Add a code block

- Programming language + Programming language @for(programmingLanguage of programmingLanguages; track programmingLanguage) { @@ -17,15 +17,15 @@ - Code block + Code block
- -
diff --git a/frontend/src/app/components/publication-edition/picture-selection-dialog/picture-selection-dialog.component.html b/frontend/src/app/components/publication-edition/picture-selection-dialog/picture-selection-dialog.component.html index 431e4f7..1eabfdc 100644 --- a/frontend/src/app/components/publication-edition/picture-selection-dialog/picture-selection-dialog.component.html +++ b/frontend/src/app/components/publication-edition/picture-selection-dialog/picture-selection-dialog.component.html @@ -2,27 +2,27 @@ close
-

Select an illustration:

+

Select an illustration

@if (isLoading) { -

Pictures loading...

+

Pictures loading...

} @else { @if (pictures.length) { @for(picture of pictures; track picture) { - + } } @else { -

There is no any picture.

+

There is no any picture.

} }