Skip to content

Commit

Permalink
Fix incorrect translation code and missing one (#29804)
Browse files Browse the repository at this point in the history
* Fix of an incorrect translation code and added a missing one

* added missing translation in en_US
  • Loading branch information
MaximilienR-easya committed May 31, 2024
1 parent f0bf49f commit 382f279
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/contrat/services_list.php
Original file line number Diff line number Diff line change
Expand Up @@ -482,10 +482,10 @@
$title = $langs->trans("ListOfRunningServices");
}
if ($search_status == "4&filter=notexpired") {
$title = $langs->trans("ListOfNotExpiredRunningServices");
$title = $langs->trans("ListOfNotExpiredServices");
}
if ($search_status == "4&filter=expired") {
$title = $langs->trans("ListOfExpiredRunningServices");
$title = $langs->trans("ListOfExpiredServices");
}
if ($search_status == "5") {
$title = $langs->trans("ListOfClosedServices");
Expand Down
1 change: 1 addition & 0 deletions htdocs/langs/en_US/contracts.lang
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ DateContract=Contract date
DateServiceActivate=Service activation date
ListOfServices=List of services
ListOfInactiveServices=List of not active services
ListOfNotExpiredServices=List of unexpired active services
ListOfExpiredServices=List of expired active services
ListOfClosedServices=List of closed services
ListOfRunningServices=List of running services
Expand Down
1 change: 1 addition & 0 deletions htdocs/langs/fr_FR/contracts.lang
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ DateContract=Date contrat
DateServiceActivate=Date activation du service
ListOfServices=Liste des services
ListOfInactiveServices=Liste des services inactifs
ListOfNotExpiredServices=Liste des services actifs non expirés
ListOfExpiredServices=Liste des services actifs expirés
ListOfClosedServices=Liste des services fermés
ListOfRunningServices=Liste des services actifs
Expand Down

0 comments on commit 382f279

Please sign in to comment.