Skip to content

Commit

Permalink
Merge branch 'kubeflow-aaw2.0' into KF1.9-main
Browse files Browse the repository at this point in the history
  • Loading branch information
wg102 authored Mar 11, 2025
2 parents fe951f1 + 5bdd483 commit a431172
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
8 changes: 6 additions & 2 deletions components/centraldashboard/public/assets/i18n/languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@
"notebookDefaultCard.txtDefaultNotReady": "The default notebook is not ready yet.",
"notebookDefaultCard.errorDefaultNotebook": "Failed to do the current operation, because:",
"notebookDefaultCard.successDefaultNotebook": "New default notebook successfully created!",
"notebookDefaultCard.warningDefaultNotebook": "The Default Notebook does not have persistent storage, it is purely to explore the Zone. When ready to work, please read this ",
"notebookDefaultCard.docLink": "https://zone.pages.cloud.statcan.ca/docs/en/5-Storage/KubeflowVolumes.html",
"registrationPage.btnNext": "Next",
"registrationPage.lblNamespace": "Workspace",
"registrationPage.lblNamespaceDesc": "A workspace is a collection of Kubeflow services. Resources created within a workspace are isolated to that workspace. By default, a workspace will be created for you.",
Expand Down Expand Up @@ -214,13 +216,15 @@
"notebookDefaultCard.details": "Détails",
"notebookDefaultCard.name": "Nom",
"notebookDefaultCard.type": "Type",
"notebookDefaultCard.helpText": "Le bloc-note par défaut démarre automatiquement lors de la connexion à Kubeflow",
"notebookDefaultCard.txtDefaultNotebook": "Bloc-note par défaut",
"notebookDefaultCard.helpText": "Le bloc-notes par défaut démarre automatiquement lors de la connexion à Kubeflow",
"notebookDefaultCard.txtDefaultNotebook": "Bloc-notes par défaut",
"notebookDefaultCard.txtDataLoading": "Les données sont en cours de chargement",
"notebookDefaultCard.txtNoDefaultNotebook": "Aucun bloc-notes par défaut pour cet espace de travail. Vous pouvez cliquer sur 'Créer' ci-dessous pour en générer un.",
"notebookDefaultCard.txtDefaultNotReady": "Le bloc-note par défaut n'est pas encore prêt.",
"notebookDefaultCard.errorDefaultNotebook": "Échec de l'opération actuelle, car:",
"notebookDefaultCard.successDefaultNotebook": "Nouveau bloc-notes par défaut créé avec succès!",
"notebookDefaultCard.warningDefaultNotebook": "Le bloc-notes par défaut n’a pas de stockage résistant, c’est purement pour explorer la Zone. Lorsque vous êtes prêt à travailler, veuillez lire cette ",
"notebookDefaultCard.docLink": "https://zone.pages.cloud.statcan.ca/docs/fr/5-Stockage/Aper%C3%A7u.html#volumes-kubeflow-disques",
"registrationPage.lblWelcome": "Bienvenue",
"registrationPage.registrationDesc": "Afin d'utiliser Kubeflow, un espace de travail doit être créé pour votre compte. Suiver les étapes pour commencer",
"landingPage.btnLogout": "Se déconnecter",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,22 @@ paper-toast#DefaultNotebookSuccess {
paper-toast#DefaultNotebookSuccess {
left: 240px !important;
}
}
}

#defaultNotebookWarning {
display: flex;
padding: .75rem 1.25rem;
border: 1px solid #ffb714;
border-radius: .25rem;
background-color: #e7d7a3;
margin-top: 0;
align-self: center;
}

#defaultNotebookWarningMessage {
position: relative;
}

#defaultCardLink {
text-decoration-line: underline;
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ iron-ajax#GetDefaultNotebook(method='GET', url='/jupyter/api/namespaces/[[namesp
paper-card#DefaultNotebookCard(heading="{{localize('notebookDefaultCard.txtDefaultNotebook')}}")
div.data-content
paper-progress(indeterminate, class="slow", hidden$="[[!loading]]")
div#defaultNotebookWarning
p#defaultNotebookWarningMessage {{localize('notebookDefaultCard.warningDefaultNotebook')}}
a#defaultCardLink(href$=`{{localize('notebookDefaultCard.docLink')}}`, tabindex='-1', target="_blank") {{localize('landingPage.doc')}}.
template(is='dom-if', if='[[!defaultNotebook]]')
p {{localize('notebookDefaultCard.helpText')}}
p {{localize('notebookDefaultCard.txtNoDefaultNotebook')}}
Expand Down

0 comments on commit a431172

Please sign in to comment.