chore: rename uses of "Guilds" to "Servers"

This commit is contained in:
41666 2022-01-22 20:27:54 -05:00
parent 8eb4377044
commit f86eaae5e9
4 changed files with 6 additions and 6 deletions

View file

@ -57,13 +57,13 @@ export const GuildNav = (props: Props) => {
<>
<SectionHead>
<GoHistory />
&nbsp; Recent Guilds
&nbsp; Recent Servers
<HeadLine />
</SectionHead>
<NavList guilds={recentGuildSlugs} />
<SectionHead>
<GoListUnordered />
&nbsp; All Guilds
&nbsp; All Servers
<HeadLine />
</SectionHead>
</>

View file

@ -18,6 +18,6 @@ export const NavSlug = (props: Props) => (
>
{props.guild ? utils.initialsFromName(props.guild.name) : <GoOrganization />}
</Avatar>
<SlugName>{props.guild?.name || <>Your Guilds</>}</SlugName>
<SlugName>{props.guild?.name || <>Your Servers</>}</SlugName>
</SlugContainer>
);

View file

@ -55,7 +55,7 @@ export const Authed = (props: Props) => {
headContent={
<GuildPopoverHead>
<GoOrganization />
My Guilds
My Servers
</GuildPopoverHead>
}
canDefocus

View file

@ -40,7 +40,7 @@ export const ServersListing = (props: ServersListingProps) => {
<>
<SectionHead>
<GoHistory />
&nbsp; Recent Guilds
&nbsp; Recent Servers
<Line />
</SectionHead>
<CardList guilds={recentGuildSlugs} />
@ -48,7 +48,7 @@ export const ServersListing = (props: ServersListingProps) => {
)}
<SectionHead>
<GoListUnordered />
&nbsp; All Guilds
&nbsp; All Servers
<Line />
</SectionHead>
<CardList guilds={sortedGuildSlugs} />