Table comparison addition to instances.jsx (#158)

* Table comparison addition to instances.jsx

Requested here:

https://lemmy.ml/comment/470581

* Updated translations to add new words
This commit is contained in:
C.Jay Martin 2023-06-08 08:33:00 -04:00 committed by GitHub
parent 1da9355a3f
commit c6a35ff727
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 1 deletions

@ -1 +1 @@
Subproject commit df26dfce6f71539be86635495aad8d4c95a746a6
Subproject commit 47430c9a9b52e917830901506d16ae6cd6a3f05e

View File

@ -55,6 +55,28 @@ export class Instances extends Component<any, any> {
instances: numToSI(instance_stats.stats.crawled_instances),
users: numToSI(instance_stats.stats.users_active_month),
})}
<p>
{i18n.t("instance_comparison")}:
<ul>
<li>
<a href="https://github.com/maltfield/awesome-lemmy-instances">
Awesome-Lemmy-Instances on GitHub
</a>
</li>
<li>
<a href="https://the-federation.info/platform/73">
the-federation.info Lemmy Instances Page
</a>
</li>
<li>
<a href="https://lemmymap.feddit.de/">Feddit's Lemmymap</a>
</li>
</ul>
{i18n.t("instance_browser")}{" "}
<a href="https://browse.feddit.de/">
Feddit's Lemmy Community Browser
</a>
</p>
</i>
);
}