mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
chore: rename uses of "Guilds" to "Servers"
This commit is contained in:
parent
8eb4377044
commit
f86eaae5e9
4 changed files with 6 additions and 6 deletions
|
@ -57,13 +57,13 @@ export const GuildNav = (props: Props) => {
|
||||||
<>
|
<>
|
||||||
<SectionHead>
|
<SectionHead>
|
||||||
<GoHistory />
|
<GoHistory />
|
||||||
Recent Guilds
|
Recent Servers
|
||||||
<HeadLine />
|
<HeadLine />
|
||||||
</SectionHead>
|
</SectionHead>
|
||||||
<NavList guilds={recentGuildSlugs} />
|
<NavList guilds={recentGuildSlugs} />
|
||||||
<SectionHead>
|
<SectionHead>
|
||||||
<GoListUnordered />
|
<GoListUnordered />
|
||||||
All Guilds
|
All Servers
|
||||||
<HeadLine />
|
<HeadLine />
|
||||||
</SectionHead>
|
</SectionHead>
|
||||||
</>
|
</>
|
||||||
|
|
|
@ -18,6 +18,6 @@ export const NavSlug = (props: Props) => (
|
||||||
>
|
>
|
||||||
{props.guild ? utils.initialsFromName(props.guild.name) : <GoOrganization />}
|
{props.guild ? utils.initialsFromName(props.guild.name) : <GoOrganization />}
|
||||||
</Avatar>
|
</Avatar>
|
||||||
<SlugName>{props.guild?.name || <>Your Guilds</>}</SlugName>
|
<SlugName>{props.guild?.name || <>Your Servers</>}</SlugName>
|
||||||
</SlugContainer>
|
</SlugContainer>
|
||||||
);
|
);
|
||||||
|
|
|
@ -55,7 +55,7 @@ export const Authed = (props: Props) => {
|
||||||
headContent={
|
headContent={
|
||||||
<GuildPopoverHead>
|
<GuildPopoverHead>
|
||||||
<GoOrganization />
|
<GoOrganization />
|
||||||
My Guilds
|
My Servers
|
||||||
</GuildPopoverHead>
|
</GuildPopoverHead>
|
||||||
}
|
}
|
||||||
canDefocus
|
canDefocus
|
||||||
|
|
|
@ -40,7 +40,7 @@ export const ServersListing = (props: ServersListingProps) => {
|
||||||
<>
|
<>
|
||||||
<SectionHead>
|
<SectionHead>
|
||||||
<GoHistory />
|
<GoHistory />
|
||||||
Recent Guilds
|
Recent Servers
|
||||||
<Line />
|
<Line />
|
||||||
</SectionHead>
|
</SectionHead>
|
||||||
<CardList guilds={recentGuildSlugs} />
|
<CardList guilds={recentGuildSlugs} />
|
||||||
|
@ -48,7 +48,7 @@ export const ServersListing = (props: ServersListingProps) => {
|
||||||
)}
|
)}
|
||||||
<SectionHead>
|
<SectionHead>
|
||||||
<GoListUnordered />
|
<GoListUnordered />
|
||||||
All Guilds
|
All Servers
|
||||||
<Line />
|
<Line />
|
||||||
</SectionHead>
|
</SectionHead>
|
||||||
<CardList guilds={sortedGuildSlugs} />
|
<CardList guilds={sortedGuildSlugs} />
|
||||||
|
|
Loading…
Add table
Reference in a new issue