Add missing localization for "Loading..."
This commit is contained in:
parent
c5cef9393d
commit
14b265f5e8
3 changed files with 3 additions and 3 deletions
|
|
@ -294,7 +294,7 @@ const ProfileRoute: React.FC<Props> = ({
|
||||||
hasMore={totalPages > currentPage}
|
hasMore={totalPages > currentPage}
|
||||||
loader={
|
loader={
|
||||||
<div id="NotFound">
|
<div id="NotFound">
|
||||||
<h2>Loading...</h2>
|
<h2>{t('loading')}</h2>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
|
@ -334,7 +334,7 @@ const SavedRoute: React.FC<Props> = ({
|
||||||
hasMore={totalPages > currentPage}
|
hasMore={totalPages > currentPage}
|
||||||
loader={
|
loader={
|
||||||
<div id="NotFound">
|
<div id="NotFound">
|
||||||
<h2>Loading...</h2>
|
<h2>{t('loading')}</h2>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
|
@ -345,7 +345,7 @@ const TeamsRoute: React.FC<Props> = ({
|
||||||
hasMore={totalPages > currentPage}
|
hasMore={totalPages > currentPage}
|
||||||
loader={
|
loader={
|
||||||
<div id="NotFound">
|
<div id="NotFound">
|
||||||
<h2>Loading...</h2>
|
<h2>{t('loading')}</h2>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue