- Are you sure you want to reset the ticker?
+ {t("tickers.questionReset")}
- This will remove all messages, descriptions and disable the ticker.
+ {t("tickers.resetMessage")}
)
}
diff --git a/src/components/ticker/TickerUserList.tsx b/src/components/ticker/TickerUserList.tsx
index 43ea0626..c645b912 100644
--- a/src/components/ticker/TickerUserList.tsx
+++ b/src/components/ticker/TickerUserList.tsx
@@ -3,6 +3,7 @@ import { FC } from 'react'
import { Ticker } from '../../api/Ticker'
import { User } from '../../api/User'
import TickerUsersListItem from './TickerUserListItem'
+import { useTranslation } from 'react-i18next'
interface Props {
ticker: Ticker
@@ -10,8 +11,10 @@ interface Props {
}
const TickerUserList: FC