Skip to content

Commit

Permalink
feat(admin-ui): update translation for uma detail page
Browse files Browse the repository at this point in the history
  • Loading branch information
harryandriyan committed Aug 12, 2022
1 parent 84acd39 commit 136f613
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
4 changes: 3 additions & 1 deletion admin-ui/app/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,9 @@
"scopeSelection": "Scope Selection",
"scopeOrExpression": "Scope (or Expression)",
"associatedClient": "Associated Client",
"creationTime": "Creation Time"
"creationTime": "Creation Time",
"scope": "Scope",
"scopeExpression": "Scope Expression"
},
"languages": {
"french": "French",
Expand Down
4 changes: 3 additions & 1 deletion admin-ui/app/locales/fr/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,9 @@
"scopeSelection": "Sélection de la portée",
"scopeOrExpression": "Portée (ou Expression)",
"associatedClient": "Client associé",
"creationTime": "Heure de création"
"creationTime": "Heure de création",
"portée": "Portée",
"scopeExpression": "Expression d'étendue"
},
"messages": {
"action_commit_question": "Journal d'audit : vous souhaitez appliquer les modifications apportées sur cette page ?",
Expand Down
4 changes: 3 additions & 1 deletion admin-ui/app/locales/pt/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,9 @@
"scopeSelection": "Seleção de Escopo",
"scopeOrExpression": "Escopo (ou Expressão)",
"associatedClient": "Cliente Associado",
"creationTime": "Tempo de Criação"
"creationTime": "Tempo de Criação",
"escopo": "Escopo",
"scopeExpression": "Expressão de escopo"
},
"messages": {
"action_commit_question": "Registro de auditoria: deseja aplicar as alterações feitas nesta página?",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,20 +79,19 @@ function ClientUMADetailPage({
<Col sm={9}>
<RadioGroup
row
name="accessTokenAsJwt"
name="scopeSelection"
value={true}
onChange={(e) => console.log(e)}
>
<FormControlLabel
value={true}
control={<Radio color="primary" />}
label="Scope"
label={t('field.scope')}
checked={true}
/>
<FormControlLabel
value={false}
control={<Radio color="primary" />}
label="Scope Expression"
label={t('field.scopeExpression')}
checked={false}
/>
</RadioGroup>
Expand Down

0 comments on commit 136f613

Please sign in to comment.