Update BetterFriendList.plugin.js
This commit is contained in:
parent
f8d9ac6466
commit
37aae2059d
|
@ -2,7 +2,7 @@
|
|||
* @name BetterFriendList
|
||||
* @author DevilBro
|
||||
* @authorId 278543574059057154
|
||||
* @version 1.3.3
|
||||
* @version 1.3.4
|
||||
* @description Adds extra Controls to the Friends Page, for example sort by Name/Status, Search and All/Request/Blocked Amount
|
||||
* @invite Jx3TjNS
|
||||
* @donate https://www.paypal.me/MircoWittrien
|
||||
|
@ -17,12 +17,12 @@ module.exports = (_ => {
|
|||
"info": {
|
||||
"name": "BetterFriendList",
|
||||
"author": "DevilBro",
|
||||
"version": "1.3.3",
|
||||
"version": "1.3.4",
|
||||
"description": "Adds extra Controls to the Friends Page, for example sort by Name/Status, Search and All/Request/Blocked Amount"
|
||||
},
|
||||
"changeLog": {
|
||||
"fixed": {
|
||||
"Changed Style": ""
|
||||
"Hidden": "You can now hide Friends from your Friend List and put them into an extra category, allowing you to clean up your list without hurting someones feelings"
|
||||
}
|
||||
}
|
||||
};
|
||||
|
@ -75,8 +75,12 @@ module.exports = (_ => {
|
|||
} : (([Plugin, BDFDB]) => {
|
||||
var rerenderTimeout, sortKey, sortReversed, searchQuery, searchTimeout;
|
||||
|
||||
const hiddenFriendsSection = "HIDDEN_FRIENDS";
|
||||
const placeHolderId = "PLACEHOLDER_BETTERFRIENDLIST";
|
||||
|
||||
var hiddenFriends = [];
|
||||
var currentSection, isHiddenSelected = false;
|
||||
|
||||
const statusSortOrder = {
|
||||
online: 0,
|
||||
streaming: 1,
|
||||
|
@ -91,15 +95,17 @@ module.exports = (_ => {
|
|||
onLoad () {
|
||||
this.defaults = {
|
||||
general: {
|
||||
addTotalAmount: {value: true, description: "Add total Amount for All/Requested/Blocked"},
|
||||
addSortOptions: {value: true, description: "Add Sort Options"},
|
||||
addSearchbar: {value: true, description: "Add a Searchbar"},
|
||||
addMutualGuild: {value: true, description: "Add mutual Servers in Friend List"}
|
||||
addTotalAmount: {value: true, description: "Adds total Amount for All/Requested/Blocked"},
|
||||
addHiddenCategory: {value: true, description: "Adds Hidden Category"},
|
||||
addSortOptions: {value: true, description: "Adds Sort Options"},
|
||||
addSearchbar: {value: true, description: "Adds a Searchbar"},
|
||||
addMutualGuild: {value: true, description: "Adds mutual Servers in Friend List"}
|
||||
}
|
||||
};
|
||||
|
||||
this.patchedModules = {
|
||||
before: {
|
||||
TabBar: "render",
|
||||
PeopleListSectionedLazy: "default",
|
||||
PeopleListSectionedNonLazy: "default"
|
||||
},
|
||||
|
@ -142,6 +148,7 @@ module.exports = (_ => {
|
|||
sortKey = null;
|
||||
sortReversed = false;
|
||||
searchQuery = "";
|
||||
isHiddenSelected = false;
|
||||
|
||||
this.forceUpdateAll();
|
||||
}
|
||||
|
@ -178,71 +185,109 @@ module.exports = (_ => {
|
|||
}
|
||||
|
||||
forceUpdateAll () {
|
||||
hiddenFriends = BDFDB.DataUtils.load(this, "hiddenFriends");
|
||||
hiddenFriends = !BDFDB.ArrayUtils.is(hiddenFriends) ? [] : hiddenFriends;
|
||||
|
||||
BDFDB.PatchUtils.forceAllUpdates(this);
|
||||
this.rerenderList();
|
||||
}
|
||||
|
||||
processTabBar (e) {
|
||||
if (this.settings.general.addTotalAmount && e.returnvalue.props.children) for (let checkChild of e.returnvalue.props.children) if (checkChild && checkChild.props.id == "ADD_FRIEND") {
|
||||
let relationships = BDFDB.LibraryModules.RelationshipStore.getRelationships(), relationshipCount = {};
|
||||
for (let type in BDFDB.DiscordConstants.RelationshipTypes) relationshipCount[type] = 0;
|
||||
for (let id in relationships) relationshipCount[relationships[id]]++;
|
||||
for (let child of e.returnvalue.props.children) if (child && child.props.id != "ADD_FRIEND") {
|
||||
let newChildren = [child.props.children].flat().filter(child => BDFDB.ObjectUtils.get(child, "type.displayName") != "NumberBadge");
|
||||
switch (child.props.id) {
|
||||
case "ALL":
|
||||
newChildren.push(this.createBadge(relationshipCount[BDFDB.DiscordConstants.RelationshipTypes.FRIEND]));
|
||||
break;
|
||||
case "ONLINE":
|
||||
newChildren.push(this.createBadge(BDFDB.LibraryModules.StatusMetaUtils.getOnlineFriendCount()));
|
||||
break;
|
||||
case "PENDING":
|
||||
newChildren.push(this.createBadge(relationshipCount[BDFDB.DiscordConstants.RelationshipTypes.PENDING_INCOMING], this.labels.incoming, relationshipCount[BDFDB.DiscordConstants.RelationshipTypes.PENDING_INCOMING] > 0));
|
||||
newChildren.push(this.createBadge(relationshipCount[BDFDB.DiscordConstants.RelationshipTypes.PENDING_OUTGOING], this.labels.outgoing));
|
||||
break;
|
||||
case "BLOCKED":
|
||||
newChildren.push(this.createBadge(relationshipCount[BDFDB.DiscordConstants.RelationshipTypes.BLOCKED]));
|
||||
break;
|
||||
|
||||
onUserContextMenu (e) {
|
||||
if (this.settings.general.addHiddenCategory && e.instance.props.user) {
|
||||
let [children, index] = BDFDB.ContextMenuUtils.findItem(e.returnvalue, {id: "remove-friend"});
|
||||
let hidden = hiddenFriends.indexOf(e.instance.props.user.id) > -1;
|
||||
if (index > -1) children.splice(index + 1, 0, BDFDB.ContextMenuUtils.createItem(BDFDB.LibraryComponents.MenuItems.MenuItem, {
|
||||
label: hidden ? this.labels.context_unhidefriend : this.labels.context_hidefriend,
|
||||
id: BDFDB.ContextMenuUtils.createItemId(this.name, hidden ? "unhide-friend" : "hide-friend"),
|
||||
action: _ => {
|
||||
if (hidden) BDFDB.ArrayUtils.remove(hiddenFriends, e.instance.props.user.id, true);
|
||||
else hiddenFriends.push(e.instance.props.user.id);
|
||||
BDFDB.DataUtils.save(hiddenFriends, this, "hiddenFriends");
|
||||
this.rerenderList();
|
||||
}
|
||||
}));
|
||||
}
|
||||
}
|
||||
|
||||
processTabBar (e) {
|
||||
if (e.instance.props.children && e.instance.props.children.some(c => c && c.props.id == BDFDB.DiscordConstants.FriendsSections.ADD_FRIEND)) {
|
||||
currentSection = e.instance.props.selectedItem;
|
||||
isHiddenSelected = e.instance.props.selectedItem == hiddenFriendsSection;
|
||||
if (!e.returnvalue) {
|
||||
e.instance.props.children = e.instance.props.children.filter(c => c && c.props.id != hiddenFriendsSection);
|
||||
if (this.settings.general.addHiddenCategory) e.instance.props.children.splice(e.instance.props.children.findIndex(c => c && c.props.id == BDFDB.DiscordConstants.FriendsSections.BLOCKED) + 1, 0, BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.TabBar.Item, {
|
||||
id: hiddenFriendsSection,
|
||||
className: BDFDB.disCN.peoplestabbaritem,
|
||||
children: this.labels.hidden
|
||||
}));
|
||||
}
|
||||
else {
|
||||
if (this.settings.general.addTotalAmount) {
|
||||
let relationships = BDFDB.LibraryModules.RelationshipStore.getRelationships(), relationshipCount = {};
|
||||
for (let type in BDFDB.DiscordConstants.RelationshipTypes) relationshipCount[type] = 0;
|
||||
for (let id in relationships) if (this.settings.general.addHiddenCategory && (hiddenFriends.indexOf(id) == -1 || relationships[id] != BDFDB.DiscordConstants.RelationshipTypes.FRIEND)) relationshipCount[relationships[id]]++;
|
||||
for (let child of e.returnvalue.props.children) if (child && child.props.id != BDFDB.DiscordConstants.FriendsSections.ADD_FRIEND) {
|
||||
let newChildren = [child.props.children].flat().filter(child => BDFDB.ObjectUtils.get(child, "type.displayName") != "NumberBadge");
|
||||
switch (child.props.id) {
|
||||
case BDFDB.DiscordConstants.FriendsSections.ALL:
|
||||
newChildren.push(this.createBadge(relationshipCount[BDFDB.DiscordConstants.RelationshipTypes.FRIEND]));
|
||||
break;
|
||||
case BDFDB.DiscordConstants.FriendsSections.ONLINE:
|
||||
newChildren.push(this.createBadge(BDFDB.LibraryModules.StatusMetaUtils.getOnlineFriendCount()));
|
||||
break;
|
||||
case BDFDB.DiscordConstants.FriendsSections.PENDING:
|
||||
newChildren.push(this.createBadge(relationshipCount[BDFDB.DiscordConstants.RelationshipTypes.PENDING_INCOMING], this.labels.incoming, relationshipCount[BDFDB.DiscordConstants.RelationshipTypes.PENDING_INCOMING] > 0));
|
||||
newChildren.push(this.createBadge(relationshipCount[BDFDB.DiscordConstants.RelationshipTypes.PENDING_OUTGOING], this.labels.outgoing));
|
||||
break;
|
||||
case BDFDB.DiscordConstants.FriendsSections.BLOCKED:
|
||||
newChildren.push(this.createBadge(relationshipCount[BDFDB.DiscordConstants.RelationshipTypes.BLOCKED]));
|
||||
break;
|
||||
case hiddenFriendsSection:
|
||||
newChildren.push(this.createBadge(hiddenFriends.filter(id => relationships[id] == BDFDB.DiscordConstants.RelationshipTypes.FRIEND).length));
|
||||
break;
|
||||
}
|
||||
child.props.children = newChildren;
|
||||
}
|
||||
}
|
||||
child.props.children = newChildren;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
processPeopleListSectionedLazy (e) {
|
||||
if (sortKey || searchQuery) {
|
||||
e.instance.props.statusSections = [].concat(e.instance.props.statusSections).map(section => {
|
||||
let newSection = [].concat(section);
|
||||
if (searchQuery) {
|
||||
let usedSearchQuery = searchQuery.toLowerCase();
|
||||
newSection = newSection.filter(user => user && typeof user.usernameLower == "string" && user.usernameLower.indexOf(usedSearchQuery) > -1);
|
||||
}
|
||||
if (sortKey) {
|
||||
newSection = BDFDB.ArrayUtils.keySort(newSection.map(user => Object.assign({}, user, {statusIndex: statusSortOrder[user.status]})), sortKey);
|
||||
if (sortReversed) newSection.reverse();
|
||||
}
|
||||
if (!newSection.length) {
|
||||
let placeholder = new BDFDB.DiscordObjects.User({
|
||||
id: placeHolderId,
|
||||
username: placeHolderId
|
||||
});
|
||||
if (placeholder) newSection.push(new BDFDB.DiscordObjects.Relationship({
|
||||
activities: [],
|
||||
applicationStream: null,
|
||||
isMobile: false,
|
||||
key: placeHolderId,
|
||||
mutualGuilds: [],
|
||||
mutualGuildsLength: 0,
|
||||
status: "offline",
|
||||
type: BDFDB.DiscordConstants.RelationshipTypes.NONE,
|
||||
user: placeholder,
|
||||
usernameLower: placeholder.usernameNormalized
|
||||
}));
|
||||
}
|
||||
return newSection;
|
||||
});
|
||||
if (this.settings.general.addHiddenCategory) {
|
||||
if (isHiddenSelected) e.instance.props.statusSections = [].concat(e.instance.props.statusSections).map(section => [].concat(section).filter(entry => entry && entry.user && hiddenFriends.indexOf(entry.user.id) > -1));
|
||||
else if (([].concat(e.instance.props.statusSections).flat(10)[0] || {}).type == BDFDB.DiscordConstants.RelationshipTypes.FRIEND) e.instance.props.statusSections = [].concat(e.instance.props.statusSections).map(section => [].concat(section).filter(entry => entry && entry.user && hiddenFriends.indexOf(entry.user.id) == -1));
|
||||
}
|
||||
if (sortKey || searchQuery) e.instance.props.statusSections = [].concat(e.instance.props.statusSections).map(section => {
|
||||
let newSection = [].concat(section);
|
||||
if (searchQuery) {
|
||||
let usedSearchQuery = searchQuery.toLowerCase();
|
||||
newSection = newSection.filter(entry => entry && typeof entry.usernameLower == "string" && entry.usernameLower.indexOf(usedSearchQuery) > -1);
|
||||
}
|
||||
if (sortKey) {
|
||||
newSection = BDFDB.ArrayUtils.keySort(newSection.map(entry => Object.assign({}, entry, {statusIndex: statusSortOrder[entry.status]})), sortKey);
|
||||
if (sortReversed) newSection.reverse();
|
||||
}
|
||||
if (!newSection.length) {
|
||||
let placeholder = new BDFDB.DiscordObjects.User({
|
||||
id: placeHolderId,
|
||||
username: placeHolderId
|
||||
});
|
||||
if (placeholder) newSection.push(new BDFDB.DiscordObjects.Relationship({
|
||||
activities: [],
|
||||
applicationStream: null,
|
||||
isMobile: false,
|
||||
key: placeHolderId,
|
||||
mutualGuilds: [],
|
||||
mutualGuildsLength: 0,
|
||||
status: "offline",
|
||||
type: BDFDB.DiscordConstants.RelationshipTypes.NONE,
|
||||
user: placeholder,
|
||||
usernameLower: placeholder.usernameNormalized
|
||||
}));
|
||||
}
|
||||
return newSection;
|
||||
});
|
||||
if (!BDFDB.PatchUtils.isPatched(this, e.instance.props, "getSectionTitle")) BDFDB.PatchUtils.patch(this, e.instance.props, "getSectionTitle", {after: e2 => {
|
||||
if (typeof e2.returnValue == "string") {
|
||||
let users = e.instance.props.statusSections.flat(10);
|
||||
|
@ -251,7 +296,7 @@ module.exports = (_ => {
|
|||
children: [
|
||||
BDFDB.ReactUtils.createElement("div", {
|
||||
className: BDFDB.disCN._betterfriendlisttitle,
|
||||
children: e2.returnValue.replace(users.length, users.filter(u => u && u.key != placeHolderId).length)
|
||||
children: this.settings.general.addHiddenCategory && isHiddenSelected ? `${this.labels.hidden} - ${users.filter(u => u && u.key != placeHolderId).length}` : e2.returnValue.replace(users.length, users.filter(u => u && u.key != placeHolderId).length)
|
||||
}),
|
||||
this.settings.general.addSortOptions && [
|
||||
{key: "usernameLower", label: BDFDB.LanguageUtils.LanguageStrings.FRIENDS_COLUMN_NAME},
|
||||
|
@ -303,6 +348,12 @@ module.exports = (_ => {
|
|||
});
|
||||
}
|
||||
}}, {force: true, noCache: true});
|
||||
if (e.returnvalue && !e.instance.props.statusSections.flat(10).length) e.returnvalue.props.children = BDFDB.ReactUtils.createElement("div", {
|
||||
className: BDFDB.disCN.peopleslistempty,
|
||||
children: BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FriendsEmptyState, {
|
||||
type: !currentSection || currentSection == hiddenFriendsSection ? BDFDB.DiscordConstants.FriendsSections.ALL : currentSection
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
processPeopleListSectionedNonLazy (e) {
|
||||
|
@ -376,136 +427,233 @@ module.exports = (_ => {
|
|||
switch (BDFDB.LanguageUtils.getLanguage().id) {
|
||||
case "bg": // Bulgarian
|
||||
return {
|
||||
context_hidefriend: "Скрий приятел",
|
||||
context_unhidefriend: "Разкрий приятел",
|
||||
hidden: "Скрити",
|
||||
incoming: "Входящи",
|
||||
outgoing: "Изходящи"
|
||||
};
|
||||
case "cs": // Czech
|
||||
return {
|
||||
context_hidefriend: "Skrýt přítele",
|
||||
context_unhidefriend: "Odkrýt přítele",
|
||||
hidden: "Skrytý",
|
||||
incoming: "Přicházející",
|
||||
outgoing: "Odchozí"
|
||||
};
|
||||
case "da": // Danish
|
||||
return {
|
||||
context_hidefriend: "Skjul ven",
|
||||
context_unhidefriend: "Skjul ven",
|
||||
hidden: "Skjult",
|
||||
incoming: "Indgående",
|
||||
outgoing: "Udgående"
|
||||
};
|
||||
case "de": // German
|
||||
return {
|
||||
context_hidefriend: "Freund ausblenden",
|
||||
context_unhidefriend: "Freund einblenden",
|
||||
hidden: "Versteckt",
|
||||
incoming: "Eingehend",
|
||||
outgoing: "Ausgehend"
|
||||
};
|
||||
case "el": // Greek
|
||||
return {
|
||||
context_hidefriend: "Απόκρυψη φίλου",
|
||||
context_unhidefriend: "Απόκρυψη φίλου",
|
||||
hidden: "Κρυμμένος",
|
||||
incoming: "Εισερχόμενος",
|
||||
outgoing: "Εξερχόμενος"
|
||||
};
|
||||
case "es": // Spanish
|
||||
return {
|
||||
context_hidefriend: "Ocultar amigo",
|
||||
context_unhidefriend: "Mostrar amigo",
|
||||
hidden: "Oculto",
|
||||
incoming: "Entrante",
|
||||
outgoing: "Saliente"
|
||||
};
|
||||
case "fi": // Finnish
|
||||
return {
|
||||
context_hidefriend: "Piilota ystävä",
|
||||
context_unhidefriend: "Näytä ystävä",
|
||||
hidden: "Piilotettu",
|
||||
incoming: "Saapuva",
|
||||
outgoing: "Lähtevä"
|
||||
};
|
||||
case "fr": // French
|
||||
return {
|
||||
context_hidefriend: "Masquer l'ami",
|
||||
context_unhidefriend: "Afficher l'ami",
|
||||
hidden: "Caché",
|
||||
incoming: "Entrant",
|
||||
outgoing: "Sortant"
|
||||
};
|
||||
case "hi": // Hindi
|
||||
return {
|
||||
context_hidefriend: "दोस्त छुपाएं",
|
||||
context_unhidefriend: "मित्र दिखाएँ",
|
||||
hidden: "छिपा हुआ",
|
||||
incoming: "आने वाली",
|
||||
outgoing: "निवर्तमान"
|
||||
};
|
||||
case "hr": // Croatian
|
||||
return {
|
||||
context_hidefriend: "Sakrij prijatelja",
|
||||
context_unhidefriend: "Otkrij prijatelja",
|
||||
hidden: "Skriven",
|
||||
incoming: "Dolazni",
|
||||
outgoing: "Odlazni"
|
||||
};
|
||||
case "hu": // Hungarian
|
||||
return {
|
||||
context_hidefriend: "Barát elrejtése",
|
||||
context_unhidefriend: "Barát megjelenítése",
|
||||
hidden: "Rejtett",
|
||||
incoming: "Beérkező",
|
||||
outgoing: "Kimenő"
|
||||
};
|
||||
case "it": // Italian
|
||||
return {
|
||||
context_hidefriend: "Nascondi amico",
|
||||
context_unhidefriend: "Scopri amico",
|
||||
hidden: "Nascosto",
|
||||
incoming: "In arrivo",
|
||||
outgoing: "Estroverso"
|
||||
};
|
||||
case "ja": // Japanese
|
||||
return {
|
||||
context_hidefriend: "友達を隠す",
|
||||
context_unhidefriend: "友達を再表示",
|
||||
hidden: "隠し",
|
||||
incoming: "着信",
|
||||
outgoing: "発信"
|
||||
};
|
||||
case "ko": // Korean
|
||||
return {
|
||||
context_hidefriend: "친구 숨기기",
|
||||
context_unhidefriend: "친구 숨기기 해제",
|
||||
hidden: "숨겨진",
|
||||
incoming: "들어오는",
|
||||
outgoing: "나가는"
|
||||
};
|
||||
case "lt": // Lithuanian
|
||||
return {
|
||||
context_hidefriend: "Slėpti draugą",
|
||||
context_unhidefriend: "Nerodyti draugo",
|
||||
hidden: "Paslėpta",
|
||||
incoming: "Gaunamasis",
|
||||
outgoing: "Išeinantis"
|
||||
};
|
||||
case "nl": // Dutch
|
||||
return {
|
||||
context_hidefriend: "Vriend verbergen",
|
||||
context_unhidefriend: "Vriend zichtbaar maken",
|
||||
hidden: "Verborgen",
|
||||
incoming: "Inkomend",
|
||||
outgoing: "Uitgaand"
|
||||
};
|
||||
case "no": // Norwegian
|
||||
return {
|
||||
context_hidefriend: "Skjul venn",
|
||||
context_unhidefriend: "Skjul venn",
|
||||
hidden: "Skjult",
|
||||
incoming: "Innkommende",
|
||||
outgoing: "Utgående"
|
||||
};
|
||||
case "pl": // Polish
|
||||
return {
|
||||
context_hidefriend: "Ukryj przyjaciela",
|
||||
context_unhidefriend: "Odkryj przyjaciela",
|
||||
hidden: "Ukryty",
|
||||
incoming: "Przychodzący",
|
||||
outgoing: "Towarzyski"
|
||||
};
|
||||
case "pt-BR": // Portuguese (Brazil)
|
||||
return {
|
||||
context_hidefriend: "Esconder Amigo",
|
||||
context_unhidefriend: "Reexibir amigo",
|
||||
hidden: "Escondido",
|
||||
incoming: "Entrada",
|
||||
outgoing: "Extrovertido"
|
||||
};
|
||||
case "ro": // Romanian
|
||||
return {
|
||||
context_hidefriend: "Ascunde prietenul",
|
||||
context_unhidefriend: "Afișează prietenul",
|
||||
hidden: "Ascuns",
|
||||
incoming: "Primite",
|
||||
outgoing: "De ieșire"
|
||||
};
|
||||
case "ru": // Russian
|
||||
return {
|
||||
context_hidefriend: "Скрыть друга",
|
||||
context_unhidefriend: "Показать друга",
|
||||
hidden: "Скрытый",
|
||||
incoming: "Входящий",
|
||||
outgoing: "Исходящий"
|
||||
};
|
||||
case "sv": // Swedish
|
||||
return {
|
||||
context_hidefriend: "Dölj vän",
|
||||
context_unhidefriend: "Göm din vän",
|
||||
hidden: "Dold",
|
||||
incoming: "Inkommande",
|
||||
outgoing: "Utgående"
|
||||
};
|
||||
case "th": // Thai
|
||||
return {
|
||||
context_hidefriend: "ซ่อนเพื่อน",
|
||||
context_unhidefriend: "เลิกซ่อนเพื่อน",
|
||||
hidden: "ซ่อนเร้น",
|
||||
incoming: "ขาเข้า",
|
||||
outgoing: "ขาออก"
|
||||
};
|
||||
case "tr": // Turkish
|
||||
return {
|
||||
context_hidefriend: "Arkadaşı Gizle",
|
||||
context_unhidefriend: "Arkadaşı Göster",
|
||||
hidden: "Gizli",
|
||||
incoming: "Gelen",
|
||||
outgoing: "Dışa dönük"
|
||||
};
|
||||
case "uk": // Ukrainian
|
||||
return {
|
||||
context_hidefriend: "Сховати друга",
|
||||
context_unhidefriend: "Показати друга",
|
||||
hidden: "Прихований",
|
||||
incoming: "Вхідні",
|
||||
outgoing: "Вихідний"
|
||||
};
|
||||
case "vi": // Vietnamese
|
||||
return {
|
||||
context_hidefriend: "Ẩn bạn bè",
|
||||
context_unhidefriend: "Bỏ ẩn bạn bè",
|
||||
hidden: "Ẩn",
|
||||
incoming: "Mới đến",
|
||||
outgoing: "Hướng ngoaị"
|
||||
};
|
||||
case "zh-CN": // Chinese (China)
|
||||
return {
|
||||
context_hidefriend: "隐藏朋友",
|
||||
context_unhidefriend: "取消隐藏好友",
|
||||
hidden: "隐",
|
||||
incoming: "进来的",
|
||||
outgoing: "外向"
|
||||
};
|
||||
case "zh-TW": // Chinese (Taiwan)
|
||||
return {
|
||||
context_hidefriend: "隱藏朋友",
|
||||
context_unhidefriend: "取消隱藏好友",
|
||||
hidden: "隱",
|
||||
incoming: "傳入",
|
||||
outgoing: "外向"
|
||||
};
|
||||
default: // English
|
||||
return {
|
||||
context_hidefriend: "Hide Friend",
|
||||
context_unhidefriend: "Unhide Friend",
|
||||
hidden: "Hidden",
|
||||
incoming: "Incoming",
|
||||
outgoing: "Outgoing"
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue