File tree Expand file tree Collapse file tree 10 files changed +10
-1
lines changed
packages/manager/apps/pci-workflow
public/translations/listing Expand file tree Collapse file tree 10 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 1515 "pci_workflow_execution_status_SUCCESS" : " Erfolgreich" ,
1616 "pci_workflow_execution_status_ERROR" : " Fehler" ,
1717 "pci_workflow_execution_status_PAUSED" : " Pause" ,
18+ "pci_workflow_execution_status_CANCELED" : " Abgebrochen" ,
1819 "pci_workflow_executions_title" : " Ausführungen des Workflows '{{ workflowName }}'" ,
1920 "pci_workflow_executions_empty" : " Keine Ausführungen gefunden" ,
2021 "pci_workflow_executions_ececution_date" : " Datum (UTC)" ,
Original file line number Diff line number Diff line change 1515 "pci_workflow_execution_status_SUCCESS" : " Success" ,
1616 "pci_workflow_execution_status_ERROR" : " Error" ,
1717 "pci_workflow_execution_status_PAUSED" : " Pause" ,
18+ "pci_workflow_execution_status_CANCELED" : " Cancelled" ,
1819 "pci_workflow_executions_title" : " '{{ workflowName }}' workflow execution" ,
1920 "pci_workflow_executions_empty" : " No executions found" ,
2021 "pci_workflow_executions_ececution_date" : " Date (UTC)" ,
Original file line number Diff line number Diff line change 1515 "pci_workflow_execution_status_SUCCESS" : " Realizado" ,
1616 "pci_workflow_execution_status_ERROR" : " Error" ,
1717 "pci_workflow_execution_status_PAUSED" : " Pausa" ,
18+ "pci_workflow_execution_status_CANCELED" : " Cancelado" ,
1819 "pci_workflow_executions_title" : " Ejecución del flujo de trabajo «{{ workflowName }}»" ,
1920 "pci_workflow_executions_empty" : " No se ha encontrado ninguna ejecución." ,
2021 "pci_workflow_executions_ececution_date" : " Fecha (UTC)" ,
Original file line number Diff line number Diff line change 2020 "pci_workflow_execution_status_SUCCESS" : " Succès" ,
2121 "pci_workflow_execution_status_ERROR" : " Erreur" ,
2222 "pci_workflow_execution_status_PAUSED" : " Pause" ,
23+ "pci_workflow_execution_status_CANCELED" : " Annulé" ,
2324 "pci_workflow_executions_title" : " Exécution du Workflow '{{ workflowName }}'" ,
2425 "pci_workflow_executions_empty" : " Aucune exécution trouvée" ,
2526 "pci_workflow_executions_ececution_date" : " Date (UTC)" ,
Original file line number Diff line number Diff line change 2020 "pci_workflow_execution_status_SUCCESS" : " Succès" ,
2121 "pci_workflow_execution_status_ERROR" : " Erreur" ,
2222 "pci_workflow_execution_status_PAUSED" : " Pause" ,
23+ "pci_workflow_execution_status_CANCELED" : " Annulé" ,
2324 "pci_workflow_executions_title" : " Exécution du Workflow '{{ workflowName }}'" ,
2425 "pci_workflow_executions_empty" : " Aucune exécution trouvée" ,
2526 "pci_workflow_executions_ececution_date" : " Date (UTC)" ,
Original file line number Diff line number Diff line change 1515 "pci_workflow_execution_status_SUCCESS" : " Completato" ,
1616 "pci_workflow_execution_status_ERROR" : " Errore" ,
1717 "pci_workflow_execution_status_PAUSED" : " Pausa" ,
18+ "pci_workflow_execution_status_CANCELED" : " Annullato" ,
1819 "pci_workflow_executions_title" : " Esecuzione del workflow '{{ workflowName }}'" ,
1920 "pci_workflow_executions_empty" : " Nessuna esecuzione trovata" ,
2021 "pci_workflow_executions_ececution_date" : " Data (UTC)" ,
Original file line number Diff line number Diff line change 1515 "pci_workflow_execution_status_SUCCESS" : " Operacja zakończona pomyślnie" ,
1616 "pci_workflow_execution_status_ERROR" : " Błąd" ,
1717 "pci_workflow_execution_status_PAUSED" : " Zatrzymany" ,
18+ "pci_workflow_execution_status_CANCELED" : " Anulowane" ,
1819 "pci_workflow_executions_title" : " Uruchomienie workflowu '{{ workflowName }}'" ,
1920 "pci_workflow_executions_empty" : " Nie znaleziono żadnych wykonanych workflowów." ,
2021 "pci_workflow_executions_ececution_date" : " Data (UTC)" ,
Original file line number Diff line number Diff line change 1515 "pci_workflow_execution_status_SUCCESS" : " Êxito" ,
1616 "pci_workflow_execution_status_ERROR" : " Erro" ,
1717 "pci_workflow_execution_status_PAUSED" : " Pausa" ,
18+ "pci_workflow_execution_status_CANCELED" : " Anulado" ,
1819 "pci_workflow_executions_title" : " Execução do fluxo de trabalho '{{ workflowName }}'" ,
1920 "pci_workflow_executions_empty" : " Não foi encontrada nenhuma execução" ,
2021 "pci_workflow_executions_ececution_date" : " Data (UTC)" ,
Original file line number Diff line number Diff line change 11import { v6 } from '@ovh-ux/manager-core-api' ;
22
3- export type TExecutionState = 'SUCCESS' | 'PAUSED' | 'ERROR' ;
3+ export type TExecutionState = 'SUCCESS' | 'PAUSED' | 'ERROR' | 'CANCELED' ;
44
55export type TWorkflowExecution = {
66 id : string ;
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ export default function ExecutionStatusComponent({
2424 case 'PAUSED' :
2525 return ODS_THEME_COLOR_INTENT . warning ;
2626 case 'ERROR' :
27+ case 'CANCELED' :
2728 return ODS_THEME_COLOR_INTENT . error ;
2829 default :
2930 return ODS_THEME_COLOR_INTENT . info ;
You can’t perform that action at this time.
0 commit comments