mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-21 20:01:16 +00:00
Change instance list buttons from "join" to "browse" (#202)
* Change instance list buttons from "join" to "browse" This seems more inviting, as its not necessary to create an account before browsing the content * update translations * fix lint
This commit is contained in:
parent
4a6aae17e4
commit
3e23e6b8fa
5 changed files with 7 additions and 16 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit e010e8230daf4c75562001382173458c3f4b0154
|
Subproject commit 1bc69869fda7ee144ddfbc4d9fb29af3a0d4619e
|
|
@ -1 +1 @@
|
||||||
Subproject commit 14eef8c998578f60c895a38f55f58c29691f7c23
|
Subproject commit 0dc13b4ea11daaa07d964c17f7a622e3a222367a
|
|
@ -1 +1 @@
|
||||||
Subproject commit 4553c749cb0fb74d62fd156ebd119dc479693dfd
|
Subproject commit 2eac19b2a21d77d711b8a0b0a534affe0d4d6851
|
|
@ -115,9 +115,6 @@ export class Instances extends Component<any, any> {
|
||||||
let domain = instance.domain;
|
let domain = instance.domain;
|
||||||
let description = instance.site_info.site_view.site.description;
|
let description = instance.site_info.site_view.site.description;
|
||||||
let icon = instance.site_info.site_view.site.icon;
|
let icon = instance.site_info.site_view.site.icon;
|
||||||
let require_application =
|
|
||||||
instance.site_info.site_view.local_site.registration_mode ==
|
|
||||||
"requireapplication";
|
|
||||||
return (
|
return (
|
||||||
<div class="card col-6">
|
<div class="card col-6">
|
||||||
<header>
|
<header>
|
||||||
|
@ -134,15 +131,9 @@ export class Instances extends Component<any, any> {
|
||||||
<br />
|
<br />
|
||||||
<p class="join-desc">{description}</p>
|
<p class="join-desc">{description}</p>
|
||||||
<footer>
|
<footer>
|
||||||
{require_application ? (
|
<a class="button primary" href={`https://${domain}`}>
|
||||||
<a class="button primary" href={`https://${domain}`}>
|
{i18n.t("browse_instance")}
|
||||||
{i18n.t("apply_to_join")}
|
</a>
|
||||||
</a>
|
|
||||||
) : (
|
|
||||||
<a class="button primary" href={`https://${domain}`}>
|
|
||||||
{i18n.t("join")}
|
|
||||||
</a>
|
|
||||||
)}
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -9,7 +9,7 @@ export class LinkLine extends Component<any, any> {
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Link to="/instances">{i18n.t("join")}</Link>
|
<Link to="/instances">{i18n.t("join_a_server")}</Link>
|
||||||
<Link to="/news">{i18n.t("news")}</Link>
|
<Link to="/news">{i18n.t("news")}</Link>
|
||||||
<Link to="/apps">{i18n.t("apps")}</Link>
|
<Link to="/apps">{i18n.t("apps")}</Link>
|
||||||
<Link to="/donate">{i18n.t("donate")}</Link>
|
<Link to="/donate">{i18n.t("donate")}</Link>
|
||||||
|
|
Loading…
Reference in a new issue