Skip to content

Commit 66dc83b

Browse files
Mattia Franchettomtfranchetto
Mattia Franchetto
authored andcommitted
Align cluster delete copy
1 parent 835f95a commit 66dc83b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

frontend/locales/en/strings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1172,7 +1172,8 @@
11721172
"add": "Add user",
11731173
"refresh": "Refresh",
11741174
"remove": "Remove",
1175-
"cancel": "Cancel"
1175+
"cancel": "Cancel",
1176+
"delete": "Delete"
11761177
},
11771178
"helpPanel": {
11781179
"title": "Users",

frontend/src/components/DeleteDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export function DeleteDialog({children, deleteCallback, header, id}: any) {
4343
<SpaceBetween direction="horizontal" size="xs">
4444
<Button onClick={cancel}>{t('users.actions.cancel')}</Button>
4545
<Button onClick={deleteCallback}>
46-
{t('users.actions.remove')}
46+
{t('users.actions.delete')}
4747
</Button>
4848
</SpaceBetween>
4949
</Box>

0 commit comments

Comments
 (0)