diff --git a/app/javascript/mastodon/emoji.js b/app/javascript/mastodon/emoji.js index 7a0dab9d1..407b21b4b 100644 --- a/app/javascript/mastodon/emoji.js +++ b/app/javascript/mastodon/emoji.js @@ -3,6 +3,8 @@ import Trie from 'substring-trie'; const trie = new Trie(Object.keys(unicodeMapping)); +const assetHost = process.env.CDN_HOST || ''; + const emojify = (str, customEmojis = {}) => { let rtn = ''; for (;;) { @@ -37,7 +39,7 @@ const emojify = (str, customEmojis = {}) => { str = str.slice(i + 1); } else { const [filename, shortCode] = unicodeMapping[match]; - rtn += str.slice(0, i) + `${match}`; + rtn += str.slice(0, i) + `${match}`; str = str.slice(i + match.length); } } diff --git a/app/javascript/mastodon/emojione_light.js b/app/javascript/mastodon/emojione_light.js index 0d07d012f..ecba35d03 100644 --- a/app/javascript/mastodon/emojione_light.js +++ b/app/javascript/mastodon/emojione_light.js @@ -9,5 +9,5 @@ const excluded = ['®', '©', '™']; module.exports.unicodeMapping = Object.keys(emojione.jsEscapeMap) .filter(c => !excluded.includes(c)) .map(unicodeStr => [unicodeStr, mappedUnicode[emojione.jsEscapeMap[unicodeStr]]]) - .map(([unicodeStr, shortCode]) => ({ [unicodeStr]: [emojione.emojioneList[shortCode].fname, shortCode.slice(1, shortCode.length - 1)] })) + .map(([unicodeStr, shortCode]) => ({ [unicodeStr]: [emojione.emojioneList[shortCode].fname.replace(/^0+/g, ''), shortCode.slice(1, shortCode.length - 1)] })) .reduce((x, y) => Object.assign(x, y), { }); diff --git a/app/javascript/mastodon/features/compose/components/compose_form.js b/app/javascript/mastodon/features/compose/components/compose_form.js index 413142d81..bb747b611 100644 --- a/app/javascript/mastodon/features/compose/components/compose_form.js +++ b/app/javascript/mastodon/features/compose/components/compose_form.js @@ -138,7 +138,7 @@ export default class ComposeForm extends ImmutablePureComponent { handleEmojiPick = (data) => { const position = this.autosuggestTextarea.textarea.selectionStart; - const emojiChar = data.unicode.split('-').map(code => String.fromCodePoint(parseInt(code, 16))).join(''); + const emojiChar = data.native; this._restoreCaret = position + emojiChar.length + 1; this.props.onPickEmoji(position, data); } diff --git a/app/javascript/mastodon/features/compose/components/emoji_picker_dropdown.js b/app/javascript/mastodon/features/compose/components/emoji_picker_dropdown.js index 9d05b7a34..43e175be5 100644 --- a/app/javascript/mastodon/features/compose/components/emoji_picker_dropdown.js +++ b/app/javascript/mastodon/features/compose/components/emoji_picker_dropdown.js @@ -1,12 +1,17 @@ import React from 'react'; -import Dropdown, { DropdownTrigger, DropdownContent } from 'react-simple-dropdown'; import PropTypes from 'prop-types'; import { defineMessages, injectIntl } from 'react-intl'; import { EmojiPicker as EmojiPickerAsync } from '../../ui/util/async-components'; +import { Overlay } from 'react-overlays'; +import classNames from 'classnames'; const messages = defineMessages({ emoji: { id: 'emoji_button.label', defaultMessage: 'Insert emoji' }, emoji_search: { id: 'emoji_button.search', defaultMessage: 'Search...' }, + emoji_not_found: { id: 'emoji_button.not_found', defaultMessage: 'No emojos!! (╯°□°)╯︵ ┻━┻' }, + custom: { id: 'emoji_button.custom', defaultMessage: 'Custom' }, + recent: { id: 'emoji_button.recent', defaultMessage: 'Frequently used' }, + search_results: { id: 'emoji_button.search_results', defaultMessage: 'Search results' }, people: { id: 'emoji_button.people', defaultMessage: 'People' }, nature: { id: 'emoji_button.nature', defaultMessage: 'Nature' }, food: { id: 'emoji_button.food', defaultMessage: 'Food & Drink' }, @@ -17,13 +22,234 @@ const messages = defineMessages({ flags: { id: 'emoji_button.flags', defaultMessage: 'Flags' }, }); -const settings = { - imageType: 'png', - sprites: false, - imagePathPNG: '/emoji/', -}; +const assetHost = process.env.CDN_HOST || ''; -let EmojiPicker; // load asynchronously +let EmojiPicker, Emoji; // load asynchronously + +const backgroundImageFn = () => `${assetHost}/emoji/sheet.png`; + +class ModifierPickerMenu extends React.PureComponent { + + static propTypes = { + active: PropTypes.bool, + onSelect: PropTypes.func.isRequired, + onClose: PropTypes.func.isRequired, + }; + + handleClick = (e) => { + const modifier = [].slice.call(e.currentTarget.parentNode.children).indexOf(e.target) + 1; + this.props.onSelect(modifier); + } + + componentWillReceiveProps (nextProps) { + if (nextProps.active) { + this.attachListeners(); + } else { + this.removeListeners(); + } + } + + componentWillUnmount () { + this.removeListeners(); + } + + handleDocumentClick = e => { + if (this.node && !this.node.contains(e.target)) { + this.props.onClose(); + } + } + + attachListeners () { + document.addEventListener('click', this.handleDocumentClick, false); + document.addEventListener('touchend', this.handleDocumentClick, false); + } + + removeListeners () { + document.removeEventListener('click', this.handleDocumentClick, false); + document.removeEventListener('touchend', this.handleDocumentClick, false); + } + + setRef = c => { + this.node = c; + } + + render () { + const { active } = this.props; + + return ( +
+ + + + + + +
+ ); + } + +} + +class ModifierPicker extends React.PureComponent { + + static propTypes = { + active: PropTypes.bool, + modifier: PropTypes.number, + onChange: PropTypes.func, + onClose: PropTypes.func, + onOpen: PropTypes.func, + }; + + handleClick = () => { + if (this.props.active) { + this.props.onClose(); + } else { + this.props.onOpen(); + } + } + + handleSelect = modifier => { + this.props.onChange(modifier); + this.props.onClose(); + } + + render () { + const { active, modifier } = this.props; + + return ( +
+ + +
+ ); + } + +} + +@injectIntl +class EmojiPickerMenu extends React.PureComponent { + + static propTypes = { + loading: PropTypes.bool, + onClose: PropTypes.func.isRequired, + onPick: PropTypes.func.isRequired, + style: PropTypes.object, + placement: PropTypes.string, + arrowOffsetLeft: PropTypes.string, + arrowOffsetTop: PropTypes.string, + intl: PropTypes.object.isRequired, + }; + + static defaultProps = { + style: {}, + loading: true, + placement: 'bottom', + }; + + state = { + modifierOpen: false, + modifier: 1, + }; + + handleDocumentClick = e => { + if (this.node && !this.node.contains(e.target)) { + this.props.onClose(); + } + } + + componentDidMount () { + document.addEventListener('click', this.handleDocumentClick, false); + document.addEventListener('touchend', this.handleDocumentClick, false); + } + + componentWillUnmount () { + document.removeEventListener('click', this.handleDocumentClick, false); + document.removeEventListener('touchend', this.handleDocumentClick, false); + } + + setRef = c => { + this.node = c; + } + + getI18n = () => { + const { intl } = this.props; + + return { + search: intl.formatMessage(messages.emoji_search), + notfound: intl.formatMessage(messages.emoji_not_found), + categories: { + search: intl.formatMessage(messages.search_results), + recent: intl.formatMessage(messages.recent), + people: intl.formatMessage(messages.people), + nature: intl.formatMessage(messages.nature), + foods: intl.formatMessage(messages.food), + activity: intl.formatMessage(messages.activity), + places: intl.formatMessage(messages.travel), + objects: intl.formatMessage(messages.objects), + symbols: intl.formatMessage(messages.symbols), + flags: intl.formatMessage(messages.flags), + custom: intl.formatMessage(messages.custom), + }, + }; + } + + handleClick = emoji => { + this.props.onClose(); + this.props.onPick(emoji); + } + + handleModifierOpen = () => { + this.setState({ modifierOpen: true }); + } + + handleModifierClose = () => { + this.setState({ modifierOpen: false }); + } + + handleModifierChange = modifier => { + if (modifier !== this.state.modifier) { + this.setState({ modifier }); + } + } + + render () { + const { loading, style, intl } = this.props; + + if (loading) { + return
; + } + + const title = intl.formatMessage(messages.emoji); + const { modifierOpen, modifier } = this.state; + + return ( +
+ + + +
+ ); + } + +} @injectIntl export default class EmojiPickerDropdown extends React.PureComponent { @@ -42,20 +268,17 @@ export default class EmojiPickerDropdown extends React.PureComponent { this.dropdown = c; } - handleChange = (data) => { - this.dropdown.hide(); - this.props.onPickEmoji(data); - } - onShowDropdown = () => { this.setState({ active: true }); + if (!EmojiPicker) { this.setState({ loading: true }); - EmojiPickerAsync().then(TheEmojiPicker => { - EmojiPicker = TheEmojiPicker.default; + + EmojiPickerAsync().then(EmojiMart => { + EmojiPicker = EmojiMart.Picker; + Emoji = EmojiMart.Emoji; this.setState({ loading: false }); }).catch(() => { - // TODO: show the user an error? this.setState({ loading: false }); }); } @@ -75,70 +298,39 @@ export default class EmojiPickerDropdown extends React.PureComponent { } } - onEmojiPickerKeyDown = (e) => { + handleKeyDown = e => { if (e.key === 'Escape') { this.onHideDropdown(); } } + setTargetRef = c => { + this.target = c; + } + + findTarget = () => { + return this.target; + } + render () { - const { intl } = this.props; - - const categories = { - people: { - title: intl.formatMessage(messages.people), - emoji: 'smile', - }, - nature: { - title: intl.formatMessage(messages.nature), - emoji: 'hamster', - }, - food: { - title: intl.formatMessage(messages.food), - emoji: 'pizza', - }, - activity: { - title: intl.formatMessage(messages.activity), - emoji: 'soccer', - }, - travel: { - title: intl.formatMessage(messages.travel), - emoji: 'earth_americas', - }, - objects: { - title: intl.formatMessage(messages.objects), - emoji: 'bulb', - }, - symbols: { - title: intl.formatMessage(messages.symbols), - emoji: 'clock9', - }, - flags: { - title: intl.formatMessage(messages.flags), - emoji: 'flag_gb', - }, - }; - - const { active, loading } = this.state; + const { intl, onPickEmoji } = this.props; const title = intl.formatMessage(messages.emoji); + const { active, loading } = this.state; return ( - - +
+
🙂 - +
- - { - this.state.active && !this.state.loading && - () - } - - + + + +
); } diff --git a/app/javascript/mastodon/features/ui/util/async-components.js b/app/javascript/mastodon/features/ui/util/async-components.js index c0b93a3a1..bd2fca337 100644 --- a/app/javascript/mastodon/features/ui/util/async-components.js +++ b/app/javascript/mastodon/features/ui/util/async-components.js @@ -1,5 +1,5 @@ export function EmojiPicker () { - return import(/* webpackChunkName: "emojione_picker" */'emojione-picker'); + return import(/* webpackChunkName: "emoji_picker" */'emoji-mart'); } export function Compose () { diff --git a/app/javascript/mastodon/locales/ar.json b/app/javascript/mastodon/locales/ar.json index 3a6fa2874..e27c19f4e 100644 --- a/app/javascript/mastodon/locales/ar.json +++ b/app/javascript/mastodon/locales/ar.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "الأنشطة", + "emoji_button.custom": "Custom", "emoji_button.flags": "الأعلام", "emoji_button.food": "الطعام والشراب", "emoji_button.label": "أدرج إيموجي", "emoji_button.nature": "الطبيعة", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "أشياء", "emoji_button.people": "الناس", + "emoji_button.recent": "Frequently used", "emoji_button.search": "ابحث...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "رموز", "emoji_button.travel": "أماكن و أسفار", "empty_column.community": "الخط الزمني المحلي فارغ. اكتب شيئا ما للعامة كبداية.", diff --git a/app/javascript/mastodon/locales/bg.json b/app/javascript/mastodon/locales/bg.json index 9afe2d038..85ede7dfd 100644 --- a/app/javascript/mastodon/locales/bg.json +++ b/app/javascript/mastodon/locales/bg.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "Activity", + "emoji_button.custom": "Custom", "emoji_button.flags": "Flags", "emoji_button.food": "Food & Drink", "emoji_button.label": "Insert emoji", "emoji_button.nature": "Nature", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objects", "emoji_button.people": "People", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Search...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Symbols", "emoji_button.travel": "Travel & Places", "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", diff --git a/app/javascript/mastodon/locales/ca.json b/app/javascript/mastodon/locales/ca.json index 7d45b4d6b..901241322 100644 --- a/app/javascript/mastodon/locales/ca.json +++ b/app/javascript/mastodon/locales/ca.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "Activitat", + "emoji_button.custom": "Custom", "emoji_button.flags": "Flags", "emoji_button.food": "Menjar i Beure", "emoji_button.label": "Inserir emoji", "emoji_button.nature": "Natura", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objectes", "emoji_button.people": "Gent", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Cercar...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Símbols", "emoji_button.travel": "Viatges i Llocs", "empty_column.community": "La línia de temps local és buida. Escriu alguna cosa públicament per fer rodar la pilota!", diff --git a/app/javascript/mastodon/locales/de.json b/app/javascript/mastodon/locales/de.json index 712c635c8..c5fbc3a4c 100644 --- a/app/javascript/mastodon/locales/de.json +++ b/app/javascript/mastodon/locales/de.json @@ -67,13 +67,17 @@ "embed.instructions": "Du kannst diesen Beitrag auf deiner Webseite einbetten, in dem du den folgenden Code einfügst.", "embed.preview": "So wird es aussehen:", "emoji_button.activity": "Aktivitäten", + "emoji_button.custom": "Custom", "emoji_button.flags": "Flaggen", "emoji_button.food": "Essen und Trinken", "emoji_button.label": "Emoji einfügen", "emoji_button.nature": "Natur", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Dinge", "emoji_button.people": "Leute", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Suche…", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Symbole", "emoji_button.travel": "Reise und Orte", "empty_column.community": "Die lokale Zeitleiste ist leer. Schreibe etwas öffentlich, um den Ball ins Rollen zu bringen!", diff --git a/app/javascript/mastodon/locales/defaultMessages.json b/app/javascript/mastodon/locales/defaultMessages.json index 42df796a7..b9a951a7f 100644 --- a/app/javascript/mastodon/locales/defaultMessages.json +++ b/app/javascript/mastodon/locales/defaultMessages.json @@ -516,6 +516,22 @@ "defaultMessage": "Search...", "id": "emoji_button.search" }, + { + "defaultMessage": "No emojos!! (╯°□°)╯︵ ┻━┻", + "id": "emoji_button.not_found" + }, + { + "defaultMessage": "Custom", + "id": "emoji_button.custom" + }, + { + "defaultMessage": "Frequently used", + "id": "emoji_button.recent" + }, + { + "defaultMessage": "Search results", + "id": "emoji_button.search_results" + }, { "defaultMessage": "People", "id": "emoji_button.people" @@ -1331,15 +1347,6 @@ ], "path": "app/javascript/mastodon/features/ui/components/upload_area.json" }, - { - "descriptors": [ - { - "defaultMessage": "Close", - "id": "lightbox.close" - } - ], - "path": "app/javascript/mastodon/features/ui/components/video_modal.json" - }, { "descriptors": [ { diff --git a/app/javascript/mastodon/locales/en.json b/app/javascript/mastodon/locales/en.json index 436079aeb..7ce57c4fe 100644 --- a/app/javascript/mastodon/locales/en.json +++ b/app/javascript/mastodon/locales/en.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "Activity", + "emoji_button.custom": "Custom", "emoji_button.flags": "Flags", "emoji_button.food": "Food & Drink", "emoji_button.label": "Insert emoji", "emoji_button.nature": "Nature", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objects", "emoji_button.people": "People", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Search...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Symbols", "emoji_button.travel": "Travel & Places", "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", diff --git a/app/javascript/mastodon/locales/eo.json b/app/javascript/mastodon/locales/eo.json index 945fcd8e0..8dfb05bc3 100644 --- a/app/javascript/mastodon/locales/eo.json +++ b/app/javascript/mastodon/locales/eo.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "Activity", + "emoji_button.custom": "Custom", "emoji_button.flags": "Flags", "emoji_button.food": "Food & Drink", "emoji_button.label": "Insert emoji", "emoji_button.nature": "Nature", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objects", "emoji_button.people": "People", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Search...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Symbols", "emoji_button.travel": "Travel & Places", "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", diff --git a/app/javascript/mastodon/locales/es.json b/app/javascript/mastodon/locales/es.json index 5182b5094..0489da64d 100644 --- a/app/javascript/mastodon/locales/es.json +++ b/app/javascript/mastodon/locales/es.json @@ -67,13 +67,17 @@ "embed.instructions": "Añade este toot a tu sitio web con el siguiente código.", "embed.preview": "Así es como se verá:", "emoji_button.activity": "Actividad", + "emoji_button.custom": "Custom", "emoji_button.flags": "Marcas", "emoji_button.food": "Comida y bebida", "emoji_button.label": "Insertar emoji", "emoji_button.nature": "Naturaleza", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objetos", "emoji_button.people": "Gente", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Buscar…", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Símbolos", "emoji_button.travel": "Viajes y lugares", "empty_column.community": "La línea de tiempo local está vacía. ¡Escribe algo para empezar la fiesta!", diff --git a/app/javascript/mastodon/locales/fa.json b/app/javascript/mastodon/locales/fa.json index 23f4a41d6..64a9172cf 100644 --- a/app/javascript/mastodon/locales/fa.json +++ b/app/javascript/mastodon/locales/fa.json @@ -67,13 +67,17 @@ "embed.instructions": "برای جاگذاری این نوشته در سایت خودتان، کد زیر را کپی کنید.", "embed.preview": "نوشتهٔ جاگذاری‌شده این گونه به نظر خواهد رسید:", "emoji_button.activity": "فعالیت", + "emoji_button.custom": "Custom", "emoji_button.flags": "پرچم‌ها", "emoji_button.food": "غذا و نوشیدنی", "emoji_button.label": "افزودن شکلک", "emoji_button.nature": "طبیعت", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "اشیا", "emoji_button.people": "مردم", + "emoji_button.recent": "Frequently used", "emoji_button.search": "جستجو...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "نمادها", "emoji_button.travel": "سفر و مکان", "empty_column.community": "فهرست نوشته‌های محلی خالی است. چیزی بنویسید تا چرخش بچرخد!", diff --git a/app/javascript/mastodon/locales/fi.json b/app/javascript/mastodon/locales/fi.json index fc409a932..ea8433107 100644 --- a/app/javascript/mastodon/locales/fi.json +++ b/app/javascript/mastodon/locales/fi.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "Activity", + "emoji_button.custom": "Custom", "emoji_button.flags": "Flags", "emoji_button.food": "Food & Drink", "emoji_button.label": "Insert emoji", "emoji_button.nature": "Nature", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objects", "emoji_button.people": "People", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Search...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Symbols", "emoji_button.travel": "Travel & Places", "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", diff --git a/app/javascript/mastodon/locales/fr.json b/app/javascript/mastodon/locales/fr.json index 5a436891b..a4ecc6c17 100644 --- a/app/javascript/mastodon/locales/fr.json +++ b/app/javascript/mastodon/locales/fr.json @@ -67,13 +67,17 @@ "embed.instructions": "Intégrez ce statut à votre site en copiant ce code ci-dessous.", "embed.preview": "Il apparaîtra comme cela : ", "emoji_button.activity": "Activités", + "emoji_button.custom": "Custom", "emoji_button.flags": "Drapeaux", "emoji_button.food": "Boire et manger", "emoji_button.label": "Insérer un emoji", "emoji_button.nature": "Nature", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objets", "emoji_button.people": "Personnages", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Recherche…", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Symboles", "emoji_button.travel": "Lieux et voyages", "empty_column.community": "Le fil public local est vide. Écrivez-donc quelque chose pour le remplir !", diff --git a/app/javascript/mastodon/locales/he.json b/app/javascript/mastodon/locales/he.json index 06b401d39..dbba9d3bc 100644 --- a/app/javascript/mastodon/locales/he.json +++ b/app/javascript/mastodon/locales/he.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "פעילות", + "emoji_button.custom": "Custom", "emoji_button.flags": "דגלים", "emoji_button.food": "אוכל ושתיה", "emoji_button.label": "הוספת אמוג'י", "emoji_button.nature": "טבע", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "חפצים", "emoji_button.people": "אנשים", + "emoji_button.recent": "Frequently used", "emoji_button.search": "חיפוש...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "סמלים", "emoji_button.travel": "טיולים ואתרים", "empty_column.community": "טור הסביבה ריק. יש לפרסם משהו כדי שדברים יתרחילו להתגלגל!", diff --git a/app/javascript/mastodon/locales/hr.json b/app/javascript/mastodon/locales/hr.json index cb28ce9c1..4c877d95b 100644 --- a/app/javascript/mastodon/locales/hr.json +++ b/app/javascript/mastodon/locales/hr.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "Aktivnost", + "emoji_button.custom": "Custom", "emoji_button.flags": "Zastave", "emoji_button.food": "Hrana & Piće", "emoji_button.label": "Umetni smajlije", "emoji_button.nature": "Priroda", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objekti", "emoji_button.people": "Ljudi", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Traži...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Simboli", "emoji_button.travel": "Putovanja & Mjesta", "empty_column.community": "Lokalni timeline je prazan. Napiši nešto javno kako bi pokrenuo stvari!", diff --git a/app/javascript/mastodon/locales/hu.json b/app/javascript/mastodon/locales/hu.json index a13e4fee2..699fc265d 100644 --- a/app/javascript/mastodon/locales/hu.json +++ b/app/javascript/mastodon/locales/hu.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "Activity", + "emoji_button.custom": "Custom", "emoji_button.flags": "Flags", "emoji_button.food": "Food & Drink", "emoji_button.label": "Insert emoji", "emoji_button.nature": "Nature", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objects", "emoji_button.people": "People", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Search...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Symbols", "emoji_button.travel": "Travel & Places", "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", diff --git a/app/javascript/mastodon/locales/id.json b/app/javascript/mastodon/locales/id.json index 349423cce..cbacc68ff 100644 --- a/app/javascript/mastodon/locales/id.json +++ b/app/javascript/mastodon/locales/id.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "Aktivitas", + "emoji_button.custom": "Custom", "emoji_button.flags": "Bendera", "emoji_button.food": "Makanan & Minuman", "emoji_button.label": "Tambahkan emoji", "emoji_button.nature": "Alam", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Benda-benda", "emoji_button.people": "Orang", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Cari...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Simbol", "emoji_button.travel": "Tempat Wisata", "empty_column.community": "Linimasa lokal masih kosong. Tulis sesuatu secara publik dan buat roda berputar!", diff --git a/app/javascript/mastodon/locales/io.json b/app/javascript/mastodon/locales/io.json index 5f19509e2..9b2cc27d3 100644 --- a/app/javascript/mastodon/locales/io.json +++ b/app/javascript/mastodon/locales/io.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "Activity", + "emoji_button.custom": "Custom", "emoji_button.flags": "Flags", "emoji_button.food": "Food & Drink", "emoji_button.label": "Insertar emoji", "emoji_button.nature": "Nature", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objects", "emoji_button.people": "People", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Search...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Symbols", "emoji_button.travel": "Travel & Places", "empty_column.community": "La lokala tempolineo esas vakua. Skribez ulo publike por iniciar la agiveso!", diff --git a/app/javascript/mastodon/locales/it.json b/app/javascript/mastodon/locales/it.json index cedbb947c..2106e59c7 100644 --- a/app/javascript/mastodon/locales/it.json +++ b/app/javascript/mastodon/locales/it.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "Activity", + "emoji_button.custom": "Custom", "emoji_button.flags": "Flags", "emoji_button.food": "Food & Drink", "emoji_button.label": "Inserisci emoji", "emoji_button.nature": "Nature", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objects", "emoji_button.people": "People", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Search...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Symbols", "emoji_button.travel": "Travel & Places", "empty_column.community": "La timeline locale è vuota. Condividi qualcosa pubblicamente per dare inizio alla festa!", diff --git a/app/javascript/mastodon/locales/ja.json b/app/javascript/mastodon/locales/ja.json index e78ac4c26..013cd6ef1 100644 --- a/app/javascript/mastodon/locales/ja.json +++ b/app/javascript/mastodon/locales/ja.json @@ -67,13 +67,17 @@ "embed.instructions": "下記のコードをコピーしてウェブサイトに埋め込みます。", "embed.preview": "表示例:", "emoji_button.activity": "活動", + "emoji_button.custom": "Custom", "emoji_button.flags": "国旗", "emoji_button.food": "食べ物", "emoji_button.label": "絵文字を追加", "emoji_button.nature": "自然", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "物", "emoji_button.people": "人々", + "emoji_button.recent": "Frequently used", "emoji_button.search": "検索...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "記号", "emoji_button.travel": "旅行と場所", "empty_column.community": "ローカルタイムラインはまだ使われていません。何か書いてみましょう!", diff --git a/app/javascript/mastodon/locales/ko.json b/app/javascript/mastodon/locales/ko.json index 46ed772cf..57d74ea6f 100644 --- a/app/javascript/mastodon/locales/ko.json +++ b/app/javascript/mastodon/locales/ko.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "활동", + "emoji_button.custom": "Custom", "emoji_button.flags": "국기", "emoji_button.food": "음식", "emoji_button.label": "emoji를 추가", "emoji_button.nature": "자연", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "물건", "emoji_button.people": "사람들", + "emoji_button.recent": "Frequently used", "emoji_button.search": "검색...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "기호", "emoji_button.travel": "여행과 장소", "empty_column.community": "로컬 타임라인에 아무 것도 없습니다. 아무거나 적어 보세요!", diff --git a/app/javascript/mastodon/locales/nl.json b/app/javascript/mastodon/locales/nl.json index b696bccfd..c9f837b20 100644 --- a/app/javascript/mastodon/locales/nl.json +++ b/app/javascript/mastodon/locales/nl.json @@ -33,9 +33,8 @@ "column.home": "Start", "column.mutes": "Genegeerde gebruikers", "column.notifications": "Meldingen", - "column.pins": "Pinned toot", - "column.public": "Globale tijdlijn", "column.pins": "Vastgezette toots", + "column.public": "Globale tijdlijn", "column_back_button.label": "terug", "column_header.hide_settings": "Instellingen verbergen", "column_header.moveLeft_settings": "Kolom naar links verplaatsen", @@ -68,13 +67,17 @@ "embed.instructions": "Embed deze toot op jouw website, door de onderstaande code te kopiëren.", "embed.preview": "Zo komt het eruit te zien:", "emoji_button.activity": "Activiteiten", + "emoji_button.custom": "Custom", "emoji_button.flags": "Vlaggen", "emoji_button.food": "Eten en drinken", "emoji_button.label": "Emoji toevoegen", "emoji_button.nature": "Natuur", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Voorwerpen", "emoji_button.people": "Mensen", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Zoeken...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Symbolen", "emoji_button.travel": "Reizen en plekken", "empty_column.community": "De lokale tijdlijn is nog leeg. Toot iets in het openbaar om de bal aan het rollen te krijgen!", @@ -87,7 +90,6 @@ "follow_request.authorize": "Goedkeuren", "follow_request.reject": "Afkeuren", "getting_started.appsshort": "Apps", - "getting_started.donate": "Doneren", "getting_started.faq": "FAQ", "getting_started.heading": "Beginnen", "getting_started.open_source_notice": "Mastodon is open-sourcesoftware. Je kunt bijdragen of problemen melden op GitHub via {github}.", @@ -112,10 +114,9 @@ "navigation_bar.info": "Uitgebreide informatie", "navigation_bar.logout": "Afmelden", "navigation_bar.mutes": "Genegeerde gebruikers", - "navigation_bar.pins": "Pinned toots", + "navigation_bar.pins": "Vastgezette toots", "navigation_bar.preferences": "Instellingen", "navigation_bar.public_timeline": "Globale tijdlijn", - "navigation_bar.pins": "Vastgezette toots", "notification.favourite": "{name} markeerde jouw toot als favoriet", "notification.follow": "{name} volgt jou nu", "notification.mention": "{name} vermeldde jou", diff --git a/app/javascript/mastodon/locales/no.json b/app/javascript/mastodon/locales/no.json index 742017c66..a34ee51f4 100644 --- a/app/javascript/mastodon/locales/no.json +++ b/app/javascript/mastodon/locales/no.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "Aktivitet", + "emoji_button.custom": "Custom", "emoji_button.flags": "Flagg", "emoji_button.food": "Mat og drikke", "emoji_button.label": "Sett inn emoji", "emoji_button.nature": "Natur", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objekter", "emoji_button.people": "Mennesker", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Søk...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Symboler", "emoji_button.travel": "Reise & steder", "empty_column.community": "Den lokale tidslinjen er tom. Skriv noe offentlig for å få snøballen til å rulle!", diff --git a/app/javascript/mastodon/locales/oc.json b/app/javascript/mastodon/locales/oc.json index 512e4120d..81babfb2b 100644 --- a/app/javascript/mastodon/locales/oc.json +++ b/app/javascript/mastodon/locales/oc.json @@ -67,13 +67,17 @@ "embed.instructions": "Embarcar aqueste estatut per lo far veire sus un site Internet en copiar lo còdi çai-jos.", "embed.preview": "Semblarà aquò : ", "emoji_button.activity": "Activitats", + "emoji_button.custom": "Custom", "emoji_button.flags": "Drapèus", "emoji_button.food": "Beure e manjar", "emoji_button.label": "Inserir un emoji", "emoji_button.nature": "Natura", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objèctes", "emoji_button.people": "Gents", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Cercar…", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Simbòls", "emoji_button.travel": "Viatges & lòcs", "empty_column.community": "Lo flux public local es void. Escrivètz quicòm per lo garnir !", diff --git a/app/javascript/mastodon/locales/pl.json b/app/javascript/mastodon/locales/pl.json index 1d2443690..a35668b6b 100644 --- a/app/javascript/mastodon/locales/pl.json +++ b/app/javascript/mastodon/locales/pl.json @@ -67,13 +67,17 @@ "embed.instructions": "Osadź ten status na swojej stronie wklejając poniższy kod.", "embed.preview": "Tak będzie to wyglądać:", "emoji_button.activity": "Aktywność", + "emoji_button.custom": "Custom", "emoji_button.flags": "Flagi", "emoji_button.food": "Żywność i napoje", "emoji_button.label": "Wstaw emoji", "emoji_button.nature": "Natura", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objekty", "emoji_button.people": "Ludzie", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Szukaj…", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Symbole", "emoji_button.travel": "Podróże i miejsca", "empty_column.community": "Lokalna oś czasu jest pusta. Napisz coś publicznie, aby zagaić!", diff --git a/app/javascript/mastodon/locales/pt-BR.json b/app/javascript/mastodon/locales/pt-BR.json index a5def0ad0..7ef7a9bc5 100644 --- a/app/javascript/mastodon/locales/pt-BR.json +++ b/app/javascript/mastodon/locales/pt-BR.json @@ -35,7 +35,6 @@ "column.notifications": "Notificações", "column.pins": "Postagens fixadas", "column.public": "Global", - "column.pins": "Postagens fixadas", "column_back_button.label": "Voltar", "column_header.hide_settings": "Esconder configurações", "column_header.moveLeft_settings": "Mover coluna para a esquerda", @@ -68,13 +67,17 @@ "embed.instructions": "Incorpore esta postagem em seu site copiando o código abaixo:", "embed.preview": "Aqui está uma previsão de como ficará:", "emoji_button.activity": "Atividades", + "emoji_button.custom": "Custom", "emoji_button.flags": "Bandeiras", "emoji_button.food": "Comidas & Bebidas", "emoji_button.label": "Inserir Emoji", "emoji_button.nature": "Natureza", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objetos", "emoji_button.people": "Pessoas", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Buscar...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Símbolos", "emoji_button.travel": "Viagens & Lugares", "empty_column.community": "A timeline local está vazia. Escreva algo publicamente para começar!", @@ -114,9 +117,6 @@ "navigation_bar.pins": "Postagens fixadas", "navigation_bar.preferences": "Preferências", "navigation_bar.public_timeline": "Global", - "navigation_bar.preferences": "Preferências", - "navigation_bar.public_timeline": "Global", - "navigation_bar.pins": "Postagens fixadas", "notification.favourite": "{name} adicionou a sua postagem aos favoritos", "notification.follow": "{name} te seguiu", "notification.mention": "{name} te mencionou", diff --git a/app/javascript/mastodon/locales/pt.json b/app/javascript/mastodon/locales/pt.json index cff528f83..7f9681fff 100644 --- a/app/javascript/mastodon/locales/pt.json +++ b/app/javascript/mastodon/locales/pt.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "Activity", + "emoji_button.custom": "Custom", "emoji_button.flags": "Flags", "emoji_button.food": "Food & Drink", "emoji_button.label": "Inserir Emoji", "emoji_button.nature": "Nature", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objects", "emoji_button.people": "People", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Search...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Symbols", "emoji_button.travel": "Travel & Places", "empty_column.community": "Ainda não existem conteúdo local para mostrar!", diff --git a/app/javascript/mastodon/locales/ru.json b/app/javascript/mastodon/locales/ru.json index fcc147c87..f6094d630 100644 --- a/app/javascript/mastodon/locales/ru.json +++ b/app/javascript/mastodon/locales/ru.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "Занятия", + "emoji_button.custom": "Custom", "emoji_button.flags": "Флаги", "emoji_button.food": "Еда и напитки", "emoji_button.label": "Вставить эмодзи", "emoji_button.nature": "Природа", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Предметы", "emoji_button.people": "Люди", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Найти...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Символы", "emoji_button.travel": "Путешествия", "empty_column.community": "Локальная лента пуста. Напишите что-нибудь, чтобы разогреть народ!", diff --git a/app/javascript/mastodon/locales/th.json b/app/javascript/mastodon/locales/th.json index f2752f5e0..c1b6b74e4 100644 --- a/app/javascript/mastodon/locales/th.json +++ b/app/javascript/mastodon/locales/th.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "Activity", + "emoji_button.custom": "Custom", "emoji_button.flags": "Flags", "emoji_button.food": "Food & Drink", "emoji_button.label": "Insert emoji", "emoji_button.nature": "Nature", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objects", "emoji_button.people": "People", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Search...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Symbols", "emoji_button.travel": "Travel & Places", "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", diff --git a/app/javascript/mastodon/locales/tr.json b/app/javascript/mastodon/locales/tr.json index 2676b851c..b9b249bc0 100644 --- a/app/javascript/mastodon/locales/tr.json +++ b/app/javascript/mastodon/locales/tr.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "Aktivite", + "emoji_button.custom": "Custom", "emoji_button.flags": "Bayraklar", "emoji_button.food": "Yiyecek ve İçecek", "emoji_button.label": "Emoji ekle", "emoji_button.nature": "Doğa", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Nesneler", "emoji_button.people": "İnsanlar", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Emoji ara...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Semboller", "emoji_button.travel": "Seyahat ve Yerler", "empty_column.community": "Yerel zaman tüneliniz boş. Daha fazla eğlence için herkese açık bir gönderi paylaşın.", diff --git a/app/javascript/mastodon/locales/uk.json b/app/javascript/mastodon/locales/uk.json index 6b5ab64ef..9d3e7ec7c 100644 --- a/app/javascript/mastodon/locales/uk.json +++ b/app/javascript/mastodon/locales/uk.json @@ -67,13 +67,17 @@ "embed.instructions": "Embed this status on your website by copying the code below.", "embed.preview": "Here is what it will look like:", "emoji_button.activity": "Заняття", + "emoji_button.custom": "Custom", "emoji_button.flags": "Прапори", "emoji_button.food": "Їжа та напої", "emoji_button.label": "Вставити емодзі", "emoji_button.nature": "Природа", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Предмети", "emoji_button.people": "Люди", + "emoji_button.recent": "Frequently used", "emoji_button.search": "Знайти...", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "Символи", "emoji_button.travel": "Подорожі", "empty_column.community": "Локальна стрічка пуста. Напишіть щось, щоб розігріти народ!", diff --git a/app/javascript/mastodon/locales/zh-CN.json b/app/javascript/mastodon/locales/zh-CN.json index 6037e7581..70589adfb 100644 --- a/app/javascript/mastodon/locales/zh-CN.json +++ b/app/javascript/mastodon/locales/zh-CN.json @@ -67,13 +67,17 @@ "embed.instructions": "要内嵌此嘟文,请将以下代码贴进你的网站。", "embed.preview": "到时大概长这样:", "emoji_button.activity": "活动", + "emoji_button.custom": "Custom", "emoji_button.flags": "旗帜", "emoji_button.food": "食物和饮料", "emoji_button.label": "加入表情符号", "emoji_button.nature": "自然", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "物体", "emoji_button.people": "人物", + "emoji_button.recent": "Frequently used", "emoji_button.search": "搜索…", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "符号", "emoji_button.travel": "旅途和地点", "empty_column.community": "本站时间轴暂时未有内容,快嘟几个来抢头香啊!", diff --git a/app/javascript/mastodon/locales/zh-HK.json b/app/javascript/mastodon/locales/zh-HK.json index 66d32fb7e..e702a385e 100644 --- a/app/javascript/mastodon/locales/zh-HK.json +++ b/app/javascript/mastodon/locales/zh-HK.json @@ -67,13 +67,17 @@ "embed.instructions": "要內嵌此文章,請將以下代碼貼進你的網站。", "embed.preview": "看上去會是這樣:", "emoji_button.activity": "活動", + "emoji_button.custom": "Custom", "emoji_button.flags": "旗幟", "emoji_button.food": "飲飲食食", "emoji_button.label": "加入表情符號", "emoji_button.nature": "自然", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "物品", "emoji_button.people": "人物", + "emoji_button.recent": "Frequently used", "emoji_button.search": "搜尋…", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "符號", "emoji_button.travel": "旅遊景物", "empty_column.community": "本站時間軸暫時未有內容,快文章來搶頭香啊!", diff --git a/app/javascript/mastodon/locales/zh-TW.json b/app/javascript/mastodon/locales/zh-TW.json index b3cc6add7..964ce15c0 100644 --- a/app/javascript/mastodon/locales/zh-TW.json +++ b/app/javascript/mastodon/locales/zh-TW.json @@ -67,13 +67,17 @@ "embed.instructions": "要內嵌此貼文,請將以下代碼貼進你的網站。", "embed.preview": "看上去會變成這樣:", "emoji_button.activity": "活動", + "emoji_button.custom": "Custom", "emoji_button.flags": "旗幟", "emoji_button.food": "食物與飲料", "emoji_button.label": "插入表情符號", "emoji_button.nature": "自然", + "emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "物件", "emoji_button.people": "人", + "emoji_button.recent": "Frequently used", "emoji_button.search": "搜尋…", + "emoji_button.search_results": "Search results", "emoji_button.symbols": "符號", "emoji_button.travel": "旅遊與地點", "empty_column.community": "本地時間軸是空的。公開寫點什麼吧!", diff --git a/app/javascript/mastodon/reducers/compose.js b/app/javascript/mastodon/reducers/compose.js index 34f5dab7f..526dbd0c5 100644 --- a/app/javascript/mastodon/reducers/compose.js +++ b/app/javascript/mastodon/reducers/compose.js @@ -120,7 +120,7 @@ const insertSuggestion = (state, position, token, completion) => { }; const insertEmoji = (state, position, emojiData) => { - const emoji = emojiData.unicode.split('-').map(code => String.fromCodePoint(parseInt(code, 16))).join(''); + const emoji = emojiData.native; return state.withMutations(map => { map.update('text', oldText => `${oldText.slice(0, position)}${emoji} ${oldText.slice(position)}`); diff --git a/app/javascript/styles/application.scss b/app/javascript/styles/application.scss index f418ba699..0eb6ac6d8 100644 --- a/app/javascript/styles/application.scss +++ b/app/javascript/styles/application.scss @@ -15,6 +15,7 @@ @import 'accounts'; @import 'stream_entries'; @import 'components'; +@import 'emoji_picker'; @import 'about'; @import 'tables'; @import 'admin'; diff --git a/app/javascript/styles/components.scss b/app/javascript/styles/components.scss index e0a310b6c..abf5cfd5b 100644 --- a/app/javascript/styles/components.scss +++ b/app/javascript/styles/components.scss @@ -390,17 +390,11 @@ .compose-form__autosuggest-wrapper { position: relative; - .emoji-picker__dropdown { + .emoji-picker-dropdown { position: absolute; right: 5px; top: 5px; - &.dropdown--active::after { - border-color: transparent transparent $base-border-color; - bottom: -1px; - right: 8px; - } - ::-webkit-scrollbar-track:hover, ::-webkit-scrollbar-track:active { background-color: rgba($base-overlay-background, 0.3); @@ -2583,198 +2577,56 @@ button.icon-button.active i.fa-retweet { animation-direction: alternate; } -.emoji-dialog { - width: 245px; - height: 270px; +.emoji-picker-dropdown__menu { background: $simple-background-color; - box-sizing: border-box; + position: absolute; + box-shadow: 4px 4px 6px rgba($base-shadow-color, 0.4); border-radius: 4px; + margin-top: 5px; + + .emoji-mart-scroll { + transition: opacity 200ms ease; + } + + &.selecting .emoji-mart-scroll { + opacity: 0.5; + } +} + +.emoji-picker-dropdown__modifiers { + position: absolute; + top: 60px; + right: 11px; + cursor: pointer; +} + +.emoji-picker-dropdown__modifiers__menu { + position: absolute; + z-index: 4; + top: -4px; + left: -8px; + background: $simple-background-color; + border-radius: 4px; + box-shadow: 1px 2px 6px rgba($base-shadow-color, 0.2); overflow: hidden; - position: relative; - box-shadow: 0 0 8px rgba($base-shadow-color, 0.2); - .emojione { - margin: 0; - width: 100%; - height: auto; - } - - .emoji-dialog-header { - padding: 0 10px; - - ul { - padding: 0; - margin: 0; - list-style: none; - } - - li { - display: inline-block; - box-sizing: border-box; - padding: 10px 5px; - cursor: pointer; - border-bottom: 2px solid transparent; - - .emoji { - width: 18px; - height: 18px; - } - - img, - svg { - width: 18px; - height: 18px; - filter: grayscale(100%); - } - - &:hover { - img, - svg { - filter: grayscale(0); - } - } - - &.active { - border-bottom-color: $ui-highlight-color; - - img, - svg { - filter: grayscale(0); - } - } - } - } - - .emoji-row { - box-sizing: border-box; - overflow-y: hidden; - padding-left: 10px; - - .emoji { - display: inline-block; - padding: 2.5px; - border-radius: 4px; - } - } - - .emoji-category-header { - box-sizing: border-box; - overflow-y: hidden; - padding: 10px 8px 10px 16px; - display: table; - - > * { - display: table-cell; - vertical-align: middle; - } - } - - .emoji-category-title { - font-size: 12px; - text-transform: uppercase; - font-weight: 500; - color: darken($ui-secondary-color, 18%); - cursor: default; - } - - .emoji-category-heading-decoration { - text-align: right; - } - - .modifiers { - list-style: none; - padding: 0; - margin: 0; - vertical-align: middle; - white-space: nowrap; - margin-top: 4px; - - li { - display: inline-block; - padding: 0 2px; - - &:last-of-type { - padding-right: 0; - } - } - - .modifier { - display: inline-block; - border-radius: 10px; - width: 15px; - height: 15px; - position: relative; - cursor: pointer; - - &.active::after { - content: ""; - display: block; - position: absolute; - width: 7px; - height: 7px; - border-radius: 10px; - border: 2px solid $base-border-color; - top: 2px; - left: 2px; - } - } - } - - .emoji-search-wrapper { - padding: 10px; - border-bottom: 1px solid lighten($ui-secondary-color, 4%); - } - - .emoji-search { - font-size: 14px; - font-weight: 400; - padding: 7px 9px; - font-family: inherit; + button { display: block; - width: 100%; - background: rgba($ui-secondary-color, 0.3); - color: darken($ui-secondary-color, 18%); - border: 1px solid $ui-secondary-color; - border-radius: 4px; - } - - .emoji-categories-wrapper { - position: absolute; - top: 42px; - bottom: 0; - left: 0; - right: 0; - } - - .emoji-search-wrapper + .emoji-categories-wrapper { - top: 93px; - } - - .emoji-row .emoji { - img, - svg { - transition: transform 60ms ease-in-out; - } - - &:hover { - background: lighten($ui-secondary-color, 3%); - - img, - svg { - transform: translateZ(0) scale(1.2); - } - } - } - - .emoji { - width: 22px; - height: 22px; cursor: pointer; + border: 0; + padding: 4px 8px; + background: transparent; - &:focus { - outline: 0; + &:hover, + &:focus, + &:active { + background: rgba($ui-secondary-color, 0.4); } } + + .emoji-mart-emoji { + height: 22px; + } } .upload-area { diff --git a/app/javascript/styles/emoji_picker.scss b/app/javascript/styles/emoji_picker.scss new file mode 100644 index 000000000..dbd9dbd97 --- /dev/null +++ b/app/javascript/styles/emoji_picker.scss @@ -0,0 +1,197 @@ +.emoji-mart { + &, + * { + box-sizing: border-box; + line-height: 1.15; + } + + font-size: 13px; + display: inline-block; + color: $ui-base-color; + + .emoji-mart-emoji { + padding: 6px; + } +} + +.emoji-mart-bar { + border: 0 solid darken($ui-secondary-color, 8%); + + &:first-child { + border-bottom-width: 1px; + border-top-left-radius: 5px; + border-top-right-radius: 5px; + background: $ui-secondary-color; + } + + &:last-child { + border-top-width: 1px; + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; + display: none; + } +} + +.emoji-mart-anchors { + display: flex; + justify-content: space-between; + padding: 0 6px; + color: $ui-primary-color; + line-height: 0; +} + +.emoji-mart-anchor { + position: relative; + flex: 1; + text-align: center; + padding: 12px 4px; + overflow: hidden; + transition: color .1s ease-out; + cursor: pointer; + + &:hover { + color: darken($ui-primary-color, 4%); + } +} + +.emoji-mart-anchor-selected { + color: darken($ui-highlight-color, 3%); + + &:hover { + color: darken($ui-highlight-color, 3%); + } + + .emoji-mart-anchor-bar { + bottom: 0; + } +} + +.emoji-mart-anchor-bar { + position: absolute; + bottom: -3px; + left: 0; + width: 100%; + height: 3px; + background-color: darken($ui-highlight-color, 3%); +} + +.emoji-mart-anchors { + i { + display: inline-block; + width: 100%; + max-width: 22px; + } + + svg { + fill: currentColor; + max-height: 18px; + } +} + +.emoji-mart-scroll { + overflow-y: scroll; + height: 270px; + padding: 0 6px 6px; + background: $simple-background-color; +} + +.emoji-mart-search { + padding: 10px; + padding-right: 45px; + background: $simple-background-color; + + input { + font-size: 14px; + font-weight: 400; + padding: 7px 9px; + font-family: inherit; + display: block; + width: 100%; + background: rgba($ui-secondary-color, 0.3); + color: $ui-primary-color; + border: 1px solid $ui-secondary-color; + border-radius: 4px; + + &::-moz-focus-inner { + border: 0; + } + + &::-moz-focus-inner, + &:focus, + &:active { + outline: 0 !important; + } + } +} + +.emoji-mart-category .emoji-mart-emoji { + cursor: pointer; + + span { + z-index: 1; + position: relative; + text-align: center; + } + + &:hover::before { + z-index: 0; + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba($ui-secondary-color, 0.7); + border-radius: 100%; + } +} + +.emoji-mart-category-label { + z-index: 2; + position: relative; + position: -webkit-sticky; + position: sticky; + top: 0; + + span { + display: block; + width: 100%; + font-weight: 500; + padding: 5px 6px; + background: $simple-background-color; + } +} + +.emoji-mart-emoji { + position: relative; + display: inline-block; + font-size: 0; + + span { + width: 22px; + height: 22px; + } +} + +.emoji-mart-no-results { + font-size: 14px; + text-align: center; + padding-top: 70px; + color: $ui-primary-color; + + .emoji-mart-category-label { + display: none; + } + + .emoji-mart-no-results-label { + margin-top: .2em; + } + + .emoji-mart-emoji:hover::before { + content: none; + } +} + +.emoji-mart-preview { + display: none; +} diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml index 15012de7e..bd846552b 100755 --- a/app/views/layouts/application.html.haml +++ b/app/views/layouts/application.html.haml @@ -28,7 +28,7 @@ %link{ href: asset_pack_path('features/notifications.js'), crossorigin: 'anonymous', rel: 'preload', as: 'script' }/ %link{ href: asset_pack_path('features/community_timeline.js'), crossorigin: 'anonymous', rel: 'preload', as: 'script' }/ %link{ href: asset_pack_path('features/public_timeline.js'), crossorigin: 'anonymous', rel: 'preload', as: 'script' }/ - %link{ href: asset_pack_path('emojione_picker.js'), crossorigin: 'anonymous', rel: 'preload', as: 'script' }/ + %link{ href: asset_pack_path('emoji_picker.js'), crossorigin: 'anonymous', rel: 'preload', as: 'script' }/ = javascript_pack_tag "locale_#{I18n.locale}", integrity: true, crossorigin: 'anonymous' = csrf_meta_tags diff --git a/package.json b/package.json index 8894835cd..be9b90875 100644 --- a/package.json +++ b/package.json @@ -45,6 +45,7 @@ "css-loader": "^0.28.4", "detect-passive-events": "^1.0.2", "dotenv": "^4.0.0", + "emoji-mart": "^1.0.1", "emojione": "^2.2.7", "emojione-picker": "^2.2.1", "es6-symbol": "^3.1.1", diff --git a/public/emoji/0023-20e3.png b/public/emoji/0023-20e3.png deleted file mode 100644 index 6e26f0070..000000000 Binary files a/public/emoji/0023-20e3.png and /dev/null differ diff --git a/public/emoji/0023-20e3.svg b/public/emoji/0023-20e3.svg deleted file mode 100644 index a29d90113..000000000 --- a/public/emoji/0023-20e3.svg +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0023.png b/public/emoji/0023.png deleted file mode 100644 index 811f22af8..000000000 Binary files a/public/emoji/0023.png and /dev/null differ diff --git a/public/emoji/0023.svg b/public/emoji/0023.svg deleted file mode 100644 index 76c606dd0..000000000 --- a/public/emoji/0023.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/002a-20e3.png b/public/emoji/002a-20e3.png deleted file mode 100644 index 2f8e51138..000000000 Binary files a/public/emoji/002a-20e3.png and /dev/null differ diff --git a/public/emoji/002a-20e3.svg b/public/emoji/002a-20e3.svg deleted file mode 100644 index bc3b2e6eb..000000000 --- a/public/emoji/002a-20e3.svg +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/002a.png b/public/emoji/002a.png deleted file mode 100644 index c39443e24..000000000 Binary files a/public/emoji/002a.png and /dev/null differ diff --git a/public/emoji/002a.svg b/public/emoji/002a.svg deleted file mode 100644 index 258414904..000000000 --- a/public/emoji/002a.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0030-20e3.png b/public/emoji/0030-20e3.png deleted file mode 100644 index 13aca83e0..000000000 Binary files a/public/emoji/0030-20e3.png and /dev/null differ diff --git a/public/emoji/0030-20e3.svg b/public/emoji/0030-20e3.svg deleted file mode 100644 index 57dc88909..000000000 --- a/public/emoji/0030-20e3.svg +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0030.png b/public/emoji/0030.png deleted file mode 100644 index e730b28df..000000000 Binary files a/public/emoji/0030.png and /dev/null differ diff --git a/public/emoji/0030.svg b/public/emoji/0030.svg deleted file mode 100644 index 8ea076ce9..000000000 --- a/public/emoji/0030.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0031-20e3.png b/public/emoji/0031-20e3.png deleted file mode 100644 index e6d84b801..000000000 Binary files a/public/emoji/0031-20e3.png and /dev/null differ diff --git a/public/emoji/0031-20e3.svg b/public/emoji/0031-20e3.svg deleted file mode 100644 index e18178a17..000000000 --- a/public/emoji/0031-20e3.svg +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0031.png b/public/emoji/0031.png deleted file mode 100644 index 9c4cbd6f7..000000000 Binary files a/public/emoji/0031.png and /dev/null differ diff --git a/public/emoji/0031.svg b/public/emoji/0031.svg deleted file mode 100644 index c0ca63e68..000000000 --- a/public/emoji/0031.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0032-20e3.png b/public/emoji/0032-20e3.png deleted file mode 100644 index 927339c9b..000000000 Binary files a/public/emoji/0032-20e3.png and /dev/null differ diff --git a/public/emoji/0032-20e3.svg b/public/emoji/0032-20e3.svg deleted file mode 100644 index c2eb5bd50..000000000 --- a/public/emoji/0032-20e3.svg +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0032.png b/public/emoji/0032.png deleted file mode 100644 index 9a0b49a0e..000000000 Binary files a/public/emoji/0032.png and /dev/null differ diff --git a/public/emoji/0032.svg b/public/emoji/0032.svg deleted file mode 100644 index abd01370a..000000000 --- a/public/emoji/0032.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0033-20e3.png b/public/emoji/0033-20e3.png deleted file mode 100644 index dbaa6183e..000000000 Binary files a/public/emoji/0033-20e3.png and /dev/null differ diff --git a/public/emoji/0033-20e3.svg b/public/emoji/0033-20e3.svg deleted file mode 100644 index 295276013..000000000 --- a/public/emoji/0033-20e3.svg +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0033.png b/public/emoji/0033.png deleted file mode 100644 index bc898b986..000000000 Binary files a/public/emoji/0033.png and /dev/null differ diff --git a/public/emoji/0033.svg b/public/emoji/0033.svg deleted file mode 100644 index 3136230ff..000000000 --- a/public/emoji/0033.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0034-20e3.png b/public/emoji/0034-20e3.png deleted file mode 100644 index b0e914aac..000000000 Binary files a/public/emoji/0034-20e3.png and /dev/null differ diff --git a/public/emoji/0034-20e3.svg b/public/emoji/0034-20e3.svg deleted file mode 100644 index f530a7542..000000000 --- a/public/emoji/0034-20e3.svg +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0034.png b/public/emoji/0034.png deleted file mode 100644 index 7216ee32b..000000000 Binary files a/public/emoji/0034.png and /dev/null differ diff --git a/public/emoji/0034.svg b/public/emoji/0034.svg deleted file mode 100644 index 1722ee958..000000000 --- a/public/emoji/0034.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0035-20e3.png b/public/emoji/0035-20e3.png deleted file mode 100644 index d14371f3f..000000000 Binary files a/public/emoji/0035-20e3.png and /dev/null differ diff --git a/public/emoji/0035-20e3.svg b/public/emoji/0035-20e3.svg deleted file mode 100644 index dc4e1d81a..000000000 --- a/public/emoji/0035-20e3.svg +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0035.png b/public/emoji/0035.png deleted file mode 100644 index c64709a7e..000000000 Binary files a/public/emoji/0035.png and /dev/null differ diff --git a/public/emoji/0035.svg b/public/emoji/0035.svg deleted file mode 100644 index 3e7717f08..000000000 --- a/public/emoji/0035.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0036-20e3.png b/public/emoji/0036-20e3.png deleted file mode 100644 index 371b3acef..000000000 Binary files a/public/emoji/0036-20e3.png and /dev/null differ diff --git a/public/emoji/0036-20e3.svg b/public/emoji/0036-20e3.svg deleted file mode 100644 index 9ce3a594f..000000000 --- a/public/emoji/0036-20e3.svg +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0036.png b/public/emoji/0036.png deleted file mode 100644 index 68e1e71e4..000000000 Binary files a/public/emoji/0036.png and /dev/null differ diff --git a/public/emoji/0036.svg b/public/emoji/0036.svg deleted file mode 100644 index 2ff6d9390..000000000 --- a/public/emoji/0036.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0037-20e3.png b/public/emoji/0037-20e3.png deleted file mode 100644 index 9b3476ae7..000000000 Binary files a/public/emoji/0037-20e3.png and /dev/null differ diff --git a/public/emoji/0037-20e3.svg b/public/emoji/0037-20e3.svg deleted file mode 100644 index 1f01b9db8..000000000 --- a/public/emoji/0037-20e3.svg +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0037.png b/public/emoji/0037.png deleted file mode 100644 index e4aa065c6..000000000 Binary files a/public/emoji/0037.png and /dev/null differ diff --git a/public/emoji/0037.svg b/public/emoji/0037.svg deleted file mode 100644 index 6079e4930..000000000 --- a/public/emoji/0037.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0038-20e3.png b/public/emoji/0038-20e3.png deleted file mode 100644 index 8c95874d4..000000000 Binary files a/public/emoji/0038-20e3.png and /dev/null differ diff --git a/public/emoji/0038-20e3.svg b/public/emoji/0038-20e3.svg deleted file mode 100644 index b6ed90a32..000000000 --- a/public/emoji/0038-20e3.svg +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0038.png b/public/emoji/0038.png deleted file mode 100644 index 27eae28e6..000000000 Binary files a/public/emoji/0038.png and /dev/null differ diff --git a/public/emoji/0038.svg b/public/emoji/0038.svg deleted file mode 100644 index 014bf2631..000000000 --- a/public/emoji/0038.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0039-20e3.png b/public/emoji/0039-20e3.png deleted file mode 100644 index 9fce3d1ec..000000000 Binary files a/public/emoji/0039-20e3.png and /dev/null differ diff --git a/public/emoji/0039-20e3.svg b/public/emoji/0039-20e3.svg deleted file mode 100644 index c88341970..000000000 --- a/public/emoji/0039-20e3.svg +++ /dev/null @@ -1,2 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/0039.png b/public/emoji/0039.png deleted file mode 100644 index fd9e98055..000000000 Binary files a/public/emoji/0039.png and /dev/null differ diff --git a/public/emoji/0039.svg b/public/emoji/0039.svg deleted file mode 100644 index afda6d7b6..000000000 --- a/public/emoji/0039.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/00a9.png b/public/emoji/00a9.png deleted file mode 100644 index 6b9a6adbf..000000000 Binary files a/public/emoji/00a9.png and /dev/null differ diff --git a/public/emoji/00a9.svg b/public/emoji/00a9.svg deleted file mode 100644 index 68a770227..000000000 --- a/public/emoji/00a9.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/00ae.png b/public/emoji/00ae.png deleted file mode 100644 index 53ef9f2d4..000000000 Binary files a/public/emoji/00ae.png and /dev/null differ diff --git a/public/emoji/00ae.svg b/public/emoji/00ae.svg deleted file mode 100644 index 8b084f6bf..000000000 --- a/public/emoji/00ae.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/emoji/1f004.png b/public/emoji/1f004.png deleted file mode 100644 index 66fd32025..000000000 Binary files a/public/emoji/1f004.png and /dev/null differ diff --git a/public/emoji/1f004.svg b/public/emoji/1f004.svg index 45867fb5a..f6f39e433 100644 --- a/public/emoji/1f004.svg +++ b/public/emoji/1f004.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f0cf.png b/public/emoji/1f0cf.png deleted file mode 100644 index 3d0924b68..000000000 Binary files a/public/emoji/1f0cf.png and /dev/null differ diff --git a/public/emoji/1f0cf.svg b/public/emoji/1f0cf.svg index 45ae8abcc..ae95b9954 100644 --- a/public/emoji/1f0cf.svg +++ b/public/emoji/1f0cf.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f170.png b/public/emoji/1f170.png deleted file mode 100644 index 8603ff05a..000000000 Binary files a/public/emoji/1f170.png and /dev/null differ diff --git a/public/emoji/1f170.svg b/public/emoji/1f170.svg index a2ed41f33..c9fc32b71 100644 --- a/public/emoji/1f170.svg +++ b/public/emoji/1f170.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f171.png b/public/emoji/1f171.png deleted file mode 100644 index 25875bc6a..000000000 Binary files a/public/emoji/1f171.png and /dev/null differ diff --git a/public/emoji/1f171.svg b/public/emoji/1f171.svg index d0f8e6494..f7251222d 100644 --- a/public/emoji/1f171.svg +++ b/public/emoji/1f171.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f17e.png b/public/emoji/1f17e.png deleted file mode 100644 index 73278ba19..000000000 Binary files a/public/emoji/1f17e.png and /dev/null differ diff --git a/public/emoji/1f17e.svg b/public/emoji/1f17e.svg index 8844efa53..96c14b4c3 100644 --- a/public/emoji/1f17e.svg +++ b/public/emoji/1f17e.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f17f.png b/public/emoji/1f17f.png deleted file mode 100644 index 7be7dac27..000000000 Binary files a/public/emoji/1f17f.png and /dev/null differ diff --git a/public/emoji/1f17f.svg b/public/emoji/1f17f.svg index 5d8564444..33db94984 100644 --- a/public/emoji/1f17f.svg +++ b/public/emoji/1f17f.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f18e.png b/public/emoji/1f18e.png deleted file mode 100644 index d9f2d17de..000000000 Binary files a/public/emoji/1f18e.png and /dev/null differ diff --git a/public/emoji/1f18e.svg b/public/emoji/1f18e.svg index 6c5e8866f..207d4cf09 100644 --- a/public/emoji/1f18e.svg +++ b/public/emoji/1f18e.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f191.png b/public/emoji/1f191.png deleted file mode 100644 index 8b01b4343..000000000 Binary files a/public/emoji/1f191.png and /dev/null differ diff --git a/public/emoji/1f191.svg b/public/emoji/1f191.svg index ef2cbf896..7334171fd 100644 --- a/public/emoji/1f191.svg +++ b/public/emoji/1f191.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f192.png b/public/emoji/1f192.png deleted file mode 100644 index 74674978d..000000000 Binary files a/public/emoji/1f192.png and /dev/null differ diff --git a/public/emoji/1f192.svg b/public/emoji/1f192.svg index 4bcdb3b91..86fd7df12 100644 --- a/public/emoji/1f192.svg +++ b/public/emoji/1f192.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f193.png b/public/emoji/1f193.png deleted file mode 100644 index b71956eb4..000000000 Binary files a/public/emoji/1f193.png and /dev/null differ diff --git a/public/emoji/1f193.svg b/public/emoji/1f193.svg index d26b8c27c..72a80ae58 100644 --- a/public/emoji/1f193.svg +++ b/public/emoji/1f193.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f194.png b/public/emoji/1f194.png deleted file mode 100644 index 5bf69bf7b..000000000 Binary files a/public/emoji/1f194.png and /dev/null differ diff --git a/public/emoji/1f194.svg b/public/emoji/1f194.svg index 0c36d517b..9d72b800c 100644 --- a/public/emoji/1f194.svg +++ b/public/emoji/1f194.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f195.png b/public/emoji/1f195.png deleted file mode 100644 index b4f85488d..000000000 Binary files a/public/emoji/1f195.png and /dev/null differ diff --git a/public/emoji/1f195.svg b/public/emoji/1f195.svg index ad6466f5e..22dad4cf8 100644 --- a/public/emoji/1f195.svg +++ b/public/emoji/1f195.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f196.png b/public/emoji/1f196.png deleted file mode 100644 index ee8d20f5e..000000000 Binary files a/public/emoji/1f196.png and /dev/null differ diff --git a/public/emoji/1f196.svg b/public/emoji/1f196.svg index fe38c95a4..50bf80034 100644 --- a/public/emoji/1f196.svg +++ b/public/emoji/1f196.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f197.png b/public/emoji/1f197.png deleted file mode 100644 index d0d775532..000000000 Binary files a/public/emoji/1f197.png and /dev/null differ diff --git a/public/emoji/1f197.svg b/public/emoji/1f197.svg index c45e4e1c9..9f43d676f 100644 --- a/public/emoji/1f197.svg +++ b/public/emoji/1f197.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f198.png b/public/emoji/1f198.png deleted file mode 100644 index d7d8c9953..000000000 Binary files a/public/emoji/1f198.png and /dev/null differ diff --git a/public/emoji/1f198.svg b/public/emoji/1f198.svg index fef773a90..36cf60117 100644 --- a/public/emoji/1f198.svg +++ b/public/emoji/1f198.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f199.png b/public/emoji/1f199.png deleted file mode 100644 index 0d42142ba..000000000 Binary files a/public/emoji/1f199.png and /dev/null differ diff --git a/public/emoji/1f199.svg b/public/emoji/1f199.svg index f5bc638ac..1f2d8e60a 100644 --- a/public/emoji/1f199.svg +++ b/public/emoji/1f199.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f19a.png b/public/emoji/1f19a.png deleted file mode 100644 index e1180f4a4..000000000 Binary files a/public/emoji/1f19a.png and /dev/null differ diff --git a/public/emoji/1f19a.svg b/public/emoji/1f19a.svg index 6d2545d60..af8f685dc 100644 --- a/public/emoji/1f19a.svg +++ b/public/emoji/1f19a.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1e8.png b/public/emoji/1f1e6-1f1e8.png deleted file mode 100644 index 286239920..000000000 Binary files a/public/emoji/1f1e6-1f1e8.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1e8.svg b/public/emoji/1f1e6-1f1e8.svg index 23d700999..588d4e8bf 100644 --- a/public/emoji/1f1e6-1f1e8.svg +++ b/public/emoji/1f1e6-1f1e8.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1e9.png b/public/emoji/1f1e6-1f1e9.png deleted file mode 100644 index 20f4b14e8..000000000 Binary files a/public/emoji/1f1e6-1f1e9.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1e9.svg b/public/emoji/1f1e6-1f1e9.svg index 0340b9d6d..e0e8608b8 100644 --- a/public/emoji/1f1e6-1f1e9.svg +++ b/public/emoji/1f1e6-1f1e9.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1ea.png b/public/emoji/1f1e6-1f1ea.png deleted file mode 100644 index d16ffe4b8..000000000 Binary files a/public/emoji/1f1e6-1f1ea.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1ea.svg b/public/emoji/1f1e6-1f1ea.svg index 6610e894c..571251753 100644 --- a/public/emoji/1f1e6-1f1ea.svg +++ b/public/emoji/1f1e6-1f1ea.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1eb.png b/public/emoji/1f1e6-1f1eb.png deleted file mode 100644 index a51533b55..000000000 Binary files a/public/emoji/1f1e6-1f1eb.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1eb.svg b/public/emoji/1f1e6-1f1eb.svg index e1998a6b2..9e880f92e 100644 --- a/public/emoji/1f1e6-1f1eb.svg +++ b/public/emoji/1f1e6-1f1eb.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1ec.png b/public/emoji/1f1e6-1f1ec.png deleted file mode 100644 index 07f2ce397..000000000 Binary files a/public/emoji/1f1e6-1f1ec.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1ec.svg b/public/emoji/1f1e6-1f1ec.svg index 0bcf4ebdc..10d53620b 100644 --- a/public/emoji/1f1e6-1f1ec.svg +++ b/public/emoji/1f1e6-1f1ec.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1ee.png b/public/emoji/1f1e6-1f1ee.png deleted file mode 100644 index 500b5ab09..000000000 Binary files a/public/emoji/1f1e6-1f1ee.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1ee.svg b/public/emoji/1f1e6-1f1ee.svg index c117d6087..cf17878e0 100644 --- a/public/emoji/1f1e6-1f1ee.svg +++ b/public/emoji/1f1e6-1f1ee.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1f1.png b/public/emoji/1f1e6-1f1f1.png deleted file mode 100644 index 03a20132c..000000000 Binary files a/public/emoji/1f1e6-1f1f1.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1f1.svg b/public/emoji/1f1e6-1f1f1.svg index 62c373cb0..5de35c369 100644 --- a/public/emoji/1f1e6-1f1f1.svg +++ b/public/emoji/1f1e6-1f1f1.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1f2.png b/public/emoji/1f1e6-1f1f2.png deleted file mode 100644 index 2ad60a273..000000000 Binary files a/public/emoji/1f1e6-1f1f2.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1f2.svg b/public/emoji/1f1e6-1f1f2.svg index 619935b02..0b87990cc 100644 --- a/public/emoji/1f1e6-1f1f2.svg +++ b/public/emoji/1f1e6-1f1f2.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1f4.png b/public/emoji/1f1e6-1f1f4.png deleted file mode 100644 index cb46c31f8..000000000 Binary files a/public/emoji/1f1e6-1f1f4.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1f4.svg b/public/emoji/1f1e6-1f1f4.svg index 7440d2d23..32692e12d 100644 --- a/public/emoji/1f1e6-1f1f4.svg +++ b/public/emoji/1f1e6-1f1f4.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1f6.png b/public/emoji/1f1e6-1f1f6.png deleted file mode 100644 index b272021d3..000000000 Binary files a/public/emoji/1f1e6-1f1f6.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1f6.svg b/public/emoji/1f1e6-1f1f6.svg index 476eac881..8f8250990 100644 --- a/public/emoji/1f1e6-1f1f6.svg +++ b/public/emoji/1f1e6-1f1f6.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1f7.png b/public/emoji/1f1e6-1f1f7.png deleted file mode 100644 index 73136caf3..000000000 Binary files a/public/emoji/1f1e6-1f1f7.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1f7.svg b/public/emoji/1f1e6-1f1f7.svg index 040ef76bb..983c6df9d 100644 --- a/public/emoji/1f1e6-1f1f7.svg +++ b/public/emoji/1f1e6-1f1f7.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1f8.png b/public/emoji/1f1e6-1f1f8.png deleted file mode 100644 index 3db45a0d9..000000000 Binary files a/public/emoji/1f1e6-1f1f8.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1f8.svg b/public/emoji/1f1e6-1f1f8.svg index 158d0c6f4..d4334d65c 100644 --- a/public/emoji/1f1e6-1f1f8.svg +++ b/public/emoji/1f1e6-1f1f8.svg @@ -1,2 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1f9.png b/public/emoji/1f1e6-1f1f9.png deleted file mode 100644 index c43769dcb..000000000 Binary files a/public/emoji/1f1e6-1f1f9.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1f9.svg b/public/emoji/1f1e6-1f1f9.svg index 407ac4035..ea3c039e5 100644 --- a/public/emoji/1f1e6-1f1f9.svg +++ b/public/emoji/1f1e6-1f1f9.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1fa.png b/public/emoji/1f1e6-1f1fa.png deleted file mode 100644 index 7794309c7..000000000 Binary files a/public/emoji/1f1e6-1f1fa.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1fa.svg b/public/emoji/1f1e6-1f1fa.svg index 48ab1dc09..986705ff9 100644 --- a/public/emoji/1f1e6-1f1fa.svg +++ b/public/emoji/1f1e6-1f1fa.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1fc.png b/public/emoji/1f1e6-1f1fc.png deleted file mode 100644 index 02c840d12..000000000 Binary files a/public/emoji/1f1e6-1f1fc.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1fc.svg b/public/emoji/1f1e6-1f1fc.svg index ab3f2d057..3ec298915 100644 --- a/public/emoji/1f1e6-1f1fc.svg +++ b/public/emoji/1f1e6-1f1fc.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1fd.png b/public/emoji/1f1e6-1f1fd.png deleted file mode 100644 index fc5466174..000000000 Binary files a/public/emoji/1f1e6-1f1fd.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1fd.svg b/public/emoji/1f1e6-1f1fd.svg index 81ab22551..939ea37c7 100644 --- a/public/emoji/1f1e6-1f1fd.svg +++ b/public/emoji/1f1e6-1f1fd.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6-1f1ff.png b/public/emoji/1f1e6-1f1ff.png deleted file mode 100644 index 89d3d15fd..000000000 Binary files a/public/emoji/1f1e6-1f1ff.png and /dev/null differ diff --git a/public/emoji/1f1e6-1f1ff.svg b/public/emoji/1f1e6-1f1ff.svg index 4ac419fbc..d05dffbc2 100644 --- a/public/emoji/1f1e6-1f1ff.svg +++ b/public/emoji/1f1e6-1f1ff.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e6.png b/public/emoji/1f1e6.png deleted file mode 100644 index 2b6c43956..000000000 Binary files a/public/emoji/1f1e6.png and /dev/null differ diff --git a/public/emoji/1f1e6.svg b/public/emoji/1f1e6.svg index 5670a81a0..845aea33b 100644 --- a/public/emoji/1f1e6.svg +++ b/public/emoji/1f1e6.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1e6.png b/public/emoji/1f1e7-1f1e6.png deleted file mode 100644 index 25fe407e1..000000000 Binary files a/public/emoji/1f1e7-1f1e6.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1e6.svg b/public/emoji/1f1e7-1f1e6.svg index 9c14bd4b6..e30dd2cb3 100644 --- a/public/emoji/1f1e7-1f1e6.svg +++ b/public/emoji/1f1e7-1f1e6.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1e7.png b/public/emoji/1f1e7-1f1e7.png deleted file mode 100644 index bccd8c5c9..000000000 Binary files a/public/emoji/1f1e7-1f1e7.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1e7.svg b/public/emoji/1f1e7-1f1e7.svg index 6bf8ae2cd..2eeb18255 100644 --- a/public/emoji/1f1e7-1f1e7.svg +++ b/public/emoji/1f1e7-1f1e7.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1e9.png b/public/emoji/1f1e7-1f1e9.png deleted file mode 100644 index b0597a314..000000000 Binary files a/public/emoji/1f1e7-1f1e9.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1e9.svg b/public/emoji/1f1e7-1f1e9.svg index e2713372a..5d16a3f3a 100644 --- a/public/emoji/1f1e7-1f1e9.svg +++ b/public/emoji/1f1e7-1f1e9.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1ea.png b/public/emoji/1f1e7-1f1ea.png deleted file mode 100644 index 551f086e3..000000000 Binary files a/public/emoji/1f1e7-1f1ea.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1ea.svg b/public/emoji/1f1e7-1f1ea.svg index 085c2cdb6..18a9d1bb1 100644 --- a/public/emoji/1f1e7-1f1ea.svg +++ b/public/emoji/1f1e7-1f1ea.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1eb.png b/public/emoji/1f1e7-1f1eb.png deleted file mode 100644 index 444d4829f..000000000 Binary files a/public/emoji/1f1e7-1f1eb.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1eb.svg b/public/emoji/1f1e7-1f1eb.svg index eeb129a77..769b898c9 100644 --- a/public/emoji/1f1e7-1f1eb.svg +++ b/public/emoji/1f1e7-1f1eb.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1ec.png b/public/emoji/1f1e7-1f1ec.png deleted file mode 100644 index 821eee5e1..000000000 Binary files a/public/emoji/1f1e7-1f1ec.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1ec.svg b/public/emoji/1f1e7-1f1ec.svg index f6a6723c0..4caa980b1 100644 --- a/public/emoji/1f1e7-1f1ec.svg +++ b/public/emoji/1f1e7-1f1ec.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1ed.png b/public/emoji/1f1e7-1f1ed.png deleted file mode 100644 index f33724249..000000000 Binary files a/public/emoji/1f1e7-1f1ed.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1ed.svg b/public/emoji/1f1e7-1f1ed.svg index f708818b1..8ee8c0818 100644 --- a/public/emoji/1f1e7-1f1ed.svg +++ b/public/emoji/1f1e7-1f1ed.svg @@ -1,2 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1ee.png b/public/emoji/1f1e7-1f1ee.png deleted file mode 100644 index ea20ac932..000000000 Binary files a/public/emoji/1f1e7-1f1ee.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1ee.svg b/public/emoji/1f1e7-1f1ee.svg index 7ea0077c0..4b0122f05 100644 --- a/public/emoji/1f1e7-1f1ee.svg +++ b/public/emoji/1f1e7-1f1ee.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1ef.png b/public/emoji/1f1e7-1f1ef.png deleted file mode 100644 index 7cca4f804..000000000 Binary files a/public/emoji/1f1e7-1f1ef.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1ef.svg b/public/emoji/1f1e7-1f1ef.svg index 0e99fb00d..d3d3435ff 100644 --- a/public/emoji/1f1e7-1f1ef.svg +++ b/public/emoji/1f1e7-1f1ef.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1f1.png b/public/emoji/1f1e7-1f1f1.png deleted file mode 100644 index 1082e7899..000000000 Binary files a/public/emoji/1f1e7-1f1f1.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1f1.svg b/public/emoji/1f1e7-1f1f1.svg index ad59884c6..77b2b07bc 100644 --- a/public/emoji/1f1e7-1f1f1.svg +++ b/public/emoji/1f1e7-1f1f1.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1f2.png b/public/emoji/1f1e7-1f1f2.png deleted file mode 100644 index ab8cafdac..000000000 Binary files a/public/emoji/1f1e7-1f1f2.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1f2.svg b/public/emoji/1f1e7-1f1f2.svg index ba96edd0e..723f28577 100644 --- a/public/emoji/1f1e7-1f1f2.svg +++ b/public/emoji/1f1e7-1f1f2.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1f3.png b/public/emoji/1f1e7-1f1f3.png deleted file mode 100644 index caa9329a8..000000000 Binary files a/public/emoji/1f1e7-1f1f3.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1f3.svg b/public/emoji/1f1e7-1f1f3.svg index 3271af93c..669fd4045 100644 --- a/public/emoji/1f1e7-1f1f3.svg +++ b/public/emoji/1f1e7-1f1f3.svg @@ -1,2 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1f4.png b/public/emoji/1f1e7-1f1f4.png deleted file mode 100644 index 98af62b3d..000000000 Binary files a/public/emoji/1f1e7-1f1f4.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1f4.svg b/public/emoji/1f1e7-1f1f4.svg index 49a94e9e9..f702e40b6 100644 --- a/public/emoji/1f1e7-1f1f4.svg +++ b/public/emoji/1f1e7-1f1f4.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1f6.png b/public/emoji/1f1e7-1f1f6.png deleted file mode 100644 index cb978ef9d..000000000 Binary files a/public/emoji/1f1e7-1f1f6.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1f6.svg b/public/emoji/1f1e7-1f1f6.svg index a835cb570..25fad1393 100644 --- a/public/emoji/1f1e7-1f1f6.svg +++ b/public/emoji/1f1e7-1f1f6.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1f7.png b/public/emoji/1f1e7-1f1f7.png deleted file mode 100644 index b139366a4..000000000 Binary files a/public/emoji/1f1e7-1f1f7.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1f7.svg b/public/emoji/1f1e7-1f1f7.svg index 3191070a2..f9b120d64 100644 --- a/public/emoji/1f1e7-1f1f7.svg +++ b/public/emoji/1f1e7-1f1f7.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1f8.png b/public/emoji/1f1e7-1f1f8.png deleted file mode 100644 index d36bcd2fb..000000000 Binary files a/public/emoji/1f1e7-1f1f8.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1f8.svg b/public/emoji/1f1e7-1f1f8.svg index a353225a2..48f72d7f8 100644 --- a/public/emoji/1f1e7-1f1f8.svg +++ b/public/emoji/1f1e7-1f1f8.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1f9.png b/public/emoji/1f1e7-1f1f9.png deleted file mode 100644 index ed57aa036..000000000 Binary files a/public/emoji/1f1e7-1f1f9.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1f9.svg b/public/emoji/1f1e7-1f1f9.svg index fb5784cc7..ac8ba9d37 100644 --- a/public/emoji/1f1e7-1f1f9.svg +++ b/public/emoji/1f1e7-1f1f9.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1fb.png b/public/emoji/1f1e7-1f1fb.png deleted file mode 100644 index 5884e6482..000000000 Binary files a/public/emoji/1f1e7-1f1fb.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1fb.svg b/public/emoji/1f1e7-1f1fb.svg index e9f5672c6..75ed1e94a 100644 --- a/public/emoji/1f1e7-1f1fb.svg +++ b/public/emoji/1f1e7-1f1fb.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1fc.png b/public/emoji/1f1e7-1f1fc.png deleted file mode 100644 index cb12f3473..000000000 Binary files a/public/emoji/1f1e7-1f1fc.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1fc.svg b/public/emoji/1f1e7-1f1fc.svg index 05f152a37..f29ad45ce 100644 --- a/public/emoji/1f1e7-1f1fc.svg +++ b/public/emoji/1f1e7-1f1fc.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1fe.png b/public/emoji/1f1e7-1f1fe.png deleted file mode 100644 index 859c05beb..000000000 Binary files a/public/emoji/1f1e7-1f1fe.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1fe.svg b/public/emoji/1f1e7-1f1fe.svg index f27068ab6..b7ba015c3 100644 --- a/public/emoji/1f1e7-1f1fe.svg +++ b/public/emoji/1f1e7-1f1fe.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7-1f1ff.png b/public/emoji/1f1e7-1f1ff.png deleted file mode 100644 index 34761cd03..000000000 Binary files a/public/emoji/1f1e7-1f1ff.png and /dev/null differ diff --git a/public/emoji/1f1e7-1f1ff.svg b/public/emoji/1f1e7-1f1ff.svg index a2e5cffc0..36f0d2e6c 100644 --- a/public/emoji/1f1e7-1f1ff.svg +++ b/public/emoji/1f1e7-1f1ff.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e7.png b/public/emoji/1f1e7.png deleted file mode 100644 index 8f69fa973..000000000 Binary files a/public/emoji/1f1e7.png and /dev/null differ diff --git a/public/emoji/1f1e7.svg b/public/emoji/1f1e7.svg index 7590fdd8e..70bee8133 100644 --- a/public/emoji/1f1e7.svg +++ b/public/emoji/1f1e7.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1e6.png b/public/emoji/1f1e8-1f1e6.png deleted file mode 100644 index 7c5b390e8..000000000 Binary files a/public/emoji/1f1e8-1f1e6.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1e6.svg b/public/emoji/1f1e8-1f1e6.svg index 886c66e27..555d21808 100644 --- a/public/emoji/1f1e8-1f1e6.svg +++ b/public/emoji/1f1e8-1f1e6.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1e8.png b/public/emoji/1f1e8-1f1e8.png deleted file mode 100644 index b6555a23d..000000000 Binary files a/public/emoji/1f1e8-1f1e8.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1e8.svg b/public/emoji/1f1e8-1f1e8.svg index 8d002807b..a8d74a752 100644 --- a/public/emoji/1f1e8-1f1e8.svg +++ b/public/emoji/1f1e8-1f1e8.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1e9.png b/public/emoji/1f1e8-1f1e9.png deleted file mode 100644 index fa9200977..000000000 Binary files a/public/emoji/1f1e8-1f1e9.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1e9.svg b/public/emoji/1f1e8-1f1e9.svg index c635b47e7..1495355e4 100644 --- a/public/emoji/1f1e8-1f1e9.svg +++ b/public/emoji/1f1e8-1f1e9.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1eb.png b/public/emoji/1f1e8-1f1eb.png deleted file mode 100644 index b969ae29e..000000000 Binary files a/public/emoji/1f1e8-1f1eb.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1eb.svg b/public/emoji/1f1e8-1f1eb.svg index 919121cd3..d9fcde0a9 100644 --- a/public/emoji/1f1e8-1f1eb.svg +++ b/public/emoji/1f1e8-1f1eb.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1ec.png b/public/emoji/1f1e8-1f1ec.png deleted file mode 100644 index 3a38a40a9..000000000 Binary files a/public/emoji/1f1e8-1f1ec.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1ec.svg b/public/emoji/1f1e8-1f1ec.svg index d511520b9..c9496fe12 100644 --- a/public/emoji/1f1e8-1f1ec.svg +++ b/public/emoji/1f1e8-1f1ec.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1ed.png b/public/emoji/1f1e8-1f1ed.png deleted file mode 100644 index 5ff86b8a3..000000000 Binary files a/public/emoji/1f1e8-1f1ed.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1ed.svg b/public/emoji/1f1e8-1f1ed.svg index 507afb370..46e47864f 100644 --- a/public/emoji/1f1e8-1f1ed.svg +++ b/public/emoji/1f1e8-1f1ed.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1ee.png b/public/emoji/1f1e8-1f1ee.png deleted file mode 100644 index e3b4d15c7..000000000 Binary files a/public/emoji/1f1e8-1f1ee.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1ee.svg b/public/emoji/1f1e8-1f1ee.svg index 4ae397b28..47188a220 100644 --- a/public/emoji/1f1e8-1f1ee.svg +++ b/public/emoji/1f1e8-1f1ee.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1f0.png b/public/emoji/1f1e8-1f1f0.png deleted file mode 100644 index b6b53dbc1..000000000 Binary files a/public/emoji/1f1e8-1f1f0.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1f0.svg b/public/emoji/1f1e8-1f1f0.svg index 683223e29..bec3a0836 100644 --- a/public/emoji/1f1e8-1f1f0.svg +++ b/public/emoji/1f1e8-1f1f0.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1f1.png b/public/emoji/1f1e8-1f1f1.png deleted file mode 100644 index c9390da54..000000000 Binary files a/public/emoji/1f1e8-1f1f1.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1f1.svg b/public/emoji/1f1e8-1f1f1.svg index 51be06e67..6ebd46453 100644 --- a/public/emoji/1f1e8-1f1f1.svg +++ b/public/emoji/1f1e8-1f1f1.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1f2.png b/public/emoji/1f1e8-1f1f2.png deleted file mode 100644 index 2d3f6ec45..000000000 Binary files a/public/emoji/1f1e8-1f1f2.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1f2.svg b/public/emoji/1f1e8-1f1f2.svg index e86d029a4..e7651a513 100644 --- a/public/emoji/1f1e8-1f1f2.svg +++ b/public/emoji/1f1e8-1f1f2.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1f3.png b/public/emoji/1f1e8-1f1f3.png deleted file mode 100644 index 0a7f350a6..000000000 Binary files a/public/emoji/1f1e8-1f1f3.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1f3.svg b/public/emoji/1f1e8-1f1f3.svg index 9e5bd6650..646cea9d9 100644 --- a/public/emoji/1f1e8-1f1f3.svg +++ b/public/emoji/1f1e8-1f1f3.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1f4.png b/public/emoji/1f1e8-1f1f4.png deleted file mode 100644 index 7e0f5e0dc..000000000 Binary files a/public/emoji/1f1e8-1f1f4.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1f4.svg b/public/emoji/1f1e8-1f1f4.svg index 387be03c3..e9cb4f814 100644 --- a/public/emoji/1f1e8-1f1f4.svg +++ b/public/emoji/1f1e8-1f1f4.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1f5.png b/public/emoji/1f1e8-1f1f5.png deleted file mode 100644 index 70c761036..000000000 Binary files a/public/emoji/1f1e8-1f1f5.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1f5.svg b/public/emoji/1f1e8-1f1f5.svg index 16bfba0cf..359779e7f 100644 --- a/public/emoji/1f1e8-1f1f5.svg +++ b/public/emoji/1f1e8-1f1f5.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1f7.png b/public/emoji/1f1e8-1f1f7.png deleted file mode 100644 index a5fce1265..000000000 Binary files a/public/emoji/1f1e8-1f1f7.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1f7.svg b/public/emoji/1f1e8-1f1f7.svg index e8510bc05..18dabbc4e 100644 --- a/public/emoji/1f1e8-1f1f7.svg +++ b/public/emoji/1f1e8-1f1f7.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1fa.png b/public/emoji/1f1e8-1f1fa.png deleted file mode 100644 index 447328f7d..000000000 Binary files a/public/emoji/1f1e8-1f1fa.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1fa.svg b/public/emoji/1f1e8-1f1fa.svg index ae73709b6..d8c05766c 100644 --- a/public/emoji/1f1e8-1f1fa.svg +++ b/public/emoji/1f1e8-1f1fa.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1fb.png b/public/emoji/1f1e8-1f1fb.png deleted file mode 100644 index 43faf4d64..000000000 Binary files a/public/emoji/1f1e8-1f1fb.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1fb.svg b/public/emoji/1f1e8-1f1fb.svg index c3c11d621..d9055e7f3 100644 --- a/public/emoji/1f1e8-1f1fb.svg +++ b/public/emoji/1f1e8-1f1fb.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1fc.png b/public/emoji/1f1e8-1f1fc.png deleted file mode 100644 index eb39e8d00..000000000 Binary files a/public/emoji/1f1e8-1f1fc.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1fc.svg b/public/emoji/1f1e8-1f1fc.svg index cecfdbffd..e05eae77f 100644 --- a/public/emoji/1f1e8-1f1fc.svg +++ b/public/emoji/1f1e8-1f1fc.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1fd.png b/public/emoji/1f1e8-1f1fd.png deleted file mode 100644 index 09d21359f..000000000 Binary files a/public/emoji/1f1e8-1f1fd.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1fd.svg b/public/emoji/1f1e8-1f1fd.svg index 281154200..30857e46b 100644 --- a/public/emoji/1f1e8-1f1fd.svg +++ b/public/emoji/1f1e8-1f1fd.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1fe.png b/public/emoji/1f1e8-1f1fe.png deleted file mode 100644 index 154a7aa31..000000000 Binary files a/public/emoji/1f1e8-1f1fe.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1fe.svg b/public/emoji/1f1e8-1f1fe.svg index 4529030d1..fe7b2b05f 100644 --- a/public/emoji/1f1e8-1f1fe.svg +++ b/public/emoji/1f1e8-1f1fe.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8-1f1ff.png b/public/emoji/1f1e8-1f1ff.png deleted file mode 100644 index 9737ca223..000000000 Binary files a/public/emoji/1f1e8-1f1ff.png and /dev/null differ diff --git a/public/emoji/1f1e8-1f1ff.svg b/public/emoji/1f1e8-1f1ff.svg index 3226720be..3dd8a789c 100644 --- a/public/emoji/1f1e8-1f1ff.svg +++ b/public/emoji/1f1e8-1f1ff.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e8.png b/public/emoji/1f1e8.png deleted file mode 100644 index f94e668a2..000000000 Binary files a/public/emoji/1f1e8.png and /dev/null differ diff --git a/public/emoji/1f1e8.svg b/public/emoji/1f1e8.svg index 1aa1eabd4..c2a6d71f1 100644 --- a/public/emoji/1f1e8.svg +++ b/public/emoji/1f1e8.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e9-1f1ea.png b/public/emoji/1f1e9-1f1ea.png deleted file mode 100644 index 98ed76b3b..000000000 Binary files a/public/emoji/1f1e9-1f1ea.png and /dev/null differ diff --git a/public/emoji/1f1e9-1f1ea.svg b/public/emoji/1f1e9-1f1ea.svg index b2015a77a..ef390466f 100644 --- a/public/emoji/1f1e9-1f1ea.svg +++ b/public/emoji/1f1e9-1f1ea.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e9-1f1ec.png b/public/emoji/1f1e9-1f1ec.png deleted file mode 100644 index aae927d14..000000000 Binary files a/public/emoji/1f1e9-1f1ec.png and /dev/null differ diff --git a/public/emoji/1f1e9-1f1ec.svg b/public/emoji/1f1e9-1f1ec.svg index 04d9b4ee6..0266453dd 100644 --- a/public/emoji/1f1e9-1f1ec.svg +++ b/public/emoji/1f1e9-1f1ec.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e9-1f1ef.png b/public/emoji/1f1e9-1f1ef.png deleted file mode 100644 index 73c2a2acb..000000000 Binary files a/public/emoji/1f1e9-1f1ef.png and /dev/null differ diff --git a/public/emoji/1f1e9-1f1ef.svg b/public/emoji/1f1e9-1f1ef.svg index f4ae5eafa..a4daa6f94 100644 --- a/public/emoji/1f1e9-1f1ef.svg +++ b/public/emoji/1f1e9-1f1ef.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e9-1f1f0.png b/public/emoji/1f1e9-1f1f0.png deleted file mode 100644 index e5a60b062..000000000 Binary files a/public/emoji/1f1e9-1f1f0.png and /dev/null differ diff --git a/public/emoji/1f1e9-1f1f0.svg b/public/emoji/1f1e9-1f1f0.svg index fd2d704d0..ceda13d97 100644 --- a/public/emoji/1f1e9-1f1f0.svg +++ b/public/emoji/1f1e9-1f1f0.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e9-1f1f2.png b/public/emoji/1f1e9-1f1f2.png deleted file mode 100644 index 50f8a5398..000000000 Binary files a/public/emoji/1f1e9-1f1f2.png and /dev/null differ diff --git a/public/emoji/1f1e9-1f1f2.svg b/public/emoji/1f1e9-1f1f2.svg index 27fc817ba..66d850adc 100644 --- a/public/emoji/1f1e9-1f1f2.svg +++ b/public/emoji/1f1e9-1f1f2.svg @@ -1,2 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e9-1f1f4.png b/public/emoji/1f1e9-1f1f4.png deleted file mode 100644 index 037a45d7c..000000000 Binary files a/public/emoji/1f1e9-1f1f4.png and /dev/null differ diff --git a/public/emoji/1f1e9-1f1f4.svg b/public/emoji/1f1e9-1f1f4.svg index 133278cbb..48967b1c9 100644 --- a/public/emoji/1f1e9-1f1f4.svg +++ b/public/emoji/1f1e9-1f1f4.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e9-1f1ff.png b/public/emoji/1f1e9-1f1ff.png deleted file mode 100644 index 24945b10f..000000000 Binary files a/public/emoji/1f1e9-1f1ff.png and /dev/null differ diff --git a/public/emoji/1f1e9-1f1ff.svg b/public/emoji/1f1e9-1f1ff.svg index 081674e2a..243c153f3 100644 --- a/public/emoji/1f1e9-1f1ff.svg +++ b/public/emoji/1f1e9-1f1ff.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1e9.png b/public/emoji/1f1e9.png deleted file mode 100644 index 4a36666e5..000000000 Binary files a/public/emoji/1f1e9.png and /dev/null differ diff --git a/public/emoji/1f1e9.svg b/public/emoji/1f1e9.svg index e7085af16..b96b27d1f 100644 --- a/public/emoji/1f1e9.svg +++ b/public/emoji/1f1e9.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ea-1f1e6.png b/public/emoji/1f1ea-1f1e6.png deleted file mode 100644 index 356ff3478..000000000 Binary files a/public/emoji/1f1ea-1f1e6.png and /dev/null differ diff --git a/public/emoji/1f1ea-1f1e6.svg b/public/emoji/1f1ea-1f1e6.svg index 0a39cf63e..97f8ad011 100644 --- a/public/emoji/1f1ea-1f1e6.svg +++ b/public/emoji/1f1ea-1f1e6.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ea-1f1e8.png b/public/emoji/1f1ea-1f1e8.png deleted file mode 100644 index 138145946..000000000 Binary files a/public/emoji/1f1ea-1f1e8.png and /dev/null differ diff --git a/public/emoji/1f1ea-1f1e8.svg b/public/emoji/1f1ea-1f1e8.svg index 2d7bf4d1b..d8af4a192 100644 --- a/public/emoji/1f1ea-1f1e8.svg +++ b/public/emoji/1f1ea-1f1e8.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ea-1f1ea.png b/public/emoji/1f1ea-1f1ea.png deleted file mode 100644 index 84f317e77..000000000 Binary files a/public/emoji/1f1ea-1f1ea.png and /dev/null differ diff --git a/public/emoji/1f1ea-1f1ea.svg b/public/emoji/1f1ea-1f1ea.svg index 0f3f6d8ed..e8359c64b 100644 --- a/public/emoji/1f1ea-1f1ea.svg +++ b/public/emoji/1f1ea-1f1ea.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ea-1f1ec.png b/public/emoji/1f1ea-1f1ec.png deleted file mode 100644 index 57786064a..000000000 Binary files a/public/emoji/1f1ea-1f1ec.png and /dev/null differ diff --git a/public/emoji/1f1ea-1f1ec.svg b/public/emoji/1f1ea-1f1ec.svg index ee47f26c9..9018d1c60 100644 --- a/public/emoji/1f1ea-1f1ec.svg +++ b/public/emoji/1f1ea-1f1ec.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ea-1f1ed.png b/public/emoji/1f1ea-1f1ed.png deleted file mode 100644 index 4d7a76687..000000000 Binary files a/public/emoji/1f1ea-1f1ed.png and /dev/null differ diff --git a/public/emoji/1f1ea-1f1ed.svg b/public/emoji/1f1ea-1f1ed.svg index 63f1fe8ac..a4bbad309 100644 --- a/public/emoji/1f1ea-1f1ed.svg +++ b/public/emoji/1f1ea-1f1ed.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ea-1f1f7.png b/public/emoji/1f1ea-1f1f7.png deleted file mode 100644 index 0c3c724c1..000000000 Binary files a/public/emoji/1f1ea-1f1f7.png and /dev/null differ diff --git a/public/emoji/1f1ea-1f1f7.svg b/public/emoji/1f1ea-1f1f7.svg index 616efd6cc..067278b02 100644 --- a/public/emoji/1f1ea-1f1f7.svg +++ b/public/emoji/1f1ea-1f1f7.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ea-1f1f8.png b/public/emoji/1f1ea-1f1f8.png deleted file mode 100644 index 3e73597a2..000000000 Binary files a/public/emoji/1f1ea-1f1f8.png and /dev/null differ diff --git a/public/emoji/1f1ea-1f1f8.svg b/public/emoji/1f1ea-1f1f8.svg index 891a2597b..97f8ad011 100644 --- a/public/emoji/1f1ea-1f1f8.svg +++ b/public/emoji/1f1ea-1f1f8.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ea-1f1f9.png b/public/emoji/1f1ea-1f1f9.png deleted file mode 100644 index 9560a134c..000000000 Binary files a/public/emoji/1f1ea-1f1f9.png and /dev/null differ diff --git a/public/emoji/1f1ea-1f1f9.svg b/public/emoji/1f1ea-1f1f9.svg index ab724478e..7e7a5194d 100644 --- a/public/emoji/1f1ea-1f1f9.svg +++ b/public/emoji/1f1ea-1f1f9.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ea-1f1fa.png b/public/emoji/1f1ea-1f1fa.png deleted file mode 100644 index 0b456cf33..000000000 Binary files a/public/emoji/1f1ea-1f1fa.png and /dev/null differ diff --git a/public/emoji/1f1ea-1f1fa.svg b/public/emoji/1f1ea-1f1fa.svg index 40416b4ba..76f6485a8 100644 --- a/public/emoji/1f1ea-1f1fa.svg +++ b/public/emoji/1f1ea-1f1fa.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ea.png b/public/emoji/1f1ea.png deleted file mode 100644 index 66f7e8d8c..000000000 Binary files a/public/emoji/1f1ea.png and /dev/null differ diff --git a/public/emoji/1f1ea.svg b/public/emoji/1f1ea.svg index 6727438c4..d1521bb00 100644 --- a/public/emoji/1f1ea.svg +++ b/public/emoji/1f1ea.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1eb-1f1ee.png b/public/emoji/1f1eb-1f1ee.png deleted file mode 100644 index ebcf58abf..000000000 Binary files a/public/emoji/1f1eb-1f1ee.png and /dev/null differ diff --git a/public/emoji/1f1eb-1f1ee.svg b/public/emoji/1f1eb-1f1ee.svg index 0894ffc58..ce60e2d95 100644 --- a/public/emoji/1f1eb-1f1ee.svg +++ b/public/emoji/1f1eb-1f1ee.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1eb-1f1ef.png b/public/emoji/1f1eb-1f1ef.png deleted file mode 100644 index 9cc8c37fe..000000000 Binary files a/public/emoji/1f1eb-1f1ef.png and /dev/null differ diff --git a/public/emoji/1f1eb-1f1ef.svg b/public/emoji/1f1eb-1f1ef.svg index 0bbbeae0f..198e69ed6 100644 --- a/public/emoji/1f1eb-1f1ef.svg +++ b/public/emoji/1f1eb-1f1ef.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1eb-1f1f0.png b/public/emoji/1f1eb-1f1f0.png deleted file mode 100644 index 61372fd25..000000000 Binary files a/public/emoji/1f1eb-1f1f0.png and /dev/null differ diff --git a/public/emoji/1f1eb-1f1f0.svg b/public/emoji/1f1eb-1f1f0.svg index 29f0c8548..e2c5a4917 100644 --- a/public/emoji/1f1eb-1f1f0.svg +++ b/public/emoji/1f1eb-1f1f0.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1eb-1f1f2.png b/public/emoji/1f1eb-1f1f2.png deleted file mode 100644 index 0889825c8..000000000 Binary files a/public/emoji/1f1eb-1f1f2.png and /dev/null differ diff --git a/public/emoji/1f1eb-1f1f2.svg b/public/emoji/1f1eb-1f1f2.svg index ca329d00a..01e5dd223 100644 --- a/public/emoji/1f1eb-1f1f2.svg +++ b/public/emoji/1f1eb-1f1f2.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1eb-1f1f4.png b/public/emoji/1f1eb-1f1f4.png deleted file mode 100644 index 9a4431b08..000000000 Binary files a/public/emoji/1f1eb-1f1f4.png and /dev/null differ diff --git a/public/emoji/1f1eb-1f1f4.svg b/public/emoji/1f1eb-1f1f4.svg index d5b522ebe..c1fd7e977 100644 --- a/public/emoji/1f1eb-1f1f4.svg +++ b/public/emoji/1f1eb-1f1f4.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1eb-1f1f7.png b/public/emoji/1f1eb-1f1f7.png deleted file mode 100644 index 62ca19c3f..000000000 Binary files a/public/emoji/1f1eb-1f1f7.png and /dev/null differ diff --git a/public/emoji/1f1eb-1f1f7.svg b/public/emoji/1f1eb-1f1f7.svg index 7f9d0ab32..359779e7f 100644 --- a/public/emoji/1f1eb-1f1f7.svg +++ b/public/emoji/1f1eb-1f1f7.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1eb.png b/public/emoji/1f1eb.png deleted file mode 100644 index 913b230fd..000000000 Binary files a/public/emoji/1f1eb.png and /dev/null differ diff --git a/public/emoji/1f1eb.svg b/public/emoji/1f1eb.svg index 2d54ed238..c5907a4a4 100644 --- a/public/emoji/1f1eb.svg +++ b/public/emoji/1f1eb.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1e6.png b/public/emoji/1f1ec-1f1e6.png deleted file mode 100644 index 2e68e527a..000000000 Binary files a/public/emoji/1f1ec-1f1e6.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1e6.svg b/public/emoji/1f1ec-1f1e6.svg index f30f1e044..809addb47 100644 --- a/public/emoji/1f1ec-1f1e6.svg +++ b/public/emoji/1f1ec-1f1e6.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1e7.png b/public/emoji/1f1ec-1f1e7.png deleted file mode 100644 index 3ed10f623..000000000 Binary files a/public/emoji/1f1ec-1f1e7.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1e7.svg b/public/emoji/1f1ec-1f1e7.svg index f745d658d..9628d4f2b 100644 --- a/public/emoji/1f1ec-1f1e7.svg +++ b/public/emoji/1f1ec-1f1e7.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1e9.png b/public/emoji/1f1ec-1f1e9.png deleted file mode 100644 index 527aad338..000000000 Binary files a/public/emoji/1f1ec-1f1e9.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1e9.svg b/public/emoji/1f1ec-1f1e9.svg index c33b39dfc..33a1f9b84 100644 --- a/public/emoji/1f1ec-1f1e9.svg +++ b/public/emoji/1f1ec-1f1e9.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1ea.png b/public/emoji/1f1ec-1f1ea.png deleted file mode 100644 index a75d14248..000000000 Binary files a/public/emoji/1f1ec-1f1ea.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1ea.svg b/public/emoji/1f1ec-1f1ea.svg index 044d07dca..e1dc358f4 100644 --- a/public/emoji/1f1ec-1f1ea.svg +++ b/public/emoji/1f1ec-1f1ea.svg @@ -1,2 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1eb.png b/public/emoji/1f1ec-1f1eb.png deleted file mode 100644 index 0cf96f327..000000000 Binary files a/public/emoji/1f1ec-1f1eb.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1eb.svg b/public/emoji/1f1ec-1f1eb.svg index 328baf263..4aef79702 100644 --- a/public/emoji/1f1ec-1f1eb.svg +++ b/public/emoji/1f1ec-1f1eb.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1ec.png b/public/emoji/1f1ec-1f1ec.png deleted file mode 100644 index 970002c7f..000000000 Binary files a/public/emoji/1f1ec-1f1ec.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1ec.svg b/public/emoji/1f1ec-1f1ec.svg index 3e4098e42..8bd725600 100644 --- a/public/emoji/1f1ec-1f1ec.svg +++ b/public/emoji/1f1ec-1f1ec.svg @@ -1,2 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1ed.png b/public/emoji/1f1ec-1f1ed.png deleted file mode 100644 index f31b5eb7b..000000000 Binary files a/public/emoji/1f1ec-1f1ed.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1ed.svg b/public/emoji/1f1ec-1f1ed.svg index f3558ad05..ea91d2508 100644 --- a/public/emoji/1f1ec-1f1ed.svg +++ b/public/emoji/1f1ec-1f1ed.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1ee.png b/public/emoji/1f1ec-1f1ee.png deleted file mode 100644 index e554a2a1d..000000000 Binary files a/public/emoji/1f1ec-1f1ee.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1ee.svg b/public/emoji/1f1ec-1f1ee.svg index c980311a0..77ac93289 100644 --- a/public/emoji/1f1ec-1f1ee.svg +++ b/public/emoji/1f1ec-1f1ee.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1f1.png b/public/emoji/1f1ec-1f1f1.png deleted file mode 100644 index 2e795dd4e..000000000 Binary files a/public/emoji/1f1ec-1f1f1.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1f1.svg b/public/emoji/1f1ec-1f1f1.svg index 484b80c08..aa1713855 100644 --- a/public/emoji/1f1ec-1f1f1.svg +++ b/public/emoji/1f1ec-1f1f1.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1f2.png b/public/emoji/1f1ec-1f1f2.png deleted file mode 100644 index bb69c0975..000000000 Binary files a/public/emoji/1f1ec-1f1f2.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1f2.svg b/public/emoji/1f1ec-1f1f2.svg index 5fa53d532..38e8738de 100644 --- a/public/emoji/1f1ec-1f1f2.svg +++ b/public/emoji/1f1ec-1f1f2.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1f3.png b/public/emoji/1f1ec-1f1f3.png deleted file mode 100644 index 1981f61db..000000000 Binary files a/public/emoji/1f1ec-1f1f3.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1f3.svg b/public/emoji/1f1ec-1f1f3.svg index ea98260a4..94758e537 100644 --- a/public/emoji/1f1ec-1f1f3.svg +++ b/public/emoji/1f1ec-1f1f3.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1f5.png b/public/emoji/1f1ec-1f1f5.png deleted file mode 100644 index 10e42e672..000000000 Binary files a/public/emoji/1f1ec-1f1f5.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1f5.svg b/public/emoji/1f1ec-1f1f5.svg index f044d48d2..5cba06978 100644 --- a/public/emoji/1f1ec-1f1f5.svg +++ b/public/emoji/1f1ec-1f1f5.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1f6.png b/public/emoji/1f1ec-1f1f6.png deleted file mode 100644 index 11475e61e..000000000 Binary files a/public/emoji/1f1ec-1f1f6.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1f6.svg b/public/emoji/1f1ec-1f1f6.svg index 6c4a1581a..0b7c18236 100644 --- a/public/emoji/1f1ec-1f1f6.svg +++ b/public/emoji/1f1ec-1f1f6.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1f7.png b/public/emoji/1f1ec-1f1f7.png deleted file mode 100644 index 0f6bb1b6b..000000000 Binary files a/public/emoji/1f1ec-1f1f7.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1f7.svg b/public/emoji/1f1ec-1f1f7.svg index 75c9bc6a4..686ca152e 100644 --- a/public/emoji/1f1ec-1f1f7.svg +++ b/public/emoji/1f1ec-1f1f7.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1f8.png b/public/emoji/1f1ec-1f1f8.png deleted file mode 100644 index 6fc927804..000000000 Binary files a/public/emoji/1f1ec-1f1f8.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1f8.svg b/public/emoji/1f1ec-1f1f8.svg index 68772ee19..f51cd5dfc 100644 --- a/public/emoji/1f1ec-1f1f8.svg +++ b/public/emoji/1f1ec-1f1f8.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1f9.png b/public/emoji/1f1ec-1f1f9.png deleted file mode 100644 index 7213d4139..000000000 Binary files a/public/emoji/1f1ec-1f1f9.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1f9.svg b/public/emoji/1f1ec-1f1f9.svg index bc4f58471..3e86ce520 100644 --- a/public/emoji/1f1ec-1f1f9.svg +++ b/public/emoji/1f1ec-1f1f9.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1fa.png b/public/emoji/1f1ec-1f1fa.png deleted file mode 100644 index 4027549ca..000000000 Binary files a/public/emoji/1f1ec-1f1fa.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1fa.svg b/public/emoji/1f1ec-1f1fa.svg index 6cdd6bf36..4718442ac 100644 --- a/public/emoji/1f1ec-1f1fa.svg +++ b/public/emoji/1f1ec-1f1fa.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1fc.png b/public/emoji/1f1ec-1f1fc.png deleted file mode 100644 index 6357f6225..000000000 Binary files a/public/emoji/1f1ec-1f1fc.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1fc.svg b/public/emoji/1f1ec-1f1fc.svg index 30ed7effb..9c121c564 100644 --- a/public/emoji/1f1ec-1f1fc.svg +++ b/public/emoji/1f1ec-1f1fc.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec-1f1fe.png b/public/emoji/1f1ec-1f1fe.png deleted file mode 100644 index 746e2fb7e..000000000 Binary files a/public/emoji/1f1ec-1f1fe.png and /dev/null differ diff --git a/public/emoji/1f1ec-1f1fe.svg b/public/emoji/1f1ec-1f1fe.svg index b4f6743d2..37faeaf90 100644 --- a/public/emoji/1f1ec-1f1fe.svg +++ b/public/emoji/1f1ec-1f1fe.svg @@ -1,2 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ec.png b/public/emoji/1f1ec.png deleted file mode 100644 index 271163075..000000000 Binary files a/public/emoji/1f1ec.png and /dev/null differ diff --git a/public/emoji/1f1ec.svg b/public/emoji/1f1ec.svg index 2fb801430..a8c44210f 100644 --- a/public/emoji/1f1ec.svg +++ b/public/emoji/1f1ec.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ed-1f1f0.png b/public/emoji/1f1ed-1f1f0.png deleted file mode 100644 index cf0c7151b..000000000 Binary files a/public/emoji/1f1ed-1f1f0.png and /dev/null differ diff --git a/public/emoji/1f1ed-1f1f0.svg b/public/emoji/1f1ed-1f1f0.svg index 20f6508be..8152b768b 100644 --- a/public/emoji/1f1ed-1f1f0.svg +++ b/public/emoji/1f1ed-1f1f0.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ed-1f1f2.png b/public/emoji/1f1ed-1f1f2.png deleted file mode 100644 index b613509e4..000000000 Binary files a/public/emoji/1f1ed-1f1f2.png and /dev/null differ diff --git a/public/emoji/1f1ed-1f1f2.svg b/public/emoji/1f1ed-1f1f2.svg index ee741bb19..986705ff9 100644 --- a/public/emoji/1f1ed-1f1f2.svg +++ b/public/emoji/1f1ed-1f1f2.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ed-1f1f3.png b/public/emoji/1f1ed-1f1f3.png deleted file mode 100644 index 402cdcefd..000000000 Binary files a/public/emoji/1f1ed-1f1f3.png and /dev/null differ diff --git a/public/emoji/1f1ed-1f1f3.svg b/public/emoji/1f1ed-1f1f3.svg index 0b56c947b..9ffdb103c 100644 --- a/public/emoji/1f1ed-1f1f3.svg +++ b/public/emoji/1f1ed-1f1f3.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ed-1f1f7.png b/public/emoji/1f1ed-1f1f7.png deleted file mode 100644 index 46f4f06b4..000000000 Binary files a/public/emoji/1f1ed-1f1f7.png and /dev/null differ diff --git a/public/emoji/1f1ed-1f1f7.svg b/public/emoji/1f1ed-1f1f7.svg index 938504a0d..3d757816a 100644 --- a/public/emoji/1f1ed-1f1f7.svg +++ b/public/emoji/1f1ed-1f1f7.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ed-1f1f9.png b/public/emoji/1f1ed-1f1f9.png deleted file mode 100644 index d8d0c8884..000000000 Binary files a/public/emoji/1f1ed-1f1f9.png and /dev/null differ diff --git a/public/emoji/1f1ed-1f1f9.svg b/public/emoji/1f1ed-1f1f9.svg index 6162c6a4d..6bc187229 100644 --- a/public/emoji/1f1ed-1f1f9.svg +++ b/public/emoji/1f1ed-1f1f9.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ed-1f1fa.png b/public/emoji/1f1ed-1f1fa.png deleted file mode 100644 index a898de636..000000000 Binary files a/public/emoji/1f1ed-1f1fa.png and /dev/null differ diff --git a/public/emoji/1f1ed-1f1fa.svg b/public/emoji/1f1ed-1f1fa.svg index 48b8aced6..bb04c1863 100644 --- a/public/emoji/1f1ed-1f1fa.svg +++ b/public/emoji/1f1ed-1f1fa.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ed.png b/public/emoji/1f1ed.png deleted file mode 100644 index ca88e46bf..000000000 Binary files a/public/emoji/1f1ed.png and /dev/null differ diff --git a/public/emoji/1f1ed.svg b/public/emoji/1f1ed.svg index 6add3c7e0..337b2f0a9 100644 --- a/public/emoji/1f1ed.svg +++ b/public/emoji/1f1ed.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ee-1f1e8.png b/public/emoji/1f1ee-1f1e8.png deleted file mode 100644 index 69fd990aa..000000000 Binary files a/public/emoji/1f1ee-1f1e8.png and /dev/null differ diff --git a/public/emoji/1f1ee-1f1e8.svg b/public/emoji/1f1ee-1f1e8.svg index 540234ef7..7741ac37d 100644 --- a/public/emoji/1f1ee-1f1e8.svg +++ b/public/emoji/1f1ee-1f1e8.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ee-1f1e9.png b/public/emoji/1f1ee-1f1e9.png deleted file mode 100644 index 85b4c063a..000000000 Binary files a/public/emoji/1f1ee-1f1e9.png and /dev/null differ diff --git a/public/emoji/1f1ee-1f1e9.svg b/public/emoji/1f1ee-1f1e9.svg index d92e0a009..2e35859dd 100644 --- a/public/emoji/1f1ee-1f1e9.svg +++ b/public/emoji/1f1ee-1f1e9.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ee-1f1ea.png b/public/emoji/1f1ee-1f1ea.png deleted file mode 100644 index a28295838..000000000 Binary files a/public/emoji/1f1ee-1f1ea.png and /dev/null differ diff --git a/public/emoji/1f1ee-1f1ea.svg b/public/emoji/1f1ee-1f1ea.svg index c3f32f72d..449c63946 100644 --- a/public/emoji/1f1ee-1f1ea.svg +++ b/public/emoji/1f1ee-1f1ea.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ee-1f1f1.png b/public/emoji/1f1ee-1f1f1.png deleted file mode 100644 index 85c410d45..000000000 Binary files a/public/emoji/1f1ee-1f1f1.png and /dev/null differ diff --git a/public/emoji/1f1ee-1f1f1.svg b/public/emoji/1f1ee-1f1f1.svg index 4118fdf99..a9680cc92 100644 --- a/public/emoji/1f1ee-1f1f1.svg +++ b/public/emoji/1f1ee-1f1f1.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ee-1f1f2.png b/public/emoji/1f1ee-1f1f2.png deleted file mode 100644 index 60a2458e3..000000000 Binary files a/public/emoji/1f1ee-1f1f2.png and /dev/null differ diff --git a/public/emoji/1f1ee-1f1f2.svg b/public/emoji/1f1ee-1f1f2.svg index 17632dc76..7dc6a44fe 100644 --- a/public/emoji/1f1ee-1f1f2.svg +++ b/public/emoji/1f1ee-1f1f2.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ee-1f1f3.png b/public/emoji/1f1ee-1f1f3.png deleted file mode 100644 index feccc8952..000000000 Binary files a/public/emoji/1f1ee-1f1f3.png and /dev/null differ diff --git a/public/emoji/1f1ee-1f1f3.svg b/public/emoji/1f1ee-1f1f3.svg index 0f8b13d57..c8720d0ea 100644 --- a/public/emoji/1f1ee-1f1f3.svg +++ b/public/emoji/1f1ee-1f1f3.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ee-1f1f4.png b/public/emoji/1f1ee-1f1f4.png deleted file mode 100644 index aae927d14..000000000 Binary files a/public/emoji/1f1ee-1f1f4.png and /dev/null differ diff --git a/public/emoji/1f1ee-1f1f4.svg b/public/emoji/1f1ee-1f1f4.svg index 04d9b4ee6..0266453dd 100644 --- a/public/emoji/1f1ee-1f1f4.svg +++ b/public/emoji/1f1ee-1f1f4.svg @@ -1 +1 @@ - \ No newline at end of file +image/svg+xml diff --git a/public/emoji/1f1ee-1f1f6.png b/public/emoji/1f1ee-1f1f6.png deleted file mode 100644 index 41fd1db6f..000000000 Binary files a/public/emoji/1f1ee-1f1f6.png and /dev/null differ diff --git a/public/emoji/1f1ee-1f1f6.svg b/public/emoji/1f1ee-1f1f6.svg index c260e2925..cde68d8e7 100644 --- a/public/emoji/1f1ee-1f1f6.svg +++ b/public/emoji/1f1ee-1f1f6.svg @@ -1 +1 @@ - \ No newline at end of file +