Skip to content

Commit

Permalink
fix(web): Fix typo that indicates when tokens expires in the translat…
Browse files Browse the repository at this point in the history
…ion files
  • Loading branch information
slyobard committed Mar 7, 2025
1 parent affd561 commit 7693459
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions web/src/ui/i18n/resources/en.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const translations: Translations<"en"> = {
"init script section title": "To access your storage outside of datalab services",
"init script section helper":
"Download or copy the init script in the programming language of your choice.",
"expires in": ({ howMuchTime }) => `Expires in ${howMuchTime}`
"expires in": ({ howMuchTime }) => `Expires ${howMuchTime}`
},
AccountKubernetesTab: {
"credentials section title": "Connect to the Kubernetes cluster",
Expand All @@ -93,7 +93,7 @@ export const translations: Translations<"en"> = {
</>
),
"expires in": ({ howMuchTime }) =>
`Theses credentials are valid for the next ${howMuchTime}`
`These credentials are valid for the next ${howMuchTime}`
},
AccountVaultTab: {
"credentials section title": "Vault credentials",
Expand All @@ -115,7 +115,7 @@ export const translations: Translations<"en"> = {
</MuiLink>
</>
),
"expires in": ({ howMuchTime }) => `The token expires in ${howMuchTime}`
"expires in": ({ howMuchTime }) => `The token expires ${howMuchTime}`
},
ProjectSettings: {
"page header title": "Project Settings",
Expand Down
4 changes: 2 additions & 2 deletions web/src/ui/i18n/resources/es.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const translations: Translations<"en"> = {
"Para acceder a tu almacenamiento fuera de los servicios de datalab",
"init script section helper":
"Descarga o copia el script de inicialización en el lenguaje de programación de tu elección.",
"expires in": ({ howMuchTime }) => `Expira en ${howMuchTime}`
"expires in": ({ howMuchTime }) => `Expira ${howMuchTime}`
},
AccountKubernetesTab: {
"credentials section title": "Conéctate al clúster de Kubernetes",
Expand Down Expand Up @@ -117,7 +117,7 @@ export const translations: Translations<"en"> = {
</MuiLink>
</>
),
"expires in": ({ howMuchTime }) => `El token expira en ${howMuchTime}`
"expires in": ({ howMuchTime }) => `El token expira ${howMuchTime}`
},
ProjectSettings: {
"page header title": "Configuración del Proyecto",
Expand Down
4 changes: 2 additions & 2 deletions web/src/ui/i18n/resources/fr.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const translations: Translations<"fr"> = {
"Pour accéder au stockage en dehors des services du datalab",
"init script section helper":
"Téléchargez ou copiez le script d'initialisation dans le langage de programmation de votre choix.",
"expires in": ({ howMuchTime }) => `Expire dans ${howMuchTime}`
"expires in": ({ howMuchTime }) => `Expire ${howMuchTime}`
},
AccountKubernetesTab: {
"credentials section title": "Connection au cluster Kubernetes",
Expand Down Expand Up @@ -120,7 +120,7 @@ export const translations: Translations<"fr"> = {
local.
</>
),
"expires in": ({ howMuchTime }) => `Le token expire dans ${howMuchTime}`
"expires in": ({ howMuchTime }) => `Le token expire ${howMuchTime}`
},
ProjectSettings: {
"page header title": "Paramètres du projet",
Expand Down

0 comments on commit 7693459

Please sign in to comment.