Skip to content

Commit 8eb84a3

Browse files
committed
"Status" does not exist in French #10938
Most of the time we should use "état" instead
1 parent 2062c31 commit 8eb84a3

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

client/app/admin/order/order/order.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ <h2 mat-dialog-title class="nat-expand">Commande du {{ data.model.creationDate |
44
@if (viewer?.role === UserRole.administrator) {
55
<natural-select-enum
66
enumName="OrderStatus"
7-
placeholder="Statut"
7+
placeholder="État"
88
[ngModel]="data.model.status"
99
(selectionChange)="updateStatus($event)"
1010
/>

client/app/admin/order/orders/orders.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
</ng-container>
6868

6969
<ng-container matColumnDef="status">
70-
<th *matHeaderCellDef mat-header-cell>Statut</th>
70+
<th *matHeaderCellDef mat-header-cell>État</th>
7171
<td *matCellDef="let element" mat-cell>
7272
{{ element.status | enum: 'OrderStatus' | async }}
7373
</td>

client/app/admin/order/orders/orders.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class OrdersComponent extends NaturalAbstractList<OrderService> implement
4949
{id: 'creationDate', label: 'Date'},
5050
{id: 'owner', label: 'Utilisateur'},
5151
{id: 'lines', label: 'Entrées'},
52-
{id: 'status', label: 'Statut'},
52+
{id: 'status', label: 'État'},
5353
{id: 'balanceCHF', label: 'Total CHF'},
5454
{id: 'balanceEUR', label: 'Total EUR'},
5555
];

client/app/admin/users/user/user.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ <h2 class="mat-h2">Compte</h2>
5858
>
5959
Facilitateur public
6060
</mat-slide-toggle>
61-
<h2 class="mat-h2">Statut</h2>
61+
<h2 class="mat-h2">État</h2>
6262
<natural-select-enum
6363
enumName="Membership"
6464
formControlName="membership"

client/app/profile/components/history/history.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ <h2 class="mat-headline-4">Commandes</h2>
2020
</ng-container>
2121

2222
<ng-container matColumnDef="status">
23-
<th *matHeaderCellDef mat-header-cell>Statut</th>
23+
<th *matHeaderCellDef mat-header-cell>État</th>
2424
<td *matCellDef="let element" mat-cell>
2525
{{ element.status | enum: 'OrderStatus' | async }}
2626
</td>

client/app/shared/natural-search/natural-search-facets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ export function orders(): NaturalSearchFacets {
218218
},
219219
} satisfies DropdownFacet<TypeNumberConfiguration>,
220220
{
221-
display: 'Statut',
221+
display: 'État',
222222
field: 'status',
223223
component: TypeSelectComponent,
224224
configuration: {

0 commit comments

Comments
 (0)