mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
UserTable: Fix translations in tooltip (#96909)
This commit is contained in:
parent
03b323cb61
commit
d981c67a69
@ -102,12 +102,10 @@ export const UsersTable = ({
|
||||
cell: ({ cell: { value } }: Cell<'licensedRole'>) => {
|
||||
return value === 'None' ? (
|
||||
<Text color={'disabled'}>
|
||||
<Trans i18nKey="admin.users-table.no-licensed-role">
|
||||
Not assigned{' '}
|
||||
<Tooltip placement="top" content="A licensed role will be assigned when this user signs in">
|
||||
<Icon name="question-circle" />
|
||||
</Tooltip>
|
||||
</Trans>
|
||||
<Trans i18nKey="admin.users-table.no-licensed-roles">Not assigned</Trans>
|
||||
<Tooltip placement="top" content="A licensed role will be assigned when this user signs in">
|
||||
<Icon name="question-circle" style={{ margin: '0 0 4 4' }} />
|
||||
</Tooltip>
|
||||
</Text>
|
||||
) : (
|
||||
value
|
||||
|
@ -162,7 +162,7 @@
|
||||
},
|
||||
"users-table": {
|
||||
"last-seen-never": "Never",
|
||||
"no-licensed-role": "Not assigned <2><0></0></2>"
|
||||
"no-licensed-roles": "Not assigned"
|
||||
}
|
||||
},
|
||||
"alert-labels": {
|
||||
|
@ -162,7 +162,7 @@
|
||||
},
|
||||
"users-table": {
|
||||
"last-seen-never": "Ńęvęř",
|
||||
"no-licensed-role": "Ńőŧ äşşįģʼnęđ <2><0></0></2>"
|
||||
"no-licensed-roles": "Ńőŧ äşşįģʼnęđ"
|
||||
}
|
||||
},
|
||||
"alert-labels": {
|
||||
|
Loading…
Reference in New Issue
Block a user