diff --git a/ui/src/components/communities.tsx b/ui/src/components/communities.tsx index 7e4a0ef8b..a44782374 100644 --- a/ui/src/components/communities.tsx +++ b/ui/src/components/communities.tsx @@ -80,37 +80,37 @@ export class Communities extends Component { return (
{this.state.loading ? ( -
+

-

+

) : (
- # + { i18n.t('list_of_communities') }
@@ -153,7 +153,7 @@ export class Communities extends Component { this.handleSubscribe )} > - # + { i18n.t('subscribe') } )} @@ -177,14 +177,14 @@ export class Communities extends Component { class="btn btn-sm btn-secondary mr-1" onClick={linkEvent(this, this.prevPage)} > - # + { i18n.t('prev') } )} ); diff --git a/ui/src/components/community.tsx b/ui/src/components/community.tsx index 6bcd88b1d..e7fbf4500 100644 --- a/ui/src/components/community.tsx +++ b/ui/src/components/community.tsx @@ -125,11 +125,11 @@ export class Community extends Component { return (
{this.state.loading ? ( -
+

-

+

) : (
@@ -137,12 +137,12 @@ export class Community extends Component { {this.state.community.title} {this.state.community.removed && ( - # + { i18n.t('removed') } )} {this.state.community.nsfw && ( - # + { i18n.t('nsfw') } )} @@ -189,14 +189,14 @@ export class Community extends Component { class="btn btn-sm btn-secondary mr-1" onClick={linkEvent(this, this.prevPage)} > - # + { i18n.t('prev') } )}
);
- # + { i18n.t('name') } - # + { i18n.t('title') } - # + { i18n.t('category') } - # + { i18n.t('subscribers') } - # + { i18n.t('posts') } - # + { i18n.t('comments') }