chore(translations): fix translation literals (#17501)

* chore(translations): fix translation literals

* fix table name types and translations

* fix lint

* join concat'd messages
This commit is contained in:
Ville Brofeldt
2021-11-23 10:06:09 +02:00
committed by GitHub
parent d05c561d7c
commit 5d1c9078ad
21 changed files with 188 additions and 122 deletions

View File

@@ -148,7 +148,9 @@ export default class SqlEditorLeftBar extends React.PureComponent {
transform: rotate(90deg);
`}
aria-label="Collapse"
tooltip={t(`${isActive ? 'Collapse' : 'Expand'} table preview`)}
tooltip={
isActive ? t('Collapse table preview') : t('Expand table preview')
}
>
<Icons.RightOutlined
iconSize="s"