mirror of
https://github.com/revoltchat/revite.git
synced 2025-02-21 15:51:11 -05:00
Fix Korean language name.
This commit is contained in:
parent
0ca99ddceb
commit
2a2f711eb5
2 changed files with 3 additions and 2 deletions
|
@ -249,9 +249,10 @@ export const ServerListSidebar = observer(({ unreads, lastOpened }: Props) => {
|
||||||
x.channel?.channel_type === "DirectMessage" &&
|
x.channel?.channel_type === "DirectMessage" &&
|
||||||
x.channel.active &&
|
x.channel.active &&
|
||||||
x.unread
|
x.unread
|
||||||
)
|
) {
|
||||||
alertCount++;
|
alertCount++;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
alertCount += [...client.users.values()].filter(
|
alertCount += [...client.users.values()].filter(
|
||||||
(x) => x.relationship === RelationshipStatus.Incoming,
|
(x) => x.relationship === RelationshipStatus.Incoming,
|
||||||
|
|
|
@ -104,7 +104,7 @@ export const Languages: { [key in Language]: LanguageEntry } = {
|
||||||
id: { display: "bahasa Indonesia", emoji: "🇮🇩", i18n: "id" },
|
id: { display: "bahasa Indonesia", emoji: "🇮🇩", i18n: "id" },
|
||||||
it: { display: "Italiano", emoji: "🇮🇹", i18n: "it" },
|
it: { display: "Italiano", emoji: "🇮🇹", i18n: "it" },
|
||||||
ja: { display: "日本", emoji: "🇯🇵", i18n: "ja" },
|
ja: { display: "日本", emoji: "🇯🇵", i18n: "ja" },
|
||||||
ko: { display: "한국인", emoji: "🇰🇷", i18n: "ko" },
|
ko: { display: "한국어", emoji: "🇰🇷", i18n: "ko" },
|
||||||
lb: { display: "Lëtzebuergesch", emoji: "🇱🇺", i18n: "lb" },
|
lb: { display: "Lëtzebuergesch", emoji: "🇱🇺", i18n: "lb" },
|
||||||
lt: { display: "Lietuvių", emoji: "🇱🇹", i18n: "lt" },
|
lt: { display: "Lietuvių", emoji: "🇱🇹", i18n: "lt" },
|
||||||
mk: { display: "Македонски", emoji: "🇲🇰", i18n: "mk" },
|
mk: { display: "Македонски", emoji: "🇲🇰", i18n: "mk" },
|
||||||
|
|
Loading…
Add table
Reference in a new issue