Add missing localization for "Loading..."

This commit is contained in:
Justin Edmund 2023-07-02 02:38:16 -07:00
parent c5cef9393d
commit 14b265f5e8
3 changed files with 3 additions and 3 deletions

View file

@ -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>
} }
> >

View file

@ -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>
} }
> >

View file

@ -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>
} }
> >