1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-28 05:03:59 +03:00

Replace symbol characters with the emoji variants

The symbol ones are often rendered as little black & white icons: replace them with their variants from the emoji range

Also change to en_GB
This commit is contained in:
David Baker
2019-02-08 14:11:47 +00:00
committed by GitHub
parent 6cf2e54f9a
commit 71a01ec234

View File

@@ -83,7 +83,7 @@ const emojiMapping = [
["🍄", "mushroom"], // 18
["🌏", "globe"], // 19
["🌙", "moon"], // 20
["☁", "cloud"], // 21
["☁", "cloud"], // 21
["🔥", "fire"], // 22
["🍌", "banana"], // 23
["🍎", "apple"], // 24
@@ -91,39 +91,39 @@ const emojiMapping = [
["🌽", "corn"], // 26
["🍕", "pizza"], // 27
["🎂", "cake"], // 28
["❤", "heart"], // 29
["", "smiley"], // 30
["❤", "heart"], // 29
["🙂", "smiley"], // 30
["🤖", "robot"], // 31
["🎩", "hat"], // 32
["👓", "glasses"], // 33
["🔧", "wrench"], // 34
["🎅", "santa"], // 35
["👍", "thumbs up"], // 36
["☂", "umbrella"], // 37
["☂", "umbrella"], // 37
["⌛", "hourglass"], // 38
["⏰", "clock"], // 39
["🎁", "gift"], // 40
["💡", "light bulb"], // 41
["📕", "book"], // 42
["✏", "pencil"], // 43
["✏", "pencil"], // 43
["📎", "paperclip"], // 44
["✂", "scisors"], // 45
["🔒", "lock"], // 46
["✂", "scisors"], // 45
["🔒", "padlock"], // 46
["🔑", "key"], // 47
["🔨", "hammer"], // 48
["☎", "telephone"], // 49
["☎", "telephone"], // 49
["🏁", "flag"], // 50
["🚂", "train"], // 51
["🚲", "bicycle"], // 52
["✈", "airplane"], // 53
["✈", "aeroplane"], // 53
["🚀", "rocket"], // 54
["🏆", "trophy"], // 55
["⚽", "ball"], // 56
["🎸", "guitar"], // 57
["🎺", "trumpet"], // 58
["🔔", "bell"], // 59
["⚓", "anchor"], // 60
["🎧", "headphone"], // 61
["⚓", "anchor"], // 60
["🎧", "headphones"], // 61
["📁", "folder"], // 62
["📌", "pin"], // 63
];