From 71a01ec23479b1298ad009fe6cd93609b1058bc8 Mon Sep 17 00:00:00 2001 From: David Baker Date: Fri, 8 Feb 2019 14:11:47 +0000 Subject: [PATCH] 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 --- src/crypto/verification/SAS.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/crypto/verification/SAS.js b/src/crypto/verification/SAS.js index 6559c55d3..08821d6b4 100644 --- a/src/crypto/verification/SAS.js +++ b/src/crypto/verification/SAS.js @@ -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 ];