-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ref: MANAGER-14497 Signed-off-by: Thibault Barske <[email protected]>
- Loading branch information
Showing
12 changed files
with
369 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
packages/manager/apps/hycu/public/translations/error/Messages_fr_FR.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"manager_error_page_default": "Une erreur est survenue lors du chargement de la page." | ||
} |
16 changes: 14 additions & 2 deletions
16
packages/manager/apps/hycu/public/translations/listing/Messages_fr_FR.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,16 @@ | ||
{ | ||
"title": "Listing page", | ||
"listing_resultats": "résultats" | ||
"title": "HYCU", | ||
"listing_resultats": "résultats", | ||
"hycu_status_activated": "Active", | ||
"hycu_status_toActivate": "À activer", | ||
"hycu_status_pending": "En cours d'activation", | ||
"hycu_status_error": "Erreur d'activation", | ||
"hycu-cloud-vm-pack-unknown": "Pack inconnu", | ||
"hycu_name": "Nom", | ||
"hycu_controller_id": "Controller ID", | ||
"hycu_status": "Statut", | ||
"hycu_commercial_name": "Type de pack", | ||
"hycu_subscribed_date": "Date de souscription", | ||
"hycu_order": "Commander", | ||
"hycu_service_listing_terminate": "Résilié" | ||
} |
32 changes: 21 additions & 11 deletions
32
packages/manager/apps/hycu/src/mocks/licenseHycu/licenseHycu.data.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,28 @@ | ||
export const licenseHycu: unknown[] = [ | ||
import { IHycuDetails, LicenseStatus } from '@/type/hycu.details.interface'; | ||
|
||
export const licensesHycu: IHycuDetails[] = [ | ||
{ | ||
displayName: '425802fa-fb70-4b2a-9d5b-ec4de86bb40c', | ||
extraParams: null, | ||
parentName: null, | ||
iam: { | ||
id: '4a26ef55-d46b-4b71-88c8-76ad71b154b4', | ||
urn: | ||
'urn:v1:eu:resource:licenseHycu:425802fa-fb70-4b2a-9d5b-ec4de86bb40c', | ||
}, | ||
comment: '', | ||
serviceName: '425802fa-fb70-4b2a-9d5b-ec4de86bb40c', | ||
stateParams: ['425802fa-fb70-4b2a-9d5b-ec4de86bb40c'], | ||
url: '#/425802fa-fb70-4b2a-9d5b-ec4de86bb40c', | ||
controllerId: '', | ||
licenseStatus: LicenseStatus.TO_ACTIVATE, | ||
expirationDate: '0001-01-01T00:00:00Z', | ||
}, | ||
{ | ||
displayName: 'c1b7cb4f-6b63-45da-9a8a-f731f1a67b2c', | ||
extraParams: null, | ||
parentName: null, | ||
iam: { | ||
id: '06a89efa-cf14-431b-ab84-af5b3913e2ef', | ||
urn: | ||
'urn:v1:eu:resource:licenseHycu:c1b7cb4f-6b63-45da-9a8a-f731f1a67b2c', | ||
}, | ||
comment: '', | ||
serviceName: 'c1b7cb4f-6b63-45da-9a8a-f731f1a67b2c', | ||
stateParams: ['c1b7cb4f-6b63-45da-9a8a-f731f1a67b2c'], | ||
url: '#/c1b7cb4f-6b63-45da-9a8a-f731f1a67b2c', | ||
controllerId: '', | ||
licenseStatus: LicenseStatus.ACTIVATED, | ||
expirationDate: '0001-01-01T00:00:00Z', | ||
}, | ||
]; |
12 changes: 6 additions & 6 deletions
12
packages/manager/apps/hycu/src/mocks/licenseHycu/licenseHycu.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.